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