Commit 7664ae88c7f3ed4944dae0c9d34445456ce904e9
1 parent
4b14a994
Exists in
master
and in
28 other branches
ActionItem110: new default template
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@756 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
18 changed files
with
368 additions
and
0 deletions
Show diff stats
489 Bytes
11.4 KB
43.1 KB
11.1 KB
42.4 KB
11.4 KB
42 KB
11.2 KB
43.1 KB
11.8 KB
41.3 KB
4.35 KB
... | ... | @@ -0,0 +1,128 @@ |
1 | + | |
2 | +/************************************ | |
3 | + * listing stuff | |
4 | + ************************************/ | |
5 | +#content .handle, #content .do-reorder UL LI .handle { | |
6 | + display: none; | |
7 | +} | |
8 | +#content .do-reorder LI .handle { | |
9 | + display: inline; | |
10 | + background: gray; | |
11 | + color: white; | |
12 | + padding: 1px 3px; | |
13 | + cursor: move; | |
14 | +} | |
15 | + | |
16 | +ul.page-list li { | |
17 | + list-style: none; | |
18 | +} | |
19 | + | |
20 | +ul.page-list li table, | |
21 | +ul.page-list li td { | |
22 | + border: none; | |
23 | + padding: 3px; | |
24 | +} | |
25 | + | |
26 | +ul.page-list a.page { | |
27 | + font-weight: bold; | |
28 | +} | |
29 | + | |
30 | +ul.page-list a:visited, ul.page-list a:link { | |
31 | + color: #000; | |
32 | +} | |
33 | + | |
34 | +ul.page-list a:hover { | |
35 | + background: #aa9; | |
36 | +} | |
37 | + | |
38 | +#content .page-list .hover { | |
39 | + background: #F1F0DB; | |
40 | +} | |
41 | + | |
42 | +#content .page-list .commands A.delete-page:hover { | |
43 | + color: white; | |
44 | + background: black; | |
45 | +} | |
46 | +#content .page-list .hover-delete { | |
47 | + background: red; | |
48 | + color: #FF8E90; | |
49 | +} | |
50 | +#content .page-list .hover-delete A, | |
51 | +#content .page-list .hover-delete .commands A { | |
52 | + color: #FF8E90; | |
53 | +} | |
54 | +#content .page-list .hover-delete A.page { | |
55 | + color: white; | |
56 | + border-bottom: 0px; | |
57 | +} | |
58 | +#content .page-list .hover-delete UL LI A.page { | |
59 | + color: red; | |
60 | + border-bottom: 0px; | |
61 | +} | |
62 | + | |
63 | +/*********************************** | |
64 | + * from stuff | |
65 | + ***********************************/ | |
66 | +div.comatose_field { | |
67 | +} | |
68 | +div.comatose_field label { | |
69 | + display: block; | |
70 | + font-weight: bold; | |
71 | +} | |
72 | + | |
73 | +div.comatose_field textarea { | |
74 | + width: 90%; | |
75 | +} | |
76 | +div.comatose_field textarea, | |
77 | +div.comatose_field input, | |
78 | +div.comatose_field select { | |
79 | + border: 1px solid gray; | |
80 | +} | |
81 | + | |
82 | +/**************************************** | |
83 | + * revisions page stuff | |
84 | + ****************************************/ | |
85 | + | |
86 | +.older-content { | |
87 | + float: right; | |
88 | +} | |
89 | +.current-content { | |
90 | + float: left; | |
91 | +} | |
92 | + | |
93 | +.revisions { | |
94 | + width: 47%; | |
95 | + border: 1px solid gray; | |
96 | + padding: 0.25em; | |
97 | +} | |
98 | + | |
99 | +.revisions .header { | |
100 | + font-weight: bold; | |
101 | + border-bottom: 1px solid black; | |
102 | + margin-bottom: 10px; | |
103 | + height: 40px; | |
104 | +} | |
105 | + | |
106 | +.revisions .meta { | |
107 | + border-bottom: 1px solid black; | |
108 | + margin-bottom: 10px; | |
109 | +} | |
110 | + | |
111 | +.revisions .footer { | |
112 | + border-top: 1px solid black; | |
113 | + margin-top: 10px; | |
114 | + padding: 0.25em; | |
115 | +} | |
116 | + | |
117 | +.revisions .meta label span { | |
118 | + font-weight: bold; | |
119 | +} | |
120 | + | |
121 | +.revisions .meta label { | |
122 | + font-weight: normal; | |
123 | + display: block; | |
124 | +} | |
125 | + | |
126 | +.collapsed { | |
127 | + display: none; | |
128 | +} | ... | ... |
public/designs/templates/default/stylesheets/contentblocks.css
0 → 100644
... | ... | @@ -0,0 +1,34 @@ |
1 | +div.listblock div.block_content ul { | |
2 | +margin: 0px; | |
3 | +padding: 0px; | |
4 | +} | |
5 | + | |
6 | +div.listblock div.block_content li { | |
7 | +display: block; | |
8 | +float: left; | |
9 | +height: 95px; | |
10 | +width: 80px; | |
11 | +border: 1px solid #dfdfdf; | |
12 | +background: #ffffff url("../images/foto.png") no-repeat; | |
13 | +margin: 2px; | |
14 | +overflow: hidden; | |
15 | +font-size: 10px; | |
16 | +color: #545454; | |
17 | +font-weight: bold; | |
18 | +} | |
19 | + | |
20 | +div.listblock div.block_content li span { | |
21 | +display: none; | |
22 | +} | |
23 | + | |
24 | +div.listblock div.block_content li:hover span { | |
25 | +display: block; | |
26 | +line-height: 95px; | |
27 | +text-align: center; | |
28 | +background: #ffffff; | |
29 | +vertical-align: middle; | |
30 | +} | |
31 | + | |
32 | +div.listblock div.block_footer { | |
33 | +clear: both; | |
34 | +} | ... | ... |
... | ... | @@ -0,0 +1,90 @@ |
1 | +#design_editor_blocksbar { | |
2 | + list-style: none; | |
3 | + position: relative; | |
4 | + width: 760px; | |
5 | + left: 50%; | |
6 | + margin-left: -380px; | |
7 | + padding: 0em; | |
8 | + height: 30px; | |
9 | +} | |
10 | + | |
11 | +#design_editor_blocksbar li { | |
12 | +float: left; | |
13 | +margin: 4px; | |
14 | +} | |
15 | + | |
16 | +#design_editor_blocksbar a { | |
17 | +background: url("../images/add.png") no-repeat; | |
18 | +background-position: 0px 3px; | |
19 | +display: block; | |
20 | +padding: 5px; | |
21 | +padding-left: 28px; | |
22 | +border: 1px outset #545454; | |
23 | +text-decoration: none; | |
24 | +color: black; | |
25 | +font-weight: bold; | |
26 | +} | |
27 | + | |
28 | +#design_editor_blocksbar a:hover { | |
29 | +border: 1px inset #545454; | |
30 | +} | |
31 | + | |
32 | +#design_editor ul.block_list { | |
33 | + list-style: none; | |
34 | + margin: 0px; | |
35 | + padding: 3px; | |
36 | + border: 2px dotted #dfdfdf; | |
37 | +} | |
38 | + | |
39 | +#design_editor ul:hover.block_list { | |
40 | + border: 2px dotted #545454; | |
41 | +} | |
42 | + | |
43 | +#design_editor .box { | |
44 | + border: 2px solid transparent; | |
45 | +} | |
46 | + | |
47 | +#design_editor .hover { | |
48 | + border: 2px dotted red; | |
49 | + background: #ff6; | |
50 | +} | |
51 | + | |
52 | +#design_editor_toolbar { | |
53 | + padding: 5px; | |
54 | +} | |
55 | + | |
56 | +#design_editor_toolbar h3 { | |
57 | + font-size: 10px; | |
58 | + background: #dfdfdf; | |
59 | + margin: 0px; | |
60 | + padding: 1px; | |
61 | + text-align: right; | |
62 | + color: #545454; | |
63 | +} | |
64 | + | |
65 | +#design_editor_toolbar a { | |
66 | + font-size: 10px; | |
67 | + padding: 5px; | |
68 | + background: #dfdfdf; | |
69 | + color: black; | |
70 | +} | |
71 | + | |
72 | +.design_editor_box_toolbar { | |
73 | + text-align: center; | |
74 | + margin: 5px; | |
75 | + background: #dfdfdf; | |
76 | +} | |
77 | + | |
78 | +.design_editor_box_toolbar a { | |
79 | + display: inline; | |
80 | + width: 30px; | |
81 | + font-size: 10px; | |
82 | + padding: 2px; | |
83 | + background: #dfdfdf; | |
84 | +} | |
85 | + | |
86 | +#design_editor_toolbar a:hover, .design_editor_box_toolbar a:hover { | |
87 | + background: #545454; | |
88 | + color: #ffffff; | |
89 | +} | |
90 | + | ... | ... |
... | ... | @@ -0,0 +1,113 @@ |
1 | +@import url("editor.css"); | |
2 | + | |
3 | +@import url("contentblocks.css"); | |
4 | + | |
5 | +body { | |
6 | + font-family: Verdana, Sans-Serif; | |
7 | + font-size: 14px; | |
8 | +} | |
9 | + | |
10 | +#wrap.category { | |
11 | + background-attachment: fixed; | |
12 | + background: url("../images/bgblue.png") top left no-repeat; | |
13 | +} | |
14 | + | |
15 | +#wrap.category1 { | |
16 | + background-attachment: fixed; | |
17 | + background: url("../images/bgorange.png") top left no-repeat; | |
18 | + } | |
19 | + | |
20 | +#wrap.category2 { | |
21 | + background-attachment: fixed; | |
22 | + background: url("../images/bggreen.png") top left no-repeat; | |
23 | + } | |
24 | + | |
25 | +#wrap.category3 { | |
26 | + background-attachment: fixed; | |
27 | + background: url("../images/bgpurple.png") top left no-repeat; | |
28 | + } | |
29 | + | |
30 | +#wrap.category4 { | |
31 | + background-attachment: fixed; | |
32 | + background: url("../images/bgred.png") top left no-repeat; | |
33 | +} | |
34 | + | |
35 | +#header { | |
36 | +height: 145px; | |
37 | +} | |
38 | + | |
39 | +#boxes { | |
40 | + position: relative; | |
41 | + margin-left: 10px; | |
42 | + margin-right: 10px; | |
43 | + padding: 0em; | |
44 | +} | |
45 | + | |
46 | +#box_3 { | |
47 | + width: 210px; | |
48 | + float: right; | |
49 | +} | |
50 | + | |
51 | +#box_2 { | |
52 | + float: left; | |
53 | + width: 210px; | |
54 | +} | |
55 | + | |
56 | +#box_1 { | |
57 | + margin-left: 215px; | |
58 | + margin-right: 215px; | |
59 | +} | |
60 | + | |
61 | +#spinner { | |
62 | + z-index: 1000; | |
63 | + position: absolute; | |
64 | + left: 50%; | |
65 | + margin-left: -16px; | |
66 | + top: 200px; | |
67 | +} | |
68 | + | |
69 | +#footer_content { | |
70 | +clear: both; | |
71 | +} | |
72 | + | |
73 | +#footer { | |
74 | + clear: both; | |
75 | + text-align: center; | |
76 | + font-size: smaller; | |
77 | + color: #333; | |
78 | + margin: 0px; | |
79 | + padding: 5px; | |
80 | +} | |
81 | + | |
82 | +/* Notice */ | |
83 | + | |
84 | +div#notice { | |
85 | + z-index: 10000; | |
86 | + position: absolute; | |
87 | + top: 100px; | |
88 | + left: 50%; | |
89 | + margin-left: -200px; | |
90 | + width: 400px; | |
91 | + border: 1px solid black; | |
92 | + background: #efefef; | |
93 | + padding: 0.5em; | |
94 | +} | |
95 | + | |
96 | +div#notice .button { | |
97 | + text-align: center; | |
98 | + margin-top: 1em; | |
99 | + margin-bottom: 0.25em; | |
100 | +} | |
101 | + | |
102 | +div#notice .button a { | |
103 | + border: 1px solid gray; | |
104 | + background: #ddd; | |
105 | + color: black; | |
106 | + padding: 4px; | |
107 | + padding-left: 28px; | |
108 | + background-position: top left; | |
109 | + background-repeat: no-repeat; | |
110 | +} | |
111 | +div#notice .button a:hover { | |
112 | + background-color: #ffd; | |
113 | +} | ... | ... |
4.82 KB