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