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