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