]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/UserFlag/userflag.css
Init UI to show/hide a group of moderation actions.
[quix0rs-gnu-social.git] / plugins / UserFlag / userflag.css
1 .entity_flag input.submit,
2 .entity_flag p {
3 background:url(icon_flag.gif) 5px 5px no-repeat;
4 }
5 .entity_sandbox input.submit,
6 .entity_sandbox p {
7 background:url(icon_sandbox.gif) 5px 5px no-repeat;
8 }
9 .entity_silence input.submit,
10 .entity_silence p {
11 background:url(icon_silence.gif) 5px 5px no-repeat;
12 }
13 .entity_delete input.submit,
14 .entity_delete p {
15 background:url(icon_skull.gif) 5px 5px no-repeat;
16 }
17
18 .entity_moderation {
19 position:relative;
20 }
21 .entity_moderation p {
22 background:transparent url(icon_badge.gif) 5px 5px no-repeat;
23 box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3);
24 -moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3);
25 -webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.25);
26 border-radius:4px;
27 -moz-border-radius:4px;
28 -webkit-border-radius:4px;
29 font-weight:bold;
30 padding-bottom:2px;
31 margin-bottom:7px;
32
33 color:#002FA7;
34 }
35 .entity_moderation ul {
36 display:none;
37 }
38 .entity_moderation:hover ul {
39 display:block;
40 background-color:#FFFFFF;
41 min-width:21%;
42 width:100%;
43 border:1px solid #DDDDDD;
44 padding:11px;
45 position:absolute;
46 top:-1px;
47 right:-1px;
48 z-index:1;
49 box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3);
50 -moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3);
51 -webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.25);
52 border-radius:7px;
53 -moz-border-radius:7px;
54 -webkit-border-radius:7px;
55 }