Commit 1446c46beceb22da7a50f6687510fe7cf2712625
1 parent
26d3807f
Exists in
master
and in
29 other branches
ActionItem110: new default
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@752 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
12 changed files
with
90 additions
and
90 deletions
Show diff stats
5.41 KB
1.79 KB
3.88 KB
@@ -0,0 +1,88 @@ | @@ -0,0 +1,88 @@ | ||
1 | +/* MacStyle Theme for Blocks */ | ||
2 | + | ||
3 | +div.block | ||
4 | +{ | ||
5 | + background: #FFFFFF; | ||
6 | + border: 0px; | ||
7 | +} | ||
8 | + | ||
9 | +ul.block_control_list | ||
10 | +{ | ||
11 | + list-style: none; | ||
12 | + margin: 0px; | ||
13 | + padding: 0px; | ||
14 | +} | ||
15 | + | ||
16 | +h3.block_header | ||
17 | +{ | ||
18 | + position: relative; | ||
19 | + background: url('images/h3bg.png') repeat-x; | ||
20 | + cursor:move; | ||
21 | + font-family: Sans-serif; | ||
22 | + font-size: 15px; | ||
23 | + margin: 0px; | ||
24 | + padding: 0px; | ||
25 | + overflow: hidden; | ||
26 | + color: #545454; | ||
27 | + padding-left: 10px; | ||
28 | + height: 25px; | ||
29 | + vertical-align: top; | ||
30 | +} | ||
31 | + | ||
32 | +a.button_block span { | ||
33 | +display: none; | ||
34 | +padding: 1px; | ||
35 | +color: #000; | ||
36 | +background: #dfdfdf; | ||
37 | +font-family: Sans-serif; | ||
38 | +font-size: 10px; | ||
39 | +font-weight: normal; | ||
40 | +border: 1px inset #545454; | ||
41 | +} | ||
42 | + | ||
43 | +a.button_block:hover span { | ||
44 | +display: inline; | ||
45 | +position: absolute; | ||
46 | +margin-top: -20px; | ||
47 | +} | ||
48 | + | ||
49 | +a.button_block { | ||
50 | +display: block; | ||
51 | +float: right; | ||
52 | +position: absolute; | ||
53 | +width: 20px; | ||
54 | +height: 20px; | ||
55 | +text-decoration: none; | ||
56 | +} | ||
57 | + | ||
58 | +div.block a.button_block_hide { | ||
59 | +right: 25px; | ||
60 | +background:url('images/button.png') no-repeat; | ||
61 | +background-position: 0px 0px; | ||
62 | +} | ||
63 | + | ||
64 | +div.block a:hover.button_block_hide { | ||
65 | +background: url('images/button.png') no-repeat; | ||
66 | +background-position: 0px -20px; | ||
67 | +} | ||
68 | + | ||
69 | +div.block a.button_block_remove { | ||
70 | +right: 5px; | ||
71 | +background: url('images/button.png') no-repeat; | ||
72 | +background-position:-20px 0; | ||
73 | +} | ||
74 | + | ||
75 | +div.block a:hover.button_block_remove { | ||
76 | +background: url('images/button.png') no-repeat; | ||
77 | +background-position:-20px -20px; | ||
78 | +} | ||
79 | + | ||
80 | +div.block_content | ||
81 | +{ | ||
82 | + margin: 0; | ||
83 | + padding: 5px 10px 9px 10px; | ||
84 | + background: url(images/bottom.png) repeat-x 0 100%; | ||
85 | + overflow: hidden; | ||
86 | +} | ||
87 | + | ||
88 | + |
3.65 KB
public/designs/themes/macstyle/images/bottom.png
5.41 KB
public/designs/themes/macstyle/images/button.png
1.79 KB
public/designs/themes/macstyle/images/h3bg.png
3.88 KB
public/designs/themes/macstyle/macstyle.yml
public/designs/themes/macstyle/style.css
@@ -1,88 +0,0 @@ | @@ -1,88 +0,0 @@ | ||
1 | -/* MacStyle Theme for Blocks */ | ||
2 | - | ||
3 | -div.block | ||
4 | -{ | ||
5 | - background: #FFFFFF; | ||
6 | - border: 0px; | ||
7 | -} | ||
8 | - | ||
9 | -ul.block_control_list | ||
10 | -{ | ||
11 | - list-style: none; | ||
12 | - margin: 0px; | ||
13 | - padding: 0px; | ||
14 | -} | ||
15 | - | ||
16 | -h3.block_header | ||
17 | -{ | ||
18 | - position: relative; | ||
19 | - background: url('images/h3bg.png') repeat-x; | ||
20 | - cursor:move; | ||
21 | - font-family: Sans-serif; | ||
22 | - font-size: 15px; | ||
23 | - margin: 0px; | ||
24 | - padding: 0px; | ||
25 | - overflow: hidden; | ||
26 | - color: #545454; | ||
27 | - padding-left: 10px; | ||
28 | - height: 25px; | ||
29 | - vertical-align: top; | ||
30 | -} | ||
31 | - | ||
32 | -a.button_block span { | ||
33 | -display: none; | ||
34 | -padding: 1px; | ||
35 | -color: #000; | ||
36 | -background: #dfdfdf; | ||
37 | -font-family: Sans-serif; | ||
38 | -font-size: 10px; | ||
39 | -font-weight: normal; | ||
40 | -border: 1px inset #545454; | ||
41 | -} | ||
42 | - | ||
43 | -a.button_block:hover span { | ||
44 | -display: inline; | ||
45 | -position: absolute; | ||
46 | -margin-top: -20px; | ||
47 | -} | ||
48 | - | ||
49 | -a.button_block { | ||
50 | -display: block; | ||
51 | -float: right; | ||
52 | -position: absolute; | ||
53 | -width: 20px; | ||
54 | -height: 20px; | ||
55 | -text-decoration: none; | ||
56 | -} | ||
57 | - | ||
58 | -div.block a.button_block_hide { | ||
59 | -right: 25px; | ||
60 | -background:url('images/button.png') no-repeat; | ||
61 | -background-position: 0px 0px; | ||
62 | -} | ||
63 | - | ||
64 | -div.block a:hover.button_block_hide { | ||
65 | -background: url('images/button.png') no-repeat; | ||
66 | -background-position: 0px -20px; | ||
67 | -} | ||
68 | - | ||
69 | -div.block a.button_block_remove { | ||
70 | -right: 5px; | ||
71 | -background: url('images/button.png') no-repeat; | ||
72 | -background-position:-20px 0; | ||
73 | -} | ||
74 | - | ||
75 | -div.block a:hover.button_block_remove { | ||
76 | -background: url('images/button.png') no-repeat; | ||
77 | -background-position:-20px -20px; | ||
78 | -} | ||
79 | - | ||
80 | -div.block_content | ||
81 | -{ | ||
82 | - margin: 0; | ||
83 | - padding: 5px 10px 9px 10px; | ||
84 | - background: url(images/bottom.png) repeat-x 0 100%; | ||
85 | - overflow: hidden; | ||
86 | -} | ||
87 | - | ||
88 | - |
public/designs/themes/macstyle/thumbnail.jpg
3.65 KB