]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - theme/base/css/display.css
neo-quitter unuglification by marcus, merge-request 44
[quix0rs-gnu-social.git] / theme / base / css / display.css
1 /** theme: base
2  *
3  * @package   StatusNet
4  * @author    Samantha Doherty <sammy@status.net>
5  * @copyright 2011 StatusNet, Inc.
6  * @license   http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
7  * @link      http://status.net/
8  */
9
10
11 @media screen, projection, tv {
12
13 /* general styles and layout */
14
15 * {margin: 0; padding: 0; vertical-align: baseline;}
16 a abbr {border-bottom: 0; cursor: pointer;}
17 input.submit {cursor: pointer;}
18 table {border-collapse: collapse;}
19 ol, ul {list-style-position: inside;}
20 fieldset {border: none;}
21 legend {font-weight: bold; font-size: 1.2em;}
22 input, textarea, select, option {padding: 2px;}
23 textarea {overflow:auto;}
24
25 body {
26     background-color: #f2f2f2;
27     color: #000;
28     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
29     font-size: 14px;
30     line-height: 1.6;
31 }
32
33 a {
34     text-decoration: none; 
35     outline: none;
36 }
37
38 a:hover {
39     text-decoration: underline;
40 }
41
42 a img {
43     border: 0;
44     text-decoration: none;
45 }
46
47 h1, h2, h3, h4, h5, h6 {
48     font-weight: normal;
49     margin-bottom: 15px;
50 }
51
52 h1 {font-size: 2.0em;}
53 h2 {font-size: 1.6em;}
54 h3 {font-size: 1.4em;}
55 h4 {font-size: 1.2em;}
56 h5 {font-size: 1.1em;}
57 h6 {font-size: 1em;}
58
59 p {
60     margin-bottom: 1.4em;
61 }
62
63 .form_notice p, li p, .section p {
64     margin-bottom: 0;
65 }
66
67 input, textarea, select, option {
68     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
69     font-size: 1em;
70 }
71
72 select {
73     padding-right: 10px;
74     padding-bottom: 0px;
75     margin-top: -4px;
76 }
77
78 option {
79     padding-bottom: 0px;
80 }
81
82 #wrap {
83     position: relative;
84     width: 960px;
85     margin: 0px auto;
86     background-color: #fff;
87     border-left: 10px solid #fff;
88     border-right: 10px solid #fff;
89     padding-top: 10px;
90 }
91
92 #header {
93     position: relative;
94     width: 960px;
95     padding: 0px
96 }
97
98 #core {
99     position: relative;
100     float: left;
101     clear: both;
102     margin: 0px;
103     width: 958px;
104     border-top: 5px solid #ccc;
105     border-left: 1px solid #ccc;
106     border-right: 1px solid #ccc;
107 }
108
109 #aside_primary_wrapper {
110     width: 100%;
111     float: left;
112     overflow: hidden;
113     position: relative;
114     background-color: #f2f2f2;  
115 }    
116
117 #content_wrapper  {  
118     width: 100%;  
119     float: left;
120     position: relative;  
121     right: 239px; 
122     background-color: #fff;  
123     border-right: 1px solid #ccc;
124 }
125
126 #content_inner {
127     clear: both;
128     display: block;
129     position: relative;
130 }
131
132 #site_nav_local_views_wrapper  {  
133     width: 100%;  
134     float: left;
135     position: relative;  
136     right: 561px;
137     background-color: #f2f2f2;  
138     border-right: 1px solid #ccc;
139
140
141 #site_nav_local_views {
142     width: 138px;
143     float: left;
144     overflow: hidden;
145     position: relative;
146     left: 800px;
147     margin: 0px 0px 20px 0px;
148     padding: 22px 10px 40px 10px;
149 }
150
151 #content {
152     width: 520px;
153     float: left;
154     overflow: hidden;
155     position: relative;
156     left: 801px;
157     margin: 0px;
158     padding: 20px 20px 40px 20px;
159     background-color: #fff;
160 }
161
162 #aside_primary {
163     width: 218px;
164     float: left;
165     overflow: hidden;
166     position: relative;
167     left: 802px;
168     padding: 22px 10px 40px 10px;
169     margin: 0px 0px 20px 0px;
170 }
171
172 #footer {
173     clear: both;
174     position: relative;
175     width: 940px;
176     background-color: #ccc;
177     padding: 10px;
178 }
179
180 /* header elements */
181
182 address {
183     float: left;
184     position: relative;
185     margin: -2px 0 3px 0;
186     padding: 0px;
187     z-index: 99;
188 }
189
190 address a, address img {
191     display: block;
192 }
193
194 address img {
195     max-width: 158px;
196 }
197
198 address img + .p-name {
199     display: none;
200 }
201
202 address .poweredby {
203     display: block;
204     width: auto;
205 }
206
207 #site_nav_global_primary {
208     display: block;
209     position: absolute;
210     top: 0;
211     right: 0;
212     width: 800px;
213     margin: 0px;
214     height: 24px;
215     line-height: 20px;
216 }
217
218 #site_nav_global_primary ul {
219     float: right;
220 }
221
222 #site_nav_global_primary li {
223     display: inline;
224     margin-right: 10px;
225 }
226
227 #site_nav_global_primary li:last-child {
228     margin-right: 0px;
229 }
230
231 #header-search {
232     float: right;
233     position: relative;
234     top: -8px;
235     margin-left: 10px;
236 }
237
238 #site_notice { 
239     margin: 26px 0px 4px 0px;
240     padding: 10px;
241     background-color: #f2f2f2;
242 }
243
244 #site_notice p {
245     margin-bottom: 0px;
246 }
247
248 /* input forms */
249
250 .input_forms {
251     position: relative;
252     margin-bottom: 10px;
253     border-bottom: 1px dotted #ccc;
254     width: 100%;
255 }
256
257 .input_forms > label {
258     float: left;
259     margin-right: 1em;
260     opacity: 0.6;
261 }
262
263 #input_form_nav {
264     float: left;
265     margin-bottom: 10px;
266     list-style-type: none;
267 }
268
269 #input_form_nav li { 
270     display: inline;
271 }
272
273 #input_form_nav li a {
274     margin-right: 10px;
275 }
276
277 .input_form_nav_tab.current a {
278     text-decoration: underline;
279 }
280
281 .input_form { 
282     position: relative;
283     float: left;
284     width: 520px;
285     padding-bottom: 20px;
286     display: none;
287 }
288
289 .input_form.current { 
290     display: block;
291 }
292
293 .form_notice { 
294     margin-bottom: 10px;
295 }
296
297 .form_notice fieldset {
298     width: auto;
299 }
300
301 .form_notice legend {
302     display: none;
303 }
304
305 .form_notice #notice_data-text-label { /* TODO can remove this now? */
306     display: none;
307 }
308
309 .form_notice_placeholder .placeholder {
310     width: 508px;
311     padding: 4px 4px 4px 6px;
312     border: 1px solid #a6a6a6;
313     z-index: 97;
314     font-size: 1em;
315     color: #888;
316 }
317
318 .form_notice textarea {
319     clear: left;
320     float: left;
321     position: relative;
322     width: 483px;
323     height: 42px;
324     padding: 6px 5px 18px 5px;
325     border: 1px solid #a6a6a6;
326     z-index: 97;
327     font-size: 1.2em;
328 }
329
330 #form_notice-direct.form_notice textarea {
331     width: 508px;
332 }
333
334 .form_notice label.notice_data-attach,
335 .form_notice input.notice_data-attach {
336     position: absolute;
337     cursor: pointer;
338 }
339 .form_notice label.notice_data-attach {
340     top: 0px;
341     right: 0px;
342     z-index: 96;
343     text-indent: -9999px;
344     width: 16px;
345     height: 16px;
346 }
347
348 .form_notice input.notice_data-attach {
349     top: 0;
350     right: 0;
351     padding:0;
352     height:16px;
353 }
354
355 .form_notice .notice_data-geo_wrap label,
356 .form_notice .notice_data-geo_wrap input {
357     position: absolute;
358     top: 26px;
359     right: 0px;
360     cursor: pointer;
361     width: 16px;
362     height: 16px;
363     display: block;
364     z-index: 99;
365 }
366
367 .form_notice .notice_data-geo_wrap input {
368     visibility:hidden;
369 }
370
371 .form_notice .notice_data-geo_wrap label {
372     font-weight:normal;
373     font-size:1em;
374     margin-bottom:0;
375     text-indent:-9999px;
376 }
377
378 .form_notice label {
379     opacity: 0.6;
380 }
381
382 .form_notice label:hover {
383     opacity: 1;
384 }
385
386 .form_notice input.notice_data-attach {
387     opacity: 0;
388 }
389
390 .form_notice .count {
391     position: absolute;
392     top: 50px;
393     right: 32px;
394     z-index: 99;
395     font-size: 0.8em;
396     height: 1em; 
397     color: #777;
398 }
399
400 .form_notice.warning .count {
401     color: #ff0000;
402 }
403
404 #form_notice-direct.form_notice .count {
405     top: 84px;
406     right: 7px;
407 }
408     
409 .form_notice .error,
410 .form_notice .success,
411 .form_notice .notice-status {
412     position: relative;
413     overflow: auto;
414     line-height: 1.2em;
415     padding: 5px 5px 5px 10px;
416     margin: 10px 0px 0px 0px;
417     width: 478px;
418     border: 1px solid #ccc;
419 }
420
421 .form_notice .error {
422     border: 1px solid #d05858;
423 }
424
425 .form_notice .attach-status button.close,
426 .form_notice .notice-status button.close {
427     float:right;
428     font-size:0.8em;
429 }
430
431 .input_form .form_settings fieldset {
432     margin: 0px;
433     padding: 0px;
434 }
435
436 .input_form .form_settings fieldset fieldset {
437     width: 400px;
438     float: left;
439     background: none;
440     border: none;
441     margin-bottom: 0px;
442     padding: 0px;
443 }
444
445 .input_form .form_settings .form_data li {
446     position: relative;
447     margin-bottom: 12px;
448 }
449
450 .input_form fieldset fieldset label {
451     position: absolute;
452     top: 0;
453     left: 6px;
454     float: none;
455     text-align: left;
456     color: #888;
457     cursor: text;
458     background: #fff;
459 }
460
461 .input_form .form_settings li input {
462     width: 388px;
463     margin-left: 0;
464     margin-right: 0;
465     padding: 4px 5px 4px 5px;
466     border: 1px solid #a6a6a6;
467     font-size: 1em;
468 }
469
470 .input_form .form_settings li textarea {
471     width: 388px;
472     margin-left: 0;
473     padding: 4px 5px 4px 5px;
474     border: 1px solid #a6a6a6;
475     z-index: 97;
476     font-size: 1em;
477 }
478
479 .input_form .form_settings .form_data p.form_guide {
480     margin-left: 5px;
481 }
482
483 .form_notice label[for=to] {
484     float: left;
485 }
486
487 .form_notice select[id=to] {
488     float:left;
489     margin: -4px 0px 10px 10px;
490     max-width: 450px;
491 }
492
493 .form_notice .to-selector { 
494     clear: left;
495     padding-top: 15px;
496     z-index: 99;
497 }
498
499 .form_settings label[for=notice_to] {
500     left: 5px;
501     margin-left: 0px;
502     margin-right: 10px;
503     position: relative;
504     clear: left;
505     background: none;
506 }
507
508 .checkbox-wrapper {
509     padding: 2px;
510     margin-left: 10px;
511 }
512
513 .form_notice .checkbox-wrapper {
514     display: inline;
515     margin-left: 10px;
516 }
517
518 .form_settings .checkbox-wrapper label.checkbox {
519     margin-left: 0px;
520     margin-top: 6px;
521     line-height: 1.2em;
522     left: -3px;
523     float: none;
524 }
525
526 .checkbox-wrapper #notice_private {
527     display:none;
528 }
529
530 .checkbox-wrapper.unchecked label.checkbox {
531     padding-left: 20px;
532     background: url(../images/icons/lock_open.png) no-repeat 0px 0px;
533     opacity: 0.6;
534 }
535
536 .checkbox-wrapper.unchecked label.checkbox:hover {
537     opacity: 1;
538     cursor: pointer;
539 }
540
541 .checkbox-wrapper.checked label.checkbox {
542     padding-left: 20px;
543     background: url(../images/icons/lock.png) no-repeat 0px 0px;
544     color: red;
545     opacity: 1;
546 }
547
548 .checkbox-wrapper.checked label.checkbox:hover {
549     cursor: pointer;
550 }
551
552 .form_notice input.submit {
553     position: absolute;
554     right: 0px;
555     margin-top: -1.5em;
556     float: left;
557     width: 100px;
558     padding: 0px;
559     z-index: 99;
560 }
561
562 .input_form .form_settings .submit {
563     position: relative;
564     top: 0;
565     right: 0;
566     float: right;   
567     width: 100px;
568     height: 26px;
569     line-height: 26px;
570     padding: 0px 10px;
571     margin: 0px;
572     z-index: 1;
573 }
574
575 .form_settings {
576     clear: both;
577 }
578
579 /* site nav local views */
580
581
582 #site_nav_local_views li {
583     display: block;
584     margin: 0px 0px 8px 0px;
585 }
586
587 #site_nav_local_views li ul {
588     margin-bottom: 20px;
589 }
590
591 #site_nav_local_views a {
592     word-wrap: break-word;
593 }
594
595 #site_nav_local_views .current a {
596     text-decoration: underline;
597 }
598
599
600 /* aside primary */
601
602 #aside_primary .section {
603     position: relative;
604     float: left;
605     clear: both;
606     width: 100%;
607     margin-bottom: 20px;
608 }
609
610
611 /* notices */
612
613 #notices_primary {
614     padding-top: 3px;
615     clear: both;
616 }
617
618 #notices_primary h2 {
619     display: none;
620 }
621
622 .notice {
623     list-style-type: none;
624     margin-bottom: 10px;
625     clear: left;
626     padding-bottom: 2px;
627     line-height: 1.36em;
628 }
629
630 .notice, .profile, .application, #content .peopletag {
631     position:relative;
632     clear:both;
633     float:left;
634     width:100%;
635 }
636
637 .notice .p-author {
638     margin-right: 8px;
639 }
640
641 .notice .addressees::before {
642     content: '\25B8';
643 }
644 .notice .addressees, .notice .addressees li {
645     display: inline;
646 }
647 .notice .addressees > li::before {
648     content: ',';
649 }
650 .notice .addressees > li:first-child::before {
651     content: '';
652 }
653
654 .notice .addressees .group {
655     font-style: italic;
656 }
657
658 .p-name {
659     overflow: hidden;
660 }
661
662 .notice .p-author {
663     font-weight: bold;
664 }
665
666 #core .h-card .u-photo {
667     float: left;
668     margin-right: 8px;
669 }
670
671 .h-card .u-url, .h-card.u-url {
672     text-decoration:none;
673 }
674 .h-card .u-url:hover, .h-card.u-url:hover {
675     text-decoration:underline;
676 }
677
678 .notice .automatic { 
679 font-style:italic;
680 }
681
682 #showstream h1 { 
683     display:none;
684 }
685
686 #remoteprofile .notice .h-entry,
687 #showstream .notice .h-entry,
688 #remoteprofile .notice .entry-title,
689 #showstream .notice .entry-title {
690     min-height: 1px;
691 }
692
693 #remoteprofile #content .notice .author,
694 #showstream #content .notice .author {
695     display: none;
696 }
697
698 #remoteprofile .notice,
699 #showstream .notice {
700     min-height: 1em; 
701 }
702
703 #shownotice .notice .h-entry {
704     font-size:2.2em;
705     min-height:123px;
706     font-size: 1.6em;
707     line-height: 1.2em;
708 }
709
710 .notice .e-content {
711     margin-left: 56px;
712     max-height: 400px;
713     overflow-y: auto;
714 }
715
716 .notice-options {
717     margin-bottom: 7px;
718     margin-top: 12px;
719 }
720
721 .notice-options {
722     float: right;    
723 }
724
725 .notice-options fieldset {
726     border: none;
727 }
728
729 .notice-options legend {
730     display: none;
731 }
732
733 .notice-options form, .notice-options a, .notice-options .repeated {
734     float: left;
735     margin-right: 10px;
736 }
737
738 .notice-options input, .notice-options a, .notice-options .repeated {    
739     text-indent: -9999px;
740     outline:none;
741 }
742
743 .notice-options input.submit, .notice-options a, .notice-options .repeated {
744     display: block;
745     border: 0;
746     height: 16px;
747     width: 16px;
748 }
749
750 .notice-options input.submit, .notice-options a {
751     opacity: 0.6;
752 }
753
754 .notice-options input.submit:hover, .notice-options a:hover {
755     opacity: 1;
756 }
757
758 .notice .attachment {
759     position:relative;
760     padding-left:16px;
761 }
762
763 .notice .attachment.more, .mode-private .privacy_mode {
764 text-indent:-9999px;
765 width:16px;
766 height:16px;
767 display:inline-block;
768 overflow:hidden;
769 vertical-align:middle;
770 margin-left:4px;
771 }
772
773 #attachments .attachment,
774 .notice .attachment.more {
775 padding-left:0;
776 }
777
778 .notice .attachment img {
779 position:absolute;
780 top:18px;
781 left:0;
782 z-index:99;
783 }
784
785 #shownotice .notice .attachment img {
786 position:static;
787 }
788
789 .notice.h-entry .attachments {
790     clear: both;
791     position: relative;
792     top: 1em;
793 }
794
795 .notice.h-entry .attachments .inline-attachment * {
796     max-width: 100%;
797 }
798 .notice.h-entry .attachments .inline-attachment > a {
799     font-size: 0.8em;
800     line-height: 16px;
801     height: 16px;
802 }
803 .notice.h-entry .attachments .inline-attachment > img {
804     display: block;
805 }
806
807 #attachments {
808 clear:both;
809 float:left;
810 width:100%;
811 margin-top:18px;
812 }
813 #attachments dt {
814 font-weight:bold;
815 font-size:1.3em;
816 margin-bottom:4px;
817 }
818
819 #attachments ol li {
820 margin-bottom:18px;
821 list-style-type:decimal;
822 float:left;
823 clear:both;
824 }
825
826 #attachment_view img, #attachment_view .attachment_player {
827 max-width:480px;
828 max-height:480px;
829 }
830 #attachment_view #oembed_info {
831 margin-top:11px;
832 }
833 #attachment_view #oembed_info dt,
834 #attachment_view #oembed_info dd {
835 float:left;
836 }
837 #attachment_view #oembed_info dt {
838 clear:left;
839 margin-right:11px;
840 font-weight:bold;
841 }
842 #attachment_view #oembed_info dt:after {
843 content: ":";
844 }
845
846 /* threaded replies */
847
848 .threaded-replies {
849     clear: both;
850     float: left;
851     width: 458px;
852     margin-left: 55px;
853     margin-bottom: 10px;
854     padding-right: 2px;
855     padding-top: 5px;
856     border-left: 3px solid #ECECF2;
857     background: #fafafa;
858     color: #222;
859     font-size: 1em;
860 }
861
862 .threaded-replies:empty {
863     display: none;
864 }
865
866 #content .notice .threaded-replies .notice,
867 #content .notice .threaded-replies .notice-data { 
868     width: 440px;
869     padding-bottom: 1ex;
870     padding-top: 1ex;
871     border-bottom: 2px dotted #eee;
872     line-height: 1.36em;
873     margin-top: 0px;
874     margin-bottom: 0px;
875     margin-left: 10px;
876     background: none;
877 }
878
879 #content .notice .threaded-replies .notice.h-entry,
880 #content .notice .threaded-replies .entry-title {
881     min-height: 1px;
882 }
883
884 #content .threaded-replies .notice .p-author .u-photo {
885     height: 24px;
886     width: 24px;
887     top: 12px;
888 }
889
890 #content .threaded-replies .notice.h-entry .e-content {
891     margin-left: 32px;
892 }
893
894 .threaded-replies .notice-repeats,
895 .threaded-replies .notice-faves {
896     clear: both;
897     font-size: 0.88em;
898 }
899 .threaded-replies .notice-faves:before {
900     content: "\2665";
901     margin-right: 1ex;
902 }
903 .threaded-replies .notice-repeats:before {
904     content: "\267B";
905     margin-right: 1ex;
906 }
907
908 .threaded-replies li {
909     list-style-type: none;
910 }
911
912 .threaded-replies .notice-reply-comments {
913     margin: 2px 0px 4px 10px;
914 }
915
916 .threaded-replies .placeholder {
917     margin: 10px;
918     width: 426px;
919     padding: 4px 4px 4px 6px;
920     border: 1px solid #a6a6a6;
921     color: #888;
922 }
923
924 .threaded-replies .notice-reply {
925     clear: left;
926     position: relative;
927     padding: 10px;
928     padding-bottom: 44px;
929 }
930
931 .threaded-replies .form_notice textarea {
932     width: 395px;
933 }
934
935 .threaded-replies .form_notice label.notice_data-attach {
936     top: 10px;
937     right: 10px;
938 }
939
940 .threaded-replies .form_notice .notice_data-geo_wrap label,
941 .threaded-replies .form_notice .notice_data-geo_wrap input {
942     top: 36px;
943     right: 10px;
944 }
945
946 .threaded-replies .form_notice .count {
947     top: 60px;
948     right: 50px;
949 }
950
951 .threaded-replies .form_notice input.submit {
952     bottom: 0;
953 }
954
955 .threaded-replies .form_notice .error,
956 .threaded-replies .form_notice .success,
957 .threaded-replies .form_notice .notice-status {
958     width: 390px; 
959 }
960
961 .threaded-replies .to-selector {
962     display: none;
963 }
964
965 .notice .permalink:after {
966     content: ']';
967 }
968
969 .notice .permalink:before {
970     content: '[';
971 }
972
973 .notice footer .source + .permalink.external {
974     display: none;
975 }
976
977 /* old school conversation style */
978
979 #conversation .notices .notices {
980     float: left;
981     background-color:rgba(200, 200, 200, 0.050);
982     margin-left: 15px;
983     width: auto;
984 }
985
986 #conversation .notices .notices .notices .notices .notices .notices .notices .notices .notices .notices .notices .notices .notices  {
987     background: none;
988     margin-left: 0px;
989 }
990
991 /* aside primary specific styles */
992
993 .aside .section p,
994 .aside .section .more {
995 clear:both;
996 }
997
998 .notice-title {
999     display:none;
1000 }
1001
1002 #aside_primary ol.notices {
1003     list-style-type: none;
1004     float: left;
1005     position: relative;
1006     margin-bottom: 10px;
1007     width: 100%;
1008 }
1009
1010 #aside_primary .notice .h-card .u-photo {
1011     height: 24px;
1012     width: 24px;
1013     margin-right: 8px;
1014 }
1015 #aside_primary .notice .e-content {
1016     margin-left: 32px;
1017 }
1018
1019 #export_data li {
1020     list-style-type:none;
1021 }
1022
1023 #export_data li a {
1024     display: block;
1025     padding-left: 30px;
1026     height: 16px;
1027     line-height: 16px;
1028     margin-bottom: 15px;
1029 }
1030
1031 #aside_primary td {
1032     padding-right: 10px;
1033     padding-bottom: 10px;
1034 }
1035
1036 .section tbody td {
1037 padding-right:18px;
1038 padding-bottom:11px;
1039 }
1040
1041 #entity_statistics dt,
1042 #entity_statistics dd {
1043 display:inline;
1044 margin-right:11px;
1045 }
1046 #entity_statistics dt:after {
1047 content: ":";
1048 }
1049
1050 .section ul.entities {
1051     float:left;
1052     width:100%;
1053 }
1054
1055 .section .entities li {
1056     list-style-type: none;
1057     float: left;
1058     margin-right: 3px;
1059     margin-bottom: 8px;
1060     display: inline;
1061 }
1062 .section .entities li .u-photo {
1063     margin: 0;
1064 }
1065
1066 .tag-cloud {
1067 list-style-type:none;
1068 text-align:center;
1069 }
1070 .aside .tag-cloud {
1071 font-size:0.8em;
1072 word-wrap:break-word;
1073 }
1074 .tag-cloud li {
1075 display:inline;
1076 margin-right:7px;
1077 line-height:1.25;
1078 }
1079
1080 .tag-cloud li:before {
1081 content:'\0009';
1082 }
1083
1084 .aside .tag-cloud li {
1085 line-height:1.5;
1086 }
1087 .tag-cloud li a {
1088 text-decoration:none;
1089 }
1090 #tagcloud.section dt {
1091 text-transform:uppercase;
1092 font-weight:bold;
1093 }
1094 .tag-cloud-1 {
1095 font-size:1em;
1096 }
1097 .tag-cloud-2 {
1098 font-size:1.25em;
1099 }
1100 .tag-cloud-3 {
1101 font-size:1.75em;
1102 }
1103 .tag-cloud-4 {
1104 font-size:2em;
1105 }
1106 .tag-cloud-5 {
1107 font-size:2.25em;
1108 }
1109 .tag-cloud-6 {
1110 font-size:2.75em;
1111 }
1112 .tag-cloud-7 {
1113 font-size:3.25em;
1114 }
1115
1116 #publictagcloud #tagcloud.section dt {
1117 display:none;
1118 }
1119
1120 /* secondary elements */
1121
1122 .error, .success, .notice-status {
1123     background-color: #F7E8E8;
1124     padding: 4px 10px;
1125 }
1126 .success, .notice-status {
1127     background-color: #f2f2f2;
1128 }
1129
1130 #page_notice {
1131 clear:both;
1132 margin-bottom:18px;
1133 }
1134
1135 .e-content .success {
1136     padding: 6px;
1137 }
1138
1139 .system_notice ul,
1140 .instructions ul {
1141 margin-left:1em;
1142 }
1143 .instructions p,
1144 .instructions ul {
1145 margin-bottom:18px;
1146 }
1147 .help dt {
1148 display:none;
1149 }
1150 .guide {
1151 clear:both;
1152 }
1153
1154 button.close,
1155 button.minimize {
1156 width:16px;
1157 height:16px;
1158 text-indent:-9999px;
1159 padding:0;
1160 border:0;
1161 text-align:center;
1162 font-weight:bold;
1163 cursor:pointer;
1164 }
1165
1166 .dialogbox {
1167 position:absolute;
1168     top: 0px;
1169     right: 0px;
1170 z-index:9;
1171 float:none;
1172 padding:11px;
1173 border-style:solid;
1174 border-width:1px;
1175     background: #fff;
1176     color: #000;
1177 }
1178
1179 .dialogbox legend {
1180 display:block !important;
1181 margin-right:18px;
1182 margin-bottom:18px;
1183 }
1184
1185 .dialogbox button.close {
1186 position:absolute;
1187 right:3px;
1188 top:3px;
1189 }
1190
1191 .dialogbox .form_guide {
1192 font-weight:normal;
1193 padding:0;
1194 }
1195
1196 .dialogbox .submit_dialogbox {
1197 font-weight:bold;
1198 text-indent:0;
1199 min-width:46px;
1200 }
1201 .dialogbox input {
1202 padding-left:4px;
1203 }
1204 .dialogbox fieldset {
1205 margin-bottom:0;
1206 }
1207
1208 #pagination {
1209     background-color: #f2f2f2;
1210     clear: left;
1211     margin-top: 20px;
1212     padding: 1%;
1213     height: 1em;
1214 }
1215
1216 #pagination li {
1217     display: inline;
1218 }
1219
1220 #pagination .nav_prev {
1221     float: left;
1222 }
1223
1224 #pagination .nav_next {
1225     float: right;
1226 }
1227
1228 #wrap form.processing input.submit,
1229 #wrap a.processing,
1230 .dialogbox.processing .submit_dialogbox {
1231     background: url(../images/icons/icon_processing.gif) no-repeat 47% 47%;
1232     cursor: wait;
1233     outline: none;
1234     text-indent: -9999px;
1235 }
1236
1237 /* footer elements */
1238
1239 #site_nav_global_secondary dt {
1240     display: none;
1241 }
1242
1243 #site_nav_global_secondary li {
1244     display: inline;
1245     margin-right: 20px;
1246 }
1247
1248 #licenses dt {
1249     display: none;
1250 }
1251
1252 #licenses dd {
1253     margin-top: 10px;
1254 }
1255
1256 #site_content_license_cc {
1257 margin-bottom:0;
1258 }
1259 #site_content_license_cc img {
1260 display:inline;
1261 vertical-align:top;
1262 margin-right:4px;
1263 }
1264
1265 form ul li {
1266     list-style-type:none;
1267     margin:0 0 18px 0;
1268 }
1269
1270 form label.submit {
1271 display:none;
1272 }
1273
1274 .form_settings fieldset {
1275     margin-top: 10px;
1276     margin-bottom: 10px;
1277     border: none;
1278 }
1279
1280 .form_settings fieldset fieldset {
1281     margin-bottom: 20px;
1282     padding: 10px;
1283     padding-top: 10px;
1284     border-width:1px;
1285     border-style:solid;
1286     background:rgba(240, 240, 240, 0.2);
1287 }
1288
1289 .form_settings fieldset fieldset legend {
1290     line-height:0;
1291     font-size: 1.4em;
1292     font-weight: normal;
1293 }
1294
1295 .form_settings input.remove {
1296 margin-left:11px;
1297 }
1298 .form_settings .form_data li {
1299 width:100%;
1300 float:left;
1301     margin-bottom: 22px;
1302 }
1303 .form_settings .form_data label {
1304 float:left;
1305 }
1306 .form_settings .form_data textarea,
1307 .form_settings .form_data select,
1308 .form_settings .form_data input {
1309 margin-left:1.795%;
1310 float:left;
1311 }
1312
1313 .form_settings .form_data select {
1314     margin-top: 0px;
1315 }
1316
1317
1318 .form_settings .form_data input.submit,
1319 .form_settings .form_data input.checkbox,
1320 .form_settings .form_data input.radio {
1321 width:auto;
1322 }
1323 .form_settings .form_data textarea {
1324 width:63%;
1325 }
1326
1327 .form_settings .form_data input.submit {
1328 margin-left:0;
1329 }
1330
1331 .form_settings label {
1332 margin-top:2px;
1333     width: 25%;
1334     text-align: right;
1335 }
1336
1337 .form_settings input.checkbox, .form_settings input.radio {
1338     margin-left: 25%;
1339     margin-top: 3px;
1340     position: relative;
1341     left: -14px;
1342 }
1343
1344 .form_settings label.checkbox, .form_settings label.radio {
1345     width: auto;
1346     max-width: 60%;
1347     position: relative;
1348     left: -25px;
1349 }
1350
1351 .form_settings label.checkbox {
1352     text-align: left;
1353     line-height: 1.2em;
1354 }
1355
1356 .form_settings label.radio {
1357     text-align: left;
1358     margin: 0px;
1359 }
1360
1361 .form_settings li input.radio {
1362     clear: left;
1363 }
1364
1365 .form_actions label {
1366 display:none;
1367 }
1368 .form_guide {
1369 font-style:italic;
1370 }
1371
1372 .form_settings #settings_autosubscribe label {
1373 display:inline;
1374 font-weight:bold;
1375 }
1376
1377 #form_settings_profile legend,
1378 #form_login legend,
1379 #form_register legend,
1380 #form_password legend,
1381 #form_settings_avatar legend,
1382 #newgroup legend,
1383 #editgroup legend,
1384 .form_tag_user legend,
1385 #form_remote_subscribe legend,
1386 #form_openid_login legend,
1387 #form_search legend,
1388 #form_invite legend,
1389 #form_notice_delete legend,
1390 #form_password_recover legend,
1391 #form_password_change legend,
1392 .form_entity_block legend,
1393 #form_filter_bytag legend,
1394 #apioauthauthorize_allowdeny,
1395 .form_tag_user_wrap form,
1396 .form_tag_user_wrap label,
1397 .form_tag_user_wrap legend {
1398 display:none;
1399 }
1400
1401 .form_tag_user_wrap {
1402 clear:both;
1403 }
1404
1405 .form_tag_user {
1406 float:left;
1407 width:auto;
1408 }
1409
1410 .form_tag_user input.submit {
1411 width:50px;
1412 }
1413
1414 .form_settings .form_data p.form_guide {
1415 clear:both;
1416     margin-left: 27%;
1417 margin-bottom:0;
1418     line-height: 1.2em;
1419     padding-top: 4px;
1420 }
1421
1422 .form_settings p {
1423 margin-bottom:11px;
1424 }
1425
1426 .form_settings .form_note {
1427 padding:0 7px;
1428 }
1429
1430 .form_settings .form_response {
1431     margin-top: 10px;
1432 }
1433
1434 .form_settings input {
1435     margin-right: 20px;
1436 }
1437
1438 #form_search .submit {
1439 margin-left:11px;
1440 }
1441 #form_search .form_data input {
1442 width:auto;
1443 }
1444
1445 .h-entry .e-content .form_settings ul {
1446 margin-left:0;
1447 }
1448
1449 .notice > footer {
1450     clear: left;
1451     font-size: 0.8em;
1452     margin-left: 56px;
1453 }
1454
1455 .notice > footer .timestamp span.p-name {
1456     display: none;
1457 }
1458
1459 .limited-scope .e-content .timestamp:before {
1460 content:'☠';
1461 font-size:150%;
1462 }
1463
1464 #content .notice-source-activity div.entry-title, .notice-source-activity div.e-content {
1465     margin-left: 0;
1466
1467
1468 #content .notice-source-activity div.entry-title {
1469     font-style: italic;
1470     min-height: 0;
1471 }
1472
1473 #content .notice-source-activity .notice div.entry-title {
1474     font-style: normal;
1475 }
1476
1477 span.rtl {
1478     display: block;
1479     direction: rtl;
1480     text-align: right;
1481     float: right;
1482
1483
1484 #filter_tags ul li,
1485 .entity_send-a-message .form_notice,
1486 .form_settings fieldset fieldset,
1487 .entity_moderation:hover ul,
1488 .entity_role:hover ul,
1489 .dialogbox {
1490 border-color:#DDDDDD;
1491 }
1492
1493 .form_settings input.form_action-primary {
1494 background:none;
1495 }
1496
1497 .form_settings .form_note {
1498     background-color: #d1f7cb;
1499 }
1500
1501 #form_settings_photo .form_data {
1502 clear:both;
1503 }
1504
1505 #form_settings_avatar li {
1506 width:auto;
1507 }
1508 #form_settings_avatar input {
1509 margin-left:0;
1510 }
1511 #avatar_original,
1512 #avatar_preview {
1513 float:left;
1514 }
1515 #avatar_preview {
1516 margin-left:29px;
1517 }
1518 #avatar_preview_view {
1519 height:96px;
1520 width:96px;
1521 margin-bottom:18px;
1522 overflow:hidden;
1523 }
1524
1525 #settings_attach,
1526 #form_settings_avatar .form_actions {
1527 clear:both;
1528 }
1529
1530 #form_settings_avatar .form_actions {
1531 margin-bottom:0;
1532 }
1533
1534 .entity_profile {
1535 position:relative;
1536 width:73%;
1537 min-height:123px;
1538 float:left;
1539 margin-bottom:18px;
1540 margin-left:0;
1541 overflow:hidden;
1542 }
1543
1544 .entity_profile dt,
1545 #entity_statistics dt {
1546 font-weight:bold;
1547 }
1548 .entity_profile dd {
1549 display:inline;
1550 }
1551
1552 .entity_profile .entity_depiction {
1553     float:left;
1554     width:96px;
1555     margin-right:18px;
1556     margin-bottom:18px;
1557     text-align: center;
1558 }
1559
1560 .entity_profile .entity_fn,
1561 .entity_profile .entity_nickname,
1562 .entity_profile .entity_location,
1563 .entity_profile .entity_url,
1564 .entity_profile .entity_note,
1565 .entity_profile .entity_tags,
1566 .entity_profile .entity_aliases,
1567 .entity_profile .entity_statistics {
1568 margin-left:113px;
1569 margin-bottom:4px;
1570 }
1571
1572 .peopletags_edit_button {
1573 cursor:pointer;
1574 border:0;
1575 padding:0;
1576 width:16px;
1577 height:16px;
1578     position: relative;
1579     top: -3px;
1580 }
1581
1582 ul.profile_list {
1583     list-style-type:none;
1584 }
1585
1586 ul.profile_list li {
1587     margin-bottom: 20px;
1588 }
1589
1590 .profile_list .h-card .u-photo {
1591     margin-right: 4px;
1592 }
1593 .profile_list .h-card .p-nickname {
1594     display: block;
1595 }
1596
1597 .entity_profile .entity_nickname,
1598 .entity_profile .entity_fn {
1599 margin-left:0;
1600 }
1601
1602 .entity_profile .p-nickname {
1603     font-size:1.4em;
1604 }
1605
1606 .entity_profile .p-name {
1607     font-size: 1.2em;
1608     clear: left;
1609 }
1610
1611 .entity_profile .p-name:before {
1612 content: "(";
1613 font-weight:normal;
1614 }
1615 .entity_profile .p-name:after {
1616 content: ")";
1617 font-weight:normal;
1618 }
1619 .entity_profile .p-nickname:after,
1620 .entity_profile .p-nickname:before {
1621 content:"";
1622 }
1623 .entity_profile dt,
1624 .entity_profile h2 {
1625 display:none;
1626 }
1627 .entity_profile .role {
1628 margin-left:11px;
1629 font-style:italic;
1630 }
1631
1632 .entity_actions {
1633 float:right;
1634 margin-left:2%;
1635     margin-bottom: 28px;
1636 min-width:21%;
1637 }
1638
1639 .entity_actions h2 {
1640 display:none;
1641 }
1642 .entity_actions ul {
1643 list-style-type:none;
1644 }
1645 .entity_actions li {
1646 margin-bottom:7px;
1647 }
1648 .entity_actions li:first-child {
1649 border-top:0;
1650 }
1651 .entity_actions fieldset {
1652 border:0;
1653 padding:0;
1654 }
1655 .entity_actions legend {
1656 display:none;
1657 }
1658
1659 .entity_actions input.submit {
1660 display:block;
1661 text-align:left;
1662 width:100%;
1663 }
1664
1665 .entity_actions a, .entity_actions input, .entity_actions p {
1666     color: #333 !important;
1667     font-weight: normal;
1668     line-height: 1.6em;
1669 }
1670
1671 .entity_actions a {
1672 text-decoration:none;
1673 display:block;
1674     padding: 3px 4px 4px 28px;
1675 }
1676
1677 .entity_actions input {
1678     padding: 4px 4px 4px 26px;
1679 }
1680
1681 .entity_actions a, .entity_actions p, .entity_actions .entity_subscribe input, .entity_actions .entity_block input, .entity_actions .entity_moderation input, .entity_actions .entity_role input, .entity_actions .entity_nudge input, .entity_actions .entity_delete input, .entity_actions input.submit {
1682     background-color: #ccc !important;
1683     border: none;
1684 }
1685
1686 .entity_actions p {
1687     padding: 2px 4px 4px 28px;
1688 }
1689
1690 .entity_actions a:hover, .entity_actions p:hover, .entity_actions .entity_subscribe input:hover, .entity_actions .entity_block input:hover, .entity_actions .entity_moderation input:hover, .entity_actions .entity_role input:hover, .entity_actions .entity_nudge input:hover, .entity_actions .entity_delete input:hover, .entity_actions input.submit:hover {
1691     background-color: #f2f2f2 !important;
1692 }
1693
1694 .entity_actions #entity_remote_subscribe a {
1695     padding-right: 6px;
1696 }
1697
1698 .entity_actions .accept {
1699 margin-bottom:18px;
1700 }
1701
1702 .entity_send-a-message button {
1703 position:absolute;
1704 top:3px;
1705 right:3px;
1706 }
1707
1708 .entity_send-a-message .form_notice {
1709     width: 410px;
1710     padding: 10px;
1711     position: absolute;
1712     top: 46px;
1713     right: 10px;
1714     z-index: 2;
1715 }
1716
1717 .entity_send-a-message .form_notice fieldset {
1718     width: 410px;
1719 }
1720
1721 .entity_send-a-message .form_notice textarea {
1722     width: 280px;
1723 }
1724
1725 .entity_send-a-message .form_notice legend {
1726 display:block;
1727 margin-bottom:11px;
1728     font-weight: normal;
1729     color: #333 !important;
1730 }
1731
1732 .entity_send-a-message .form_notice label,
1733 .entity_send-a-message .form_notice select {
1734 display:none;
1735 }
1736 .entity_send-a-message .form_notice .submit {
1737     position: absolute;
1738     top: 52px;
1739     right: 0px;
1740     text-align: center;
1741 }
1742
1743 .entity_moderation,
1744 .entity_role {
1745 position:relative;
1746 }
1747 .entity_moderation p,
1748 .entity_role p {
1749
1750 padding-bottom:2px;
1751 margin-bottom:7px;
1752 }
1753 .entity_moderation ul,
1754 .entity_role ul {
1755 display:none;
1756 }
1757 .entity_moderation:hover ul,
1758 .entity_role:hover ul {
1759 display:block;
1760 width:110%;
1761 padding:11px;
1762 position:absolute;
1763 z-index:1;
1764 border-width:1px;
1765 border-style:solid;
1766         top: 20px;
1767         right: 0px;
1768         background-color: #fff;
1769 }
1770
1771 .entity_tags ul {
1772 list-style-type:none;
1773 display:inline;
1774 }
1775 .entity_tags li {
1776 display:inline;
1777 margin-right:7px;
1778 }
1779 .entity_tags li:before {
1780 content:'\0009';
1781 }
1782 .entity_tags p.error {
1783 clear:both;
1784 }
1785
1786 #filter_tags {
1787     margin-bottom: 20px;
1788     padding-bottom: 10px;
1789     border-bottom: 1px solid #ccc;
1790     float: left;
1791 }
1792 #filter_tags dt {
1793 display:none;
1794 }
1795 #filter_tags ul {
1796 list-style-type:none;
1797 }
1798 #filter_tags li {
1799 float:left;
1800 margin-left:7px;
1801 padding-left:7px;
1802 border-left-width: 1px;
1803 border-left-style:solid;
1804 }
1805 #filter_tags #filter_tags_all,
1806 #filter_tags #filter_tags_for {
1807     margin-left: 10px;
1808 border-left:0;
1809 padding-left:0;
1810 }
1811 #filter_tags_all a,
1812 #filter_tags_for a  {
1813 font-weight:bold;
1814     margin-top: 4px;
1815 float:left;
1816 }
1817
1818 #filter_tags_for a {
1819 margin:0;
1820 }
1821
1822 #filter_tags #form_filter_bymode .form_guide {
1823 display:none;
1824 }
1825
1826 #filter_tags #form_filter_bymode .checkbox {
1827 float:none;
1828 }
1829
1830 #filter_tags #form_filter_bymode legend {
1831 display:none;
1832 }
1833
1834 #filter_tags_item label {
1835     margin-right: 14px;
1836     margin-left: 7px;
1837     padding-top: 4px;
1838 }
1839 #filter_tags_item label,
1840 #filter_tags_item select {
1841 float:left;
1842 }
1843
1844 #filter_tags_item p {
1845 float:left;
1846 clear:both;
1847 margin-left:38px;
1848 }
1849 #filter_tags_item .submit {
1850 position:relative;
1851 top:3px;
1852 left:3px;
1853 }
1854
1855 .profile .entity_profile {
1856 margin-bottom:0;
1857 min-height:60px;
1858 }
1859
1860 .profile .form_group_join legend,
1861 .profile .form_group_leave legend,
1862 .profile .form_user_subscribe legend,
1863 .profile .form_user_unsubscribe legend,
1864 .form_user_add_peopletag legend,
1865 .form_user_remove_peopletag legend {
1866 display:none;
1867 }
1868
1869 .profile .entity_profile .p-name,
1870 .profile .entity_profile .u-url[rel~=contact] {
1871 margin-left:0;
1872 display:inline;
1873 }
1874
1875 .profile .entity_profile .note,
1876 .profile .entity_profile .u-url,
1877 .profile .entity_profile .entity_tags,
1878 .profile .entity_profile .form_subscription_edit {
1879 margin-left:55px;
1880 clear:none;
1881 display:block;
1882 width:auto;
1883 }
1884
1885 .profile_block .group_aliases .group_alias {
1886     display:inline;
1887     list-style-type: none;
1888     font-style: italic;
1889 }
1890
1891 .profile_block .entity_tags dt {
1892 display: inline;
1893 margin-right: 3px;
1894 font-weight: bold;
1895 }
1896
1897 .profile_block .entity_tags dd {
1898 display: inline;
1899 }
1900
1901 .profile .entity_profile .form_subscription_edit {
1902 clear:left;
1903 }
1904
1905 .peopletag {
1906 min-height: 90px;
1907 list-style: none;
1908 }
1909
1910 .peopletag .e-content {
1911 width:auto;
1912 }
1913
1914 .peopletag .tagged-count a:after,
1915 .peopletag .subscriber-count a:after,
1916 .entity_tags dt:after {
1917 content: ':';
1918 }
1919
1920 .peopletag .updated {
1921 display:none;
1922 }
1923 .peopletag .tag a{
1924 font-weight: bold;
1925 }
1926
1927 .peopletag .tag:before {
1928 /* raquo */
1929 content: "\00BB";
1930 }
1931
1932 .peopletag .entity_statistics {
1933 font-size:80%;
1934 }
1935
1936 .profile-lister li {
1937 min-height:30px;
1938 padding:5px;
1939 clear:both;
1940 border-top: 1px #eee solid;
1941 }
1942
1943 .profile-lister {
1944 list-style-type:none;
1945 }
1946
1947 .profile_search_wrap h3 {
1948 float:left;
1949 font-weight:normal;
1950 margin-right:10px;
1951 }
1952
1953 .profile-lister li .u-photo {
1954 display:inline;
1955 margin-right:7px;
1956 margin-bottom:-5px;
1957 }
1958
1959 .profile-lister li .p-name {
1960 font-weight:bold;
1961 }
1962
1963 .profile-lister li .entity_actions {
1964 margin:0;
1965 }
1966
1967 #profile_search_results {
1968 display:block;
1969 border-radius:4px;
1970 max-height:800px;
1971 margin:10px 0;
1972 padding: 5px;
1973 border:1px #ddd solid;
1974 background:#f1f1f1;
1975 }
1976
1977 #profile_search_results.empty {
1978 display: none;
1979 }
1980
1981 .form_peopletag_edit_user_search legend,
1982 .form_peopletag_edit_user_search label,
1983 .form_peopletag_edit_user_search .form_guide {
1984 display:none;
1985 }
1986
1987 .form_peopletag_edit_user_search #field {
1988 height:30px;
1989 }
1990 .form_peopletag_edit_user_search .submit {
1991 width:60px;
1992 }
1993 .form_user_remove_peopletag,
1994 .form_user_add_peopletag {
1995 float:right;
1996 }
1997 .form_user_add_peopletag input.submit,
1998 .form_user_remove_peopletag input.submit {
1999 width:100px;
2000 padding-left:25px;
2001 text-align:left;
2002 }
2003
2004 .profile .entity_profile .form_subscription_edit label {
2005 font-weight:normal;
2006 margin-right:11px;
2007 }
2008
2009 .applications {
2010 margin-bottom:18px;
2011 float:left;
2012 width:100%;
2013 }
2014 .applications li {
2015 list-style-type:none;
2016 }
2017 .application img,
2018 #showapplication .entity_profile img,
2019 .form_data #application_icon img,
2020 #apioauthauthorize .form_data img {
2021 max-width:96px;
2022 max-height:96px;
2023 }
2024 #apioauthauthorize .form_data img {
2025 margin-right:18px;
2026 float:left;
2027 }
2028
2029 .oauth-desktop-mode #wrap {
2030     min-width: 500px;
2031 }
2032
2033 .oauth-desktop-mode #content {
2034     width: 480px;
2035     padding: 6px;
2036     margin: 4px 0px 0px 4px;
2037     border-top-left-radius: 7px;
2038 }
2039
2040 .oauth-desktop-mode fieldset {
2041     margin-bottom: 10px !important;
2042 }
2043
2044 #oauth_pin {
2045     text-align: center;
2046     font-size: 3em;
2047 }
2048
2049 #showapplication .entity_profile {
2050 width:68%;
2051 }
2052 #showapplication .entity_profile .entity_fn {
2053 margin-left:0;
2054 }
2055 #showapplication .entity_profile .p-name:before,
2056 #showapplication .entity_profile .p-name:after {
2057 content:'';
2058 }
2059 #showapplication .entity_data {
2060 clear:both;
2061 margin-bottom:18px;
2062 }
2063 #showapplication .entity_data h2 {
2064 display:none;
2065 }
2066 #showapplication .entity_data dd {
2067 font-family:monospace;
2068 font-size:1.3em;
2069     margin-bottom: 10px;
2070 }
2071 .form_data #application_types label.radio,
2072 .form_data #default_access_types label.radio {
2073 width:14.5%;
2074 }
2075
2076 .mark-top {
2077     border-top: 1px solid #ccc;
2078 }
2079
2080 #realtime_actions {
2081     position: relative !important;
2082     right: -4px !important;
2083     float: right;
2084     padding-top: 15px;
2085     margin-bottom: -8px !important;
2086 }
2087
2088 #realtime_actions li {
2089     margin-left: 2px !important;
2090 }
2091
2092 #realtime_play, #realtime_pause, #realtime_popup {
2093     background-image: url(../images/icons/icons-01.gif);
2094     background-repeat: no-repeat;
2095     background-color: transparent;
2096 }
2097
2098 #realtime_play {
2099     background-position: 0 -2308px;
2100 }
2101 #realtime_pause {
2102     background-position: 0 -2374px;
2103 }
2104 #realtime_popup {
2105     background-position: 0 -1714px;
2106 }
2107
2108 #realtime_play, #realtime_pause, #realtime_popup {
2109     opacity: 0.6;
2110 }
2111
2112 #realtime_play:hover, #realtime_pause:hover, #realtime_popup:hover {
2113     opacity: 1;
2114 }
2115
2116 body.realtime-popup {
2117     min-width: 100%;
2118     overflow-x: hidden;
2119 }
2120
2121 .realtime-popup #content {
2122     padding: 0px !important;
2123     margin: 0px !important;
2124     left: 0;
2125     right: 0;
2126     width: 100% !important;
2127     overflow: visible;
2128 }
2129
2130 .realtime-popup #content_inner {
2131     padding: 5px;
2132 }
2133
2134 .realtime-popup .input_forms {
2135     top: 0px;
2136     left: 0px;
2137     padding: 10px 0px 0px 5px;
2138 }
2139
2140 .realtime-popup .form_notice_placeholder .placeholder {
2141     width: 445px;
2142 }
2143
2144 .realtime-popup .input_form {
2145     width: 470px;
2146 }
2147
2148 .realtime-popup .form_notice fieldset {
2149     width: 430px !important;
2150 }
2151
2152 .realtime-popup .form_notice textarea {
2153     width: 425px !important;
2154 }
2155
2156 .realtime-popup .form_notice label.notice_data-attach {
2157     right: 0px !important;
2158     top: 3px !important;
2159 }
2160
2161 .realtime-popup .form_notice #notice_data-geo_wrap label, .realtime-popup .form_notice #notice_data-geo_wrap input {
2162     right: 8px !important;
2163     top: 3px !important;
2164 }
2165
2166 .realtime-popup .form_notice .error,
2167 .realtime-popup .form_notice .success,
2168 .realtime-popup .form_notice .notice-status {
2169     width: 430px; 
2170 }
2171
2172 /* icons */
2173
2174 .form_notice label.notice_data-attach,
2175 #export_data li a.rss,
2176 #export_data li a.atom,
2177 #export_data li a.foaf,
2178 .entity_edit a,
2179 .entity_send-a-message a,
2180 .entity_nudge p,
2181 .form_user_nudge input.submit,
2182 .form_user_block input.submit,
2183 .form_user_unblock input.submit,
2184 .form_group_block input.submit,
2185 .form_group_unblock input.submit,
2186 .form_make_admin input.submit,
2187 .notice .attachment,
2188 .notice-options .notice_reply,
2189 .notice-options form.form_favor input.submit,
2190 .notice-options form.form_disfavor input.submit,
2191 .notice-options .notice_delete,
2192 .notice-options form.form_repeat input.submit,
2193 #new_group a,
2194 #pagination .nav_prev a,
2195 #pagination .nav_next a,
2196 button.close,
2197 .form_group_leave input.submit,
2198 .form_user_unsubscribe input.submit,
2199 .form_group_join input.submit,
2200 .form_user_subscribe input.submit,
2201 .form_remote_authorize input.submit,
2202 .entity_subscribe a,
2203 .entity_moderation p,
2204 .entity_sandbox input.submit,
2205 .entity_silence input.submit,
2206 .entity_delete input.submit,
2207 .entity_role p,
2208 .entity_role_administrator input.submit,
2209 .entity_role_moderator input.submit,
2210 .form_user_remove_peopletag input.submit,
2211 .form_user_add_peopletag input.submit,
2212 .form_peopletag_subscribe input.submit,
2213 .form_peopletag_unsubscribe input.submit,
2214 .notice-options .repeated,
2215 .form_notice label.notice_data-geo,
2216 button.minimize,
2217 .form_reset_key input.submit,
2218 .entity_tag a,
2219 .entity_clear input.submit,
2220 .entity_flag input.submit,
2221 .entity_flag p,
2222 .entity_subscribe input.submit,
2223 #realtime_play,
2224 #realtime_pause,
2225 #realtime_popup,
2226 .peopletags_edit_button,
2227 .mode-private .privacy_mode {
2228 background-image:url(../images/icons/icons-01.gif);
2229 background-repeat:no-repeat;
2230 background-color:transparent;
2231 }
2232
2233 button.close {
2234 background-position:0 -1120px;
2235 }
2236 button.minimize {
2237 background-position:0 -1912px;
2238 }
2239 #export_data li a.rss {
2240 background-position:0 -130px;
2241 }
2242 #export_data li a.atom {
2243 background-position:0 -64px;
2244 }
2245 #export_data li a.foaf {
2246 background-position:0 1px;
2247 }
2248
2249 #export_data li a.json {
2250 background-image:url(../images/icons/activitystreams.png);
2251 background-repeat:no-repeat;
2252 background-color:transparent;
2253 }
2254
2255 .form_group_leave input.submit,
2256 .form_user_unsubscribe input.submit,
2257 .form_user_remove_peopletag input.submit,
2258 .form_peopletag_unsubscribe input.submit {
2259 background-position:5px -1246px;
2260 }
2261 .form_group_join input.submit,
2262 .form_user_subscribe input.submit,
2263 .form_remote_authorize input.submit,
2264 .form_user_add_peopletag input.submit,
2265 .form_peopletag_subscribe input.submit,
2266 .entity_subscribe a {
2267 background-position:5px -1181px;
2268 }
2269  .peopletags_edit_button {
2270 background-position: 0 -724px;
2271 }
2272
2273 .entity_edit a {
2274 background-position: 5px -719px;
2275 }
2276 .entity_send-a-message a {
2277 background-position: 5px -852px;
2278 }
2279 .entity_nudge p,
2280 .form_user_nudge input.submit {
2281 background-position: 5px -785px;
2282 }
2283 .form_user_block input.submit,
2284 .form_user_unblock input.submit,
2285 .form_group_block input.submit,
2286 .form_group_unblock input.submit {
2287 background-position: 5px -918px;
2288 }
2289 .form_make_admin input.submit {
2290 background-position: 5px -983px;
2291 }
2292 .entity_moderation p {
2293 background-position: 5px -1313px;
2294 }
2295 .entity_sandbox input.submit {
2296 background-position: 5px -1380px;
2297 }
2298 .entity_silence input.submit {
2299 background-position: 5px -1445px;
2300 }
2301 .entity_delete input.submit {
2302 background-position: 5px -1511px;
2303 }
2304 .entity_sandbox .form_user_unsandbox input.submit {
2305 background-position: 5px -2568px;
2306 }
2307 .entity_silence .form_user_unsilence input.submit {
2308 background-position: 5px -2633px;
2309 }
2310 .entity_role p {
2311 background-position: 5px -2436px;
2312 }
2313 .entity_role_administrator .form_user_grantrole input.submit {
2314 background-position: 5px -983px;
2315 }
2316 .entity_role_moderator .form_user_grantrole input.submit {
2317 background-position: 5px -1313px;
2318 }
2319 .entity_role_administrator .form_user_revokerole input.submit {
2320 background-position: 5px -2699px;
2321 }
2322 .entity_role_moderator .form_user_revokerole input.submit {
2323 background-position: 5px -2501px;
2324 }
2325 .form_reset_key input.submit {
2326 background-position: 5px -1973px;
2327 }
2328 .entity_clear input.submit {
2329 background-position: 5px -2039px;
2330 }
2331 .entity_flag input.submit,
2332 .entity_flag p {
2333 background-position: 5px -2105px;
2334 }
2335 .entity_subscribe input.accept {
2336 background-position: 5px -2171px;
2337 }
2338 .entity_subscribe input.reject {
2339 background-position: 5px -2237px;
2340 }
2341 #realtime_play {
2342 background-position: 0 -2308px;
2343 }
2344 #realtime_pause {
2345 background-position: 0 -2374px;
2346 }
2347 #realtime_popup {
2348 background-position: 0 -1714px;
2349 }
2350 .notice .attachment {
2351 background-position:0 -394px;
2352 }
2353 .notice .attachment.more {
2354 background-position:0 -2770px;
2355 }
2356 #attachments .attachment {
2357 background:none;
2358 }
2359 .notice-options .notice_reply {
2360 background-position:0 -592px;
2361 }
2362 .notice-options form.form_favor input.submit {
2363 background-position:0 -460px;
2364 }
2365 .notice-options form.form_disfavor input.submit {
2366 background-position:0 -526px;
2367 }
2368 .notice-options .notice_delete {
2369 background-position:0 -658px;
2370 }
2371 .notice-options .form_repeat.processing {
2372 background-image:none;
2373 }
2374 .notice-options form.form_repeat input.submit {
2375 background-position:0 -1582px;
2376 }
2377 .notice-options .repeated {
2378 background-position:0 -1648px;
2379 }
2380 #new_group a {
2381 background-position:0 -1054px;
2382 }
2383 .form_notice label.notice_data-attach {
2384     background-position: 0 -328px;
2385 }
2386 .form_notice label.notice_data-geo {
2387     background-position: 0 -1780px;
2388 }
2389 .form_notice label.notice_data-geo.checked {
2390     background-position: 0 -1846px;
2391 }
2392
2393 #pagination .nav_prev a {
2394     padding-top: 8px;
2395     padding-left: 25px;
2396     background-position:0 -187px;
2397 }
2398 #pagination .nav_next a { 
2399     padding-top: 9px;
2400     padding-right: 25px;
2401     background-position: 115% -252px;
2402 }
2403
2404 #usergroups #new_group {
2405 float: left;
2406 margin-right: 2em;
2407 }
2408 #new_group, #group_search {
2409 margin-bottom:18px;
2410 }
2411 #new_group a {
2412 padding-left:20px;
2413 }
2414
2415
2416
2417 .entity_tags li.mode-private {
2418 color: #829D25;
2419 }
2420 .mode-private .privacy_mode {
2421 background-position: 0px -1978px;
2422 }
2423
2424 /* tag autocomplete */
2425
2426 .ptag-ac-line {
2427 font-weight: normal;
2428 background-color: white;
2429 min-height:30px;
2430 }
2431 .ptag-ac-line:nth-child(odd) {
2432 background-color: #fafafa;
2433 }
2434
2435 .ptag-ac-line-tag {
2436 min-width: 150px;
2437 display: inline-block;
2438 }
2439
2440 .ptag-ac-line .freq {
2441 min-width: 50px;
2442 text-align: right;
2443 float:right;
2444 }
2445
2446 .ptag-ac-line.mode-public .privacy_mode {
2447 display:none;
2448 }
2449
2450 #site_nav_local_views li.extended_menu a {
2451     display:none;
2452 }
2453
2454 .profile_block_otherprofile_list li {
2455     display: inline;
2456     list-style-type: none;
2457 }
2458
2459 }/*end of @media screen, projection, tv*/
2460
2461
2462 @media print {
2463 a:after { background-color:#FFFFFF; }
2464 a:not([href^="#"]):after { content:" <"attr(href)"> "; }
2465 img { border:none; }
2466 p { orphans: 2; widows: 1; }
2467
2468 #site_nav_global_primary,
2469 #site_nav_local_views,
2470 #form_notice,
2471 .pagination,
2472 #site_nav_global_secondary,
2473 .entity_actions,
2474 .notice-options,
2475 #aside_primary,
2476 .form_subscription_edit .submit {
2477 display:none;
2478 }
2479 .timestamp dt, .timestamp dd,
2480 .device dt, .device dd {
2481 display:inline;
2482 }
2483 .profiles li,
2484 .notices li {
2485 margin-bottom:18px;
2486 }
2487
2488 }/*end of @media print*/