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