liquid_feedback_frontend

view static/style.css @ 330:b91269b2a43f

Added little border around help boxes and some css code cleanup
author bsw
date Tue Feb 28 18:23:31 2012 +0100 (2012-02-28)
parents 62ddcdad91d5
children b93852e12079
line source
1 /* Style reset */
2 html,
3 body,
4 div,
5 span,
6 applet,
7 object,
8 iframe,
9 h1, h2, h3, h4, h5, h6,
10 p, a, img,
11 form, label, legend,
12 table, tbody, tfoot, thead, tr, th,td {
13 margin: 0;
14 padding: 0;
15 border: 0;
16 outline: 0;
17 font-weight: inherit;
18 font-style: inherit;
19 font-size: 100%;
20 font-family: inherit;
21 vertical-align: baseline;
22 }
23 body {
24 line-height: 1;
25 color: black;
26 background: white;
27 }
28 table {
29 border-collapse: separate;
30 border-spacing: 0;
31 }
32 caption, th, td {
33 text-align: left;
34 font-weight: normal;
35 }
37 /*************************************************************************
38 * Some global definitions
39 */
41 body {
42 background: #fff;
43 }
45 body, th, td {
46 font-family: sans-serif;
47 font-size: 15px;
48 font-size: 14px;
49 padding: 0;
50 margin: 0;
51 }
53 .area_list {
54 line-height: 140%;
55 }
57 body, a {
58 color: #000;
59 }
61 img {
62 border: none;
63 }
65 table {
66 border-collapse: collapse;
67 border: none;
68 }
70 td, th {
71 padding: 0.5ex 0.5em 0.5ex 0em;
72 }
74 td {
75 vertical-align: top;
76 }
78 th {
79 vertical-align: bottom;
80 font-weight: bold;
81 }
83 a.active {
84 color: #fff;
85 }
87 .revoked {
88 text-decoration: line-through;
89 }
91 .highlighted {
92 background-color: #fa7;
93 color: #000;
94 }
96 .admin_only {
97 font-style: italic;
98 }
100 h1 {
101 font-size: 150%;
102 }
104 h2 {
105 font-size: 125%;
106 }
108 .inline {
109 display: inline;
110 }
112 /*************************************************************************
113 * Notices, warnings and errors
114 */
116 .layout_notice, .layout_error, .layout_warning {
117 background: #fff;
118 font-weight: bold;
119 line-height: 1.7em;
120 -moz-opacity:0.7;
121 }
123 .slot_notice, .slot_warning, .slot_error {
124 padding-left: 1em;
125 }
127 .slot_notice {
128 background-color: #cfc;
129 color: #040;
130 }
132 .slot_warning {
133 background-color: #fec;
134 color: #420;
135 }
137 .slot_error {
138 background-color: #fcc;
139 color: #400;
140 }
142 /*************************************************************************
143 * Navigation, search and language chooser bar
144 */
146 .topbar {
147 background-color: #333;
148 background-image: -webkit-gradient(linear, left top, left bottom,
149 color-stop(0%, #888), color-stop(25%,#333)
150 );
151 color: #fff;
152 font-size: 90%;
153 line-height: 100%;
154 padding-left: 10px;
155 overflow: hidden;
156 box-shadow: #aaa 0 0 5px;
157 -mox-box-shadow: #aaa 0 0 5px;
158 -webkit-box-shadow: #aaa 0 0 5px;
159 }
161 .topbar .logolf {
162 font-weight: bold;
163 }
165 .topbar a {
166 color: #eee;
167 }
169 .topbar a:hover {
170 background-color: #eee;
171 color: #000;
172 }
174 .navigation,
175 .logout_button {
176 line-height: 200%;
177 }
179 .navigation img,
180 .logout_button img {
181 margin-right: 0.5em;
182 vertical-align: middle;
183 }
185 .navigation a,
186 .logout_button a {
187 padding: 1ex;
188 }
190 form.unit_selector {
191 display: inline;
192 }
194 .logout_button {
195 float: right;
196 }
198 .searchbox {
199 margin: 0;
200 padding: 0.1ex 1em 0ex 1em;
201 float: right;
202 line-height: 250%;
203 }
205 .searchbox form {
206 float: left;
207 margin: 0px;
208 }
210 .searchbox div {
211 display: inline;
212 }
214 .searchbox select {
215 margin-left: 0.3em;
216 margin-right: 0.4em;
217 font-size: 100%;
218 width: 8em;
219 }
221 .searchbox input[type=text] {
222 width: 8em;
223 padding: 0.25ex 0.25em 0.25ex 0.25em;
224 margin-right: 0.5em;
225 font-size: 100%;
226 }
228 .searchbox input[type=submit] {
229 font-size: 100%;
230 }
232 /*************************************************************************
233 * Title of current page including path and actions
234 */
236 .title,
237 .title2,
238 .actions {
239 background-color: #f2f2f2;
240 margin-left: 10px;
241 margin-right: 10px;
242 }
244 .initiative_head .actions {
245 box-shadow: none;
246 -moz-box-shadow: none;
247 -webkit-box-shadow: none;
248 }
250 .actions {
251 border-radius: 0 0 8px 8px;
252 }
254 .initiative_head .actions {
255 background-color: #fff;
256 margin: 0px;
257 }
259 .slot_initiatives_list {
260 margin-top: 1ex;
261 margin-left: 10px;
262 margin-right: 10px;
263 background-color: #fcfcfc;
264 border-radius: 8px;
265 clear: left;
266 }
268 .title {
269 box-shadow: inset #888 0px 5px 6px -5px;
270 -moz-box-shadow: inset #888 0px 5px 6px -5px;;
271 -webkit-box-shadow: inset #888 0px 5px 6px -5px;;
272 }
274 .title {
275 color: #000;
276 padding: 1.5ex 1em 0 1em;
277 }
279 .title div {
280 font-size: 125%;
281 line-height: 110%;
282 }
284 .title a {
285 color: #000;
286 }
288 .title .member_image {
289 margin-right: 0.7em;
290 vertical-align: middle;
291 border-radius: 7px;
292 }
294 .slot_title2 {
295 padding: 1ex 1em 0 1em;
296 }
298 .slot_initiatives_list {
299 border: 1px solid #ccc;
300 padding-top: 1ex;
301 padding-bottom: 1ex;
302 }
304 .member_list .member_image_avatar {
305 float: left;
306 margin-right: 0.5em;
307 }
309 .micro_avatar {
310 width: 24px;
311 height: 24px;
312 border-radius: 4px;
313 vertical-align: middle;
314 }
316 .actions {
317 font-size: 75%;
318 line-height: 220%;
319 padding-top: 2ex;
320 padding-bottom: 1ex;
321 }
323 .interest {
324 margin-left: 1.33em;
325 margin-bottom: 1.33ex;
326 }
328 .slot_actions .interest {
329 margin-left: 0em;
330 }
332 .actions a {
333 margin-right: 1em;
334 border-radius: 5px;
335 padding-right: 0.3em;
336 }
338 .slot_initiative_head {
339 padding-left: 10px;
340 padding-top: 2ex;
341 }
343 .initiative_name {
344 font-weight: bold;
345 font-size: 125%;
346 }
347 .actions a {
348 float: left;
349 }
351 .actions a:hover {
352 background-color: #d7d7d7;
353 }
355 .actions img {
356 padding-left: 0.2em;
357 padding-right: 0.2em;
358 vertical-align: middle;
359 }
361 .logo {
362 float: right;
363 margin-right: 1em;
364 }
367 .member_image_photo {
368 border-radius: 8px;
369 }
371 /*************************************************************************
372 * vote info / delegation
373 */
375 .interest,
376 .slot_support,
377 .delegation {
378 float: left;
379 position: relative;
380 z-index: 1;
381 }
383 .interest img,
384 .slot_support img,
385 .delegation img {
386 padding-left: 0.2em;
387 padding-right: 0.2em;
388 }
389 .actions .supporter,
390 .actions .potential_supporter,
391 .vote_info .head {
392 float: left;
393 margin-right: 1em;
394 }
396 .actions .supporter,
397 .actions .potential_supporter,
398 .actions .interest .head {
399 padding-right: 0.3em;
400 }
402 .delegation .head_active,
403 .interest .head_active,
404 .actions .supporter,
405 .actions .potential_supporter {
406 border-radius: 5px;
407 border: 1px solid #5f6675;
408 }
410 .delegation .head_active,
411 .interest .head_active {
412 background-color: #cdf;
413 }
415 .actions .supporter {
416 background-color: #cdf;
417 }
419 .actions .potential_supporter {
420 background-color: #cdf;
421 }
423 .slot_support .head_initiator {
424 background-color: #f2f2f2;
425 border-radius: 5px;
426 }
428 .delegation .change_delegation {
429 margin-bottom: 2ex;
430 }
432 .delegation .change_delegation a {
433 display: inline;
434 float: none;
435 padding: 1ex;
436 }
438 .delegation .delegation_participation {
439 margin-left: 20.5em;
440 margin-top: 3ex;
441 font-style: italic;
442 font-size: 80%;
443 }
445 .slot_actions .change_delegation {
446 float: left;
447 }
449 .vote_info .close {
450 position: absolute;
451 top: 0;
452 right: 0;
453 padding: 1ex;
454 display: block;
455 }
457 .vote_info .content {
458 font-size: 133%;
459 line-height: 100%;
460 top: 2.8ex;
461 display: none;
462 position: absolute;
463 z-index: 10;
464 background-color: #cdf;
465 border-radius: 0 5px 5px 5px;
466 padding: 1em;
467 width: 35em;
468 border: 1px solid #fff;
469 border-top: none;
470 }
472 .vote_info .delegation_arrow {
473 margin-top: 1ex;
474 margin-bottom: 1ex;
475 vertical-align: middle;
476 }
478 .vote_info .delegation_arrow_overridden {
479 opacity: 0.4;
480 }
482 .vote_info .delegation_scope_overridden {
483 color: #777;
484 }
486 .vote_info .delegation_scope {
487 display: inline;
488 }
490 .vote_info .delegation_info {
491 }
493 .vote_info a {
494 padding-right: 0;
495 }
497 .vote_info .member_thumb {
498 clear: left;
499 background: #fff;
500 }
502 .delegation_overridden .member_thumb {
503 opacity: 0.4;
504 }
506 .delegation .revoke {
507 margin: 0.5ex;
508 float: right;
509 }
511 .delegation .revoke img {
512 vertical-align: middle;
513 }
516 /*************************************************************************
517 * Main content
518 */
520 .main {
521 margin-left: 10px;
522 margin-right: 10px;
523 }
525 /*************************************************************************
526 * ui.tab
527 */
529 .ui_tabs_links {
530 margin-top: 3ex;
531 margin-bottom: 1ex;
532 font-size: 75%;
533 }
535 .ui_tabs_links a {
536 padding: 1ex;
537 line-height: 300%;
538 background-color: #f2f2f2;
539 white-space: nowrap;
540 border-radius: 5px;
541 margin-right: 5px;
542 font-weight: bold;
543 }
545 .ui_tabs_links a:hover {
546 background-color: #d7d7d7;
547 }
549 .ui_tabs_links a.selected {
550 background-color: #444;
551 color: #fff;
552 text-decoration: none;
553 padding: 1ex;
554 }
556 .ui_tabs_content {
557 xborder: 1px solid #444;
558 xpadding: 1ex 1ex 1ex 1ex;
559 }
561 .ui_tabs_links a.yellow {
562 background-color: #fcc;
563 color: #000;
564 }
566 .ui_tabs_links a.yellow:hover {
567 background-color: #faa;
568 }
570 .ui_tabs_links a.yellow.selected {
571 background-color: #a44;
572 color: #fff;
573 text-decoration: none;
574 padding: 1ex;
575 }
577 .ui_tabs_links a.red {
578 background-color: #c33;
579 color: #000;
580 }
582 .ui_tabs_links a.red:hover {
583 background-color: #ebb;
584 }
586 .ui_tabs_links a.red.selected {
587 background-color: #644;
588 color: #fff;
589 text-decoration: none;
590 padding: 1ex;
591 }
594 /*************************************************************************
595 * ui.filters
596 */
598 .ui_filter {
599 overflow: hidden;
600 margin-bottom: 1ex;
601 }
603 .ui_filter_closed_head,
604 .ui_filter_head {
605 color: #777;
606 margin-top: 1ex;
607 margin-bottom: 1.5ex;
608 font-size: 75%;
609 float: left;
610 }
612 .ui_filter_head {
613 margin-right: 2em;
614 }
616 .ui_filter_head a {
617 color: #777;
618 padding: 0.5ex;
619 margin-right: 0.2em;
620 }
622 .ui_filter_head a.active {
623 color: #fff;
624 background-color: #777;
625 padding: 0.5ex;
626 border-radius: 5px;
627 }
629 /*************************************************************************
630 * ui.paginate
631 */
633 .ui_paginate_head {
634 display: none;
635 margin-bottom: 1ex;
636 }
638 .ui_paginate_foot {
639 margin-top: 1ex;
640 }
642 .ui_paginate_select a {
643 padding: 0.5em;
644 }
646 /*************************************************************************
647 * ui.bargraph
648 */
650 .bargraph {
651 width: 103px;
652 }
654 .bargraph50 {
655 width: 52px;
656 }
658 .bargraph div {
659 float: left;
660 margin-top: 0.5ex;
661 height: 1.3ex;
662 }
664 .bargraph_legend {
665 margin-top: 2ex;
666 }
668 .bargraph_legend .bargraph {
669 width: 26px;
670 }
672 .bargraph_legend div,
673 .bargraph_legend div div,
674 .bargraph_legend div div div {
675 float: left;
676 }
678 .bargraph_legend_label {
679 margin-left: 0.5em;
680 margin-right: 1em;
681 }
683 /*************************************************************************
684 * vertical ui.form
685 */
687 .login input[type=text],
688 .vertical input[type=text],
689 .login input[type=password],
690 .vertical input[type=password],
691 .vertical textarea,
692 .vertical select {
693 font-family: sans-serif;
694 font-size: 100%;
695 width: 50em;
696 border: 1px solid #444;
697 padding: 0.2ex 0.2em 0.2ex 0.2em;
698 margin-bottom: 1ex;
699 }
701 .login input[type=password],
702 .vertical input[type=password] {
703 width: 16em;
704 }
706 .vertical select {
707 padding-right: 0;
708 }
710 .login .ui_field_label,
711 .vertical .ui_field_label {
712 text-transform: uppercase;
713 font-size: 70%;
714 line-height: 120%;
715 font-weight: bold;
716 color: #777;
717 width: 15em;
718 display: block;
719 float: left;
720 clear: left;
721 text-align: right;
722 padding-right: 0.5em;
723 }
725 .ui_field_label.label_right {
726 text-align: left;
727 width: auto;
728 }
730 .login input[type=text],
731 .login input[type=password] {
732 width: 10em;
733 }
735 .login div,
736 .vertical div {
737 clear: left;
738 }
740 .vertical span {
741 display: block;
742 margin-bottom: 0.5ex;
743 }
745 .vertical span:after {
746 content: " ";
747 }
749 .vertical span span {
750 display: inline;
751 margin-bottom: 0;
752 }
754 .login input[type=submit],
755 .vertical input[type=submit] {
756 font-size: 100%;
757 margin-left: 11em;
758 background-color: #444444;
759 color: #fff;
760 border: none;
761 padding: 0.75ex;
762 }
764 .login input[type=submit]:hover,
765 .vertical input[type=submit]:hover {
766 background-color: #444444;
767 }
769 /*************************************************************************
770 * Tables
771 */
774 table a.action {
775 font-size: 70%;
776 line-height: 190%;
777 padding: 0.5ex;
778 color: #777;
779 }
781 table a.active {
782 color: #fff;
783 }
785 th {
786 text-align: left;
787 }
789 tr:hover td {
790 background-color: #f2f2f2;
791 }
793 .nohover tr:hover td {
794 background-color: #fff;
795 }
797 .initiatives_list .nohover tr:hover td {
798 background-color: #f2f2f2;
799 }
801 .nohover table tr:hover td {
802 background-color: #f2f2f2;
803 }
806 tr table tr:hover td {
807 background-color: #fff;
808 }
811 /*************************************************************************
812 * Positive / Negtive votes
813 */
816 .positive_votes span {
817 display: inline;
818 }
820 .positive_votes {
821 display: inline;
822 background-color: #cfc;
823 padding: 0.3ex 0.5em 0.3ex 0.5em;
824 }
826 .negative_votes span {
827 display: inline;
828 }
830 .negative_votes {
831 display: inline;
832 background-color: #fcc;
833 padding: 0.3ex 0.5em 0.3ex 0.5em;
834 }
836 .suggestion_my_opinion a,
837 .suggestion_my_opinion span {
838 white-space: nowrap;
839 padding-left: 0.2ex !important;
840 padding-right: 0.2ex !important;
841 }
843 .active {
844 background-color: #444;
845 color: #fff;
846 }
848 .active_red2 { background-color: #a00; color: #fff !important; }
849 .active_red1 { background-color: #f88; color: #000 !important; }
850 .active_green1 { background-color: #8f8; color: #000 !important; }
851 .active_green2 { background-color: #0a0; color: #000 !important; }
856 /*************************************************************************
857 * Issues
858 */
860 .issues {
861 clear: left;
862 }
864 .issues .issue {
865 background-color: #fcfcfc;
866 overflow: hidden;
867 margin-bottom: 2ex;
868 border: 1px solid #ccc;
869 border-radius: 8px;
870 }
872 .issues .issue.interested,
873 .issues .issue.interest_by_delegation {
874 }
876 .issues .issue .issue_info {
877 padding: 1ex 1em;
878 line-height: 140%;
879 }
881 .issues .issue.interested .issue_info,
882 .issues .issue.interested_by_delegation .issue_info {
883 background-color: #dfeaff;
884 background-image: linear-gradient(top, #dfeaff 0%, #fcfcfc 66%);
885 background-image: -o-linear-gradient(top, #dfeaff 0%, #fcfcfc 66%);
886 background-image: -moz-linear-gradient(top, #dfeaff 0%, #fcfcfc 66%);
887 background-image: -webkit-linear-gradient(top, #dfeaff 50%, #fcfcfc 100%);
888 background-image: -ms-linear-gradient(top, #dfeaff 0%, #fcfcfc 66%);
889 }
891 .issues .issue .issue_info .issue_id {
892 font-size: 125%;
893 }
895 .issue_policy_info {
896 font-style: italic;
897 }
899 .issues .issue .interest_by_delegation {
900 float: right;
901 }
903 .issues .issue .initiative_list a {
904 font-weight: bold;
905 }
907 .issue_initiative_list a {
908 font-weight: bold;
909 }
911 .more_initiatives_link {
912 margin-left: 166px;
913 font-style: italic;
914 }
916 .issues tr tr {
917 border: none;
918 background: none;
919 }
921 .initiative_link.selected {
922 font-weight: bold;
923 }
925 x.initiative_link.supported {
926 background-color: #cdf;
927 border-radius: 5px;
928 }
930 x.initiative_link.potentially_supported {
931 background-color: #cdf;
932 border-radius: 5px;
933 }
935 .lang_chooser {
936 float: right;
937 margin-right: 0.5em;
938 }
940 .delegation_list_entry {
941 margin-right: 2em;
942 margin-bottom: 2ex;
943 float: left;
944 clear: left;
945 }
947 .delegation_list_entry .delegation_arrow {
948 float: left;
949 }
951 .delegation_list_entry .delegation_scope {
952 float: left;
953 width: 25em;
954 }
956 .delegation_list_entry .delegation_scope a {
957 display: block;
958 }
960 .member_list .member_thumb {
961 float: left;
962 margin-right: 1em;
963 margin-bottom: 2ex;
964 }
966 .member_thumb {
967 text-decoration: none;
968 width: 14.5em;
969 height: 48px;
970 display: block;
971 float: left;
972 background-color: #f2f2f2;
973 overflow: hidden;
974 position: relative;
975 border-radius: 7px;
976 padding: 2px;
977 }
979 .xmember_thumb a {
980 position: absolute;
981 top: 0;
982 left: 0;
983 padding: 0;
984 margin: 0;
985 }
987 .member_thumb a:hover div {
988 background-color: #444;
989 color: #fff;
990 }
992 .member_thumb img {
993 padding: 0;
994 margin: 0;
995 vertical-align: bottom;
996 border-radius: 7px;
997 }
999 .member_thumb .member_name {
1000 position: absolute;
1001 left: 56px;
1002 top: 2ex;
1003 font-size: 100%;
1004 width: 14em;
1007 .member_thumb .flags {
1008 text-align: right;
1009 font-size: 75%;
1012 .member_thumb .flags a,
1013 .member_thumb .flags img {
1014 position: static;
1015 float: right;
1016 margin-left: 0.5em;
1019 .member_thumb .flags .in_delegation_chain {
1020 font-weight: bold;
1023 .member .right {
1024 float: right;
1027 .member_thumb.not_accepted,
1028 .member_thumb.not_informed {
1029 background: #fff;
1032 .member_thumb.not_accepted .member_image,
1033 .member_thumb.not_accepted .member_name,
1034 .member_thumb.not_informed .member_image,
1035 .member_thumb.not_informed .member_name {
1036 opacity: 0.4;
1039 .member_thumb.in_delegation_chain {
1040 background-color: #cdf;
1043 .member_statement,
1044 .draft_content,
1045 .suggestion_content {
1046 background-color: #f2f2f2;
1047 padding: 1ex;
1048 border-radius: 8px;
1051 .member_statement {
1052 margin-right: 250px;
1055 #suggestion_description {
1056 height: 15ex;
1059 .diff {
1060 background-color: #f2f2f2;
1061 border: 1px solid #ccc;
1062 padding: 1ex;
1065 .diff_added {
1066 background-color: #cfc;
1067 text-decoration: underline;
1070 .diff_removed {
1071 background-color: #fcc;
1072 text-decoration: line-through;
1075 .slot_issue_info {
1076 background-color: #f2f2f2;
1077 border: 1px solid #ccc;
1078 float: right;
1079 padding: 0.5ex;
1080 line-height: 130%;
1081 margin-right: 1em;
1084 .issue_info label {
1085 float: left;
1086 width: 8em;
1087 text-transform: uppercase;
1088 font-size: 70%;
1089 color: #777;
1090 font-weight: bold;
1091 clear: left;
1092 text-align: right;
1093 margin-right: 0.7em;
1096 .admitted_info {
1097 background-color: #dfd;
1098 padding: 1ex;
1099 margin-bottom: 2ex;
1100 border-radius: 8px;
1103 .not_admitted_info,
1104 .revoked_info {
1105 background-color: #fdd;
1106 padding: 1ex;
1107 margin-top: 2ex;
1108 margin-bottom: 2ex;
1109 border-radius: 8px;
1112 .draft_updated_info,
1113 .voting_active_info,
1114 .initiator_invite_info,
1115 .motd,
1116 .public_access_issue_head {
1117 background-color: #fec;
1118 padding: 1ex;
1119 margin-top: 2ex;
1120 margin-bottom: 2ex;
1121 border-radius: 8px;
1124 .suggestion_fulfilled {
1125 width: 15em;
1127 .suggestion_fulfilled a.action {
1128 padding-left: 0;
1129 line-height: 120%;
1132 .help,
1133 .use_terms {
1134 border-radius: 8px;
1135 border: 1px solid #ffe900;
1136 background-color: #fffbce;
1137 color: #000;
1138 padding: 1ex;
1141 .help_visible {
1142 margin-top: 2ex;
1143 margin-bottom: 1ex;
1146 .help_visible .help_icon {
1147 float: right;
1150 .slot_help_hidden {
1151 float: right;
1152 margin-right: 1em;
1153 margin-top: 1ex;
1156 .help_actions {
1157 font-size: 75%;
1158 float: right;
1161 .help_actions a {
1162 margin-right: 1em;
1163 color: #468;
1166 .wiki {
1167 line-height: 133%;
1170 .wiki h1,
1171 .wiki h2,
1172 .wiki h3,
1173 .wiki h4 {
1174 margin-top: 1ex;
1175 margin-bottom: 1ex;
1178 .wiki h1 {
1179 font-size: 150%;
1180 font-weight: bold;
1183 .wiki h2 {
1184 font-size: 125%;
1185 font-weight: bold;
1188 .wiki h3 {
1189 font-size: 125%;
1192 .wiki h4 {
1193 font-size: 100%;
1194 font-weight: bold;
1197 .wiki p {
1198 margin-top: 1ex;
1199 margin-bottom: 1ex;
1202 form .warning {
1203 background-color: #ffd;
1204 color: #000;
1205 border: 1px solid #dda;
1206 margin: 1ex;
1207 margin-bottom: 2ex;
1208 padding: 1ex;
1211 a.not_voted {
1212 display: block;
1213 background-color: #fec;
1214 color: #000;
1217 .action_active {
1218 background-color: #fec;
1221 .heading {
1222 display: block;
1223 font-size: 120%;
1224 font-weight: bold;
1227 .heading.member_area_list {
1228 position: absolute;
1231 .heading.first {
1232 margin-top: 0;
1235 .menu_list li {
1236 padding-top: 1ex;
1237 padding-bottom: 1ex;
1240 .deactivated_member_info {
1241 background-color: #a00;
1242 color: #fff;
1245 /*************************************************************************
1246 * Voting
1247 */
1249 #voting_form {
1250 margin-top: 20px;
1253 #voting {
1254 position: relative;
1257 #voting .approval, .abstention, .disapproval {
1258 border: 2px black solid;
1259 margin-top: 2ex;
1260 margin-bottom: 5ex;
1261 padding: 1ex;
1262 padding-bottom: 2ex;
1263 border-radius: 8px;
1265 #voting .approval {
1266 background-color: #9f9;
1268 #voting .approval .movable {
1269 background-color: #dfd;
1271 #voting .abstention {
1272 background-color: #ccc;
1274 #voting .abstention .movable {
1275 background-color: #f2f2f2;
1277 #voting .disapproval {
1278 background-color: #f88;
1280 #voting .disapproval .movable {
1281 background-color: #fbb;
1283 #voting .cathead {
1284 font-weight: bold;
1286 #voting .movable {
1287 position: relative;
1288 border: 1px black solid;
1289 margin-top: 1ex;
1290 padding: 0.5ex;
1291 border-radius: 8px;
1293 #voting .voting_form_active .movable {
1294 cursor: pointer;
1296 #voting .voting_form_active .clickable {
1297 cursor: auto;
1299 #voting .voting_form_active a.clickable {
1300 cursor: pointer;
1303 #voting .grabber {
1304 vertical-align: middle;
1305 cursor: move;
1308 /*************************************************************************
1309 * timeline
1310 */
1311 div.ignore_area_list {
1312 float: left;
1313 width: 90%;
1314 margin: 0 0 1em 0;
1317 div.ignore_area_list >
1318 label.ui_field_label {
1319 text-align: left ;
1320 width: 100%;
1321 border-bottom:1px solid #000000;
1322 color: #000000;
1323 font-size:75%;
1324 font-weight:bold;
1325 vertical-align:bottom;
1326 text-transform:none;
1327 padding:0.5ex 0.5em
1330 div.ignore_area_item {
1331 clear: none;
1332 float: left;
1333 min-width: 10em;
1334 margin: 0.1ex 0.5em;
1335 margin-right: 0.5em;
1338 div.ignore_area_item > input {
1339 float: none;
1340 clear: none;
1341 display: inline;
1344 div.ignore_area_item >
1345 label.ui_field_label {
1346 float: none;
1347 clear: none;
1348 text-align: left;
1349 display: inline;
1352 div.timeline_results {
1353 clear: both;
1356 /* shadows */
1358 .slot_initiatives_list,
1359 .actions,
1360 .issues .issue,
1361 .ui_tabs_links a,
1362 .draft_content,
1363 .help,
1364 .use_terms,
1365 .motd,
1366 .ui_filter a.active {
1367 box-shadow: #777 0px 5px 5px -5px;
1368 -mox-box-shadow: #777 0px 5px 5px -5px;
1369 -webkit-box-shadow: #777 0px 5px 5px -5px;

Impressum / About Us