Commit 39f4b8a4be8b32164aca72ea74b91f0234b3b174
1 parent
0bf51bc6
Exists in
master
and in
22 other branches
ActionItem110: New Raw Template
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@703 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
9 changed files
with
133 additions
and
68 deletions
Show diff stats
248 Bytes
225 Bytes
168 Bytes
7.98 KB
4.75 KB
public/designs/templates/raw/raw.yml
| @@ -0,0 +1,132 @@ | @@ -0,0 +1,132 @@ | ||
| 1 | +body { | ||
| 2 | + font-family: Verdana, Sans-Serif; | ||
| 3 | + font-size: 14px; | ||
| 4 | +} | ||
| 5 | + | ||
| 6 | +#wrap { | ||
| 7 | +} | ||
| 8 | + | ||
| 9 | +#frame { | ||
| 10 | +background: url("../images/bg_bgheader.png") top left repeat-x; | ||
| 11 | +} | ||
| 12 | + | ||
| 13 | +#header { | ||
| 14 | +height: 55px; | ||
| 15 | +} | ||
| 16 | + | ||
| 17 | +#boxes { | ||
| 18 | + position: relative; | ||
| 19 | + width: auto; | ||
| 20 | + margin: 20px; | ||
| 21 | + padding: 10px; | ||
| 22 | +} | ||
| 23 | + | ||
| 24 | +#box_1 { | ||
| 25 | +} | ||
| 26 | + | ||
| 27 | +#spinner { | ||
| 28 | + z-index: 1000; | ||
| 29 | + position: absolute; | ||
| 30 | + left: 50%; | ||
| 31 | + margin-left: -16px; | ||
| 32 | + top: 200px; | ||
| 33 | +} | ||
| 34 | + | ||
| 35 | +#footer { | ||
| 36 | + clear: both; | ||
| 37 | + text-align: center; | ||
| 38 | + font-size: smaller; | ||
| 39 | + color: #333; | ||
| 40 | + margin: 0px; | ||
| 41 | + padding: 5px; | ||
| 42 | + background: #c5d0df url("../images/bg_footer.png") top left repeat-x; | ||
| 43 | +} | ||
| 44 | + | ||
| 45 | + | ||
| 46 | +/* Edition Mode */ | ||
| 47 | + | ||
| 48 | +#design_editor .block_list { | ||
| 49 | + list-style: none; | ||
| 50 | + margin: 0px; | ||
| 51 | + padding: 3px; | ||
| 52 | +} | ||
| 53 | + | ||
| 54 | +#design_editor .box { | ||
| 55 | + border: 2px solid transparent; | ||
| 56 | +} | ||
| 57 | + | ||
| 58 | +#design_editor .hover { | ||
| 59 | + border: 2px dotted red; | ||
| 60 | + background: #ff6; | ||
| 61 | +} | ||
| 62 | + | ||
| 63 | +#design_editor_toolbar { | ||
| 64 | + padding: 5px; | ||
| 65 | +} | ||
| 66 | + | ||
| 67 | +#design_editor_toolbar h3 { | ||
| 68 | + font-size: 10px; | ||
| 69 | + background: #dfdfdf; | ||
| 70 | + margin: 0px; | ||
| 71 | + padding: 1px; | ||
| 72 | + text-align: right; | ||
| 73 | + color: #545454; | ||
| 74 | +} | ||
| 75 | + | ||
| 76 | +#design_editor_toolbar a { | ||
| 77 | + font-size: 10px; | ||
| 78 | + padding: 5px; | ||
| 79 | + background: #dfdfdf; | ||
| 80 | + color: black; | ||
| 81 | +} | ||
| 82 | + | ||
| 83 | +.design_editor_box_toolbar { | ||
| 84 | + text-align: center; | ||
| 85 | + margin: 5px; | ||
| 86 | + background: #dfdfdf; | ||
| 87 | +} | ||
| 88 | + | ||
| 89 | +.design_editor_box_toolbar a { | ||
| 90 | + display: inline; | ||
| 91 | + width: 30px; | ||
| 92 | + font-size: 10px; | ||
| 93 | + padding: 2px; | ||
| 94 | + background: #dfdfdf; | ||
| 95 | +} | ||
| 96 | + | ||
| 97 | +#design_editor_toolbar a:hover, .design_editor_box_toolbar a:hover { | ||
| 98 | + background: #545454; | ||
| 99 | + color: #ffffff; | ||
| 100 | +} | ||
| 101 | + | ||
| 102 | +div#notice { | ||
| 103 | + z-index: 10000; | ||
| 104 | + position: absolute; | ||
| 105 | + top: 100px; | ||
| 106 | + left: 50%; | ||
| 107 | + margin-left: -200px; | ||
| 108 | + width: 400px; | ||
| 109 | + border: 1px solid black; | ||
| 110 | + background: #efefef; | ||
| 111 | + padding: 0.5em; | ||
| 112 | +} | ||
| 113 | + | ||
| 114 | +div#notice .button { | ||
| 115 | + text-align: center; | ||
| 116 | + margin-top: 1em; | ||
| 117 | + margin-bottom: 0.25em; | ||
| 118 | +} | ||
| 119 | + | ||
| 120 | +div#notice .button a { | ||
| 121 | + border: 1px solid gray; | ||
| 122 | + background: #ddd; | ||
| 123 | + color: black; | ||
| 124 | + padding: 4px; | ||
| 125 | + padding-left: 28px; | ||
| 126 | + background-image: url(../../../icons/default/cancel.png); | ||
| 127 | + background-position: top left; | ||
| 128 | + background-repeat: no-repeat; | ||
| 129 | +} | ||
| 130 | +div#notice .button a:hover { | ||
| 131 | + background-color: #ffd; | ||
| 132 | +} |
public/designs/templates/raw/thumbnail.png
public/designs/templates/raw/thumbnail.svg
| @@ -1,67 +0,0 @@ | @@ -1,67 +0,0 @@ | ||
| 1 | -<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| 2 | -<!-- Created with Inkscape (http://www.inkscape.org/) --> | ||
| 3 | -<svg | ||
| 4 | - xmlns:dc="http://purl.org/dc/elements/1.1/" | ||
| 5 | - xmlns:cc="http://web.resource.org/cc/" | ||
| 6 | - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
| 7 | - xmlns:svg="http://www.w3.org/2000/svg" | ||
| 8 | - xmlns="http://www.w3.org/2000/svg" | ||
| 9 | - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | ||
| 10 | - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | ||
| 11 | - width="1052.3622" | ||
| 12 | - height="744.09448" | ||
| 13 | - id="svg2" | ||
| 14 | - sodipodi:version="0.32" | ||
| 15 | - inkscape:version="0.45.1" | ||
| 16 | - version="1.0" | ||
| 17 | - sodipodi:docbase="/home/terceiro/src/anhetegua/public/designs/templates/raw" | ||
| 18 | - sodipodi:docname="thumbnail.svg" | ||
| 19 | - inkscape:output_extension="org.inkscape.output.svg.inkscape" | ||
| 20 | - inkscape:export-filename="/home/terceiro/src/anhetegua/public/designs/templates/raw/thumbnail.png" | ||
| 21 | - inkscape:export-xdpi="10.26" | ||
| 22 | - inkscape:export-ydpi="10.26"> | ||
| 23 | - <defs | ||
| 24 | - id="defs4" /> | ||
| 25 | - <sodipodi:namedview | ||
| 26 | - id="base" | ||
| 27 | - pagecolor="#ffffff" | ||
| 28 | - bordercolor="#666666" | ||
| 29 | - borderopacity="1.0" | ||
| 30 | - inkscape:pageopacity="0.0" | ||
| 31 | - inkscape:pageshadow="2" | ||
| 32 | - inkscape:zoom="0.61148149" | ||
| 33 | - inkscape:cx="526.18109" | ||
| 34 | - inkscape:cy="372.04724" | ||
| 35 | - inkscape:document-units="px" | ||
| 36 | - inkscape:current-layer="layer1" | ||
| 37 | - width="1052.3622px" | ||
| 38 | - height="744.09448px" | ||
| 39 | - inkscape:window-width="1280" | ||
| 40 | - inkscape:window-height="675" | ||
| 41 | - inkscape:window-x="0" | ||
| 42 | - inkscape:window-y="34" /> | ||
| 43 | - <metadata | ||
| 44 | - id="metadata7"> | ||
| 45 | - <rdf:RDF> | ||
| 46 | - <cc:Work | ||
| 47 | - rdf:about=""> | ||
| 48 | - <dc:format>image/svg+xml</dc:format> | ||
| 49 | - <dc:type | ||
| 50 | - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | ||
| 51 | - </cc:Work> | ||
| 52 | - </rdf:RDF> | ||
| 53 | - </metadata> | ||
| 54 | - <g | ||
| 55 | - inkscape:label="Camada 1" | ||
| 56 | - inkscape:groupmode="layer" | ||
| 57 | - id="layer1"> | ||
| 58 | - <rect | ||
| 59 | - style="fill:#cccccc" | ||
| 60 | - id="rect2171" | ||
| 61 | - width="1010.6602" | ||
| 62 | - height="703.21014" | ||
| 63 | - x="21.259842" | ||
| 64 | - y="21.259842" | ||
| 65 | - ry="33.389153" /> | ||
| 66 | - </g> | ||
| 67 | -</svg> |