]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - theme/rebase/css/display.css
ee88b312a791f67930668fca227dfb06700f9d36
[quix0rs-gnu-social.git] / theme / rebase / 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 /* Local navigation */
365
366 #site_nav_local_views { 
367     margin-bottom: 20px;
368 }
369
370 #site_nav_local_views dt {
371     display: none;
372 }
373
374 #site_nav_local_views li {
375     display: inline;
376     margin-right: 20px;
377 }
378
379 #site_nav_local_views .current a {
380     text-decoration: underline;
381 }
382
383 /* notices */
384
385 #notices_primary {
386     padding-top: 8px;
387     clear: both;
388 }
389
390 #notices_primary h2 {
391     display: none;
392 }
393
394 .notice {
395     list-style-type: none;
396     margin-bottom: 25px;
397     clear: left;
398     min-height: 54px;
399     padding-bottom: 2px;
400 }
401
402 .notice, .profile, .application {
403     position:relative;
404     clear:both;
405     float:left;
406     width:100%;
407 }
408
409 .notice .author {
410     margin-right: 8px;
411 }
412
413 .fn {
414     overflow: hidden;
415 }
416
417 .notice .author .fn {
418     font-weight: bold;
419 }
420
421 #core .vcard .photo {
422     display: inline;
423     margin-right: 11px;
424     float: left;
425 }
426
427 #content .notice .author .photo {
428     position: absolute;
429     top: 4px;
430     left: 4px;
431     float: none;
432 }
433
434 #content .notice .entry-title {
435     margin: 2px 7px 0px 59px;
436 }
437
438 .vcard .url {
439     text-decoration:none;
440 }
441 .vcard .url:hover {
442     text-decoration:underline;
443 }
444
445 .notice .entry-title {
446     overflow:hidden;
447     word-wrap:break-word;
448 }
449
450 .notice .entry-title.ov {
451 overflow:visible;
452 }
453
454 #showstream h1 { 
455     display:none;
456 }
457
458 #showstream .notice .entry-title, #showstream .notice div.entry-content {
459     margin-left: 0;
460 }
461
462 #showstream #content .notice .author {
463     display: none;
464 }
465
466 #showstream .notice {
467     min-height: 1em; 
468 }
469
470 #shownotice .vcard .photo {
471     margin-bottom: 4px;
472 }
473
474 #shownotice .notice .entry-title {
475     margin-left:110px;
476     font-size:2.2em;
477     min-height:123px;
478     font-size: 1.6em;
479     line-height: 1.2em;
480 }
481
482 #shownotice .notice div.entry-content {
483     margin-left:0;
484 }
485
486 .notice p.entry-content {
487     display:inline;
488 }
489
490 .notice div.entry-content {
491     clear:left;
492     float:left;
493     margin-left:59px;
494     margin-top: 10px;
495 }
496
497 .entry-content .repeat {
498     display: block;
499 }
500
501 .entry-content .repeat .photo {
502 float:none;
503 margin-right:1px;
504 position:relative;
505 top:4px;
506 left:0;
507 }
508
509 .notice-options {
510     float: right;    
511     margin-top: 12px;
512     margin-right: -6px;
513 }
514
515 .notice-options fieldset {
516     border: none;
517 }
518
519 .notice-options legend {
520     display: none;
521 }
522
523 .notice-options form, .notice-options a, .notice-options .repeated {
524     float: left;
525     margin-right: 10px;
526 }
527
528 .notice-options input, .notice-options a, .notice-options .repeated {    
529     text-indent: -9999px;
530     outline:none;
531 }
532
533 .notice-options input.submit, .notice-options a, .notice-options .repeated {
534     display: block;
535     border: 0;
536     height: 16px;
537     width: 16px;
538 }
539
540 .notice-options input.submit, .notice-options a {
541     opacity: 0.6;
542 }
543
544 .notice-options input.submit:hover, .notice-options a:hover {
545     opacity: 1;
546 }
547
548 .notice .attachment {
549     position:relative;
550     padding-left:16px;
551 }
552
553 .notice .attachment.more {
554 text-indent:-9999px;
555 width:16px;
556 height:16px;
557 display:inline-block;
558 overflow:hidden;
559 vertical-align:middle;
560 margin-left:4px;
561 }
562
563 #attachments .attachment,
564 .notice .attachment.more {
565 padding-left:0;
566 }
567
568 .notice .attachment img {
569 position:absolute;
570 top:18px;
571 left:0;
572 z-index:99;
573 }
574
575 #shownotice .notice .attachment img {
576 position:static;
577 }
578
579 #attachments {
580 clear:both;
581 float:left;
582 width:100%;
583 margin-top:18px;
584 }
585 #attachments dt {
586 font-weight:bold;
587 font-size:1.3em;
588 margin-bottom:4px;
589 }
590
591 #attachments ol li {
592 margin-bottom:18px;
593 list-style-type:decimal;
594 float:left;
595 clear:both;
596 }
597
598 #jOverlayContent,
599 #jOverlayContent #content,
600 #jOverlayContent #content_inner {
601 width: auto !important;
602 margin-bottom:0;
603 }
604 #jOverlayContent #content {
605 padding:11px;
606 min-height:auto;
607     border: 1px solid #fff;
608 }
609 #jOverlayContent .entry-title {
610 display:block;
611 margin-bottom:11px;
612 }
613 #jOverlayContent button {
614     position:absolute;
615     top: 5px;
616     right: 20px;
617 }
618 #jOverlayContent h1 {
619 max-width:425px;
620 }
621 #jOverlayLoading {
622 top:5%;
623 left:40%;
624 }
625 #attachment_view img {
626 max-width:480px;
627 max-height:480px;
628 }
629 #attachment_view #oembed_info {
630 margin-top:11px;
631 }
632 #attachment_view #oembed_info dt,
633 #attachment_view #oembed_info dd {
634 float:left;
635 }
636 #attachment_view #oembed_info dt {
637 clear:left;
638 margin-right:11px;
639 font-weight:bold;
640 }
641 #attachment_view #oembed_info dt:after {
642 content: ":";
643 }
644
645 #content .notice .notice {
646     width: 98%;
647     margin-left: 2%;
648     margin-top: 16px;
649     margin-bottom: 10px;
650 }
651
652 .notice .notice {
653 background-color:rgba(200, 200, 200, 0.050);
654 }
655 .notice .notice .notice {
656 background-color:rgba(200, 200, 200, 0.100);
657 }
658 .notice .notice .notice .notice {
659 background-color:rgba(200, 200, 200, 0.150);
660 }
661 .notice .notice .notice .notice .notice {
662 background-color:rgba(200, 200, 200, 0.300);
663 }
664
665 /* aside primary specific styles */
666
667 .aside .section p,
668 .aside .section .more {
669 clear:both;
670 }
671
672 .section .vcard .photo {
673 margin-right:7px;
674 margin-bottom:0;
675 }
676
677 .section .notice {
678 padding-top:7px;
679 padding-bottom:7px;
680 border-top:0;
681 }
682
683 .section .notice:first-child {
684 padding-top:0;
685 }
686
687 .section .notice .author {
688 margin-right:0;
689 }
690 .section .notice .author .fn {
691 display:none;
692 }
693
694 #aside_primary ol.notices {
695     list-style-type: none;
696     float: left;
697     position: relative;
698     margin-bottom: 10px;
699     width: 100%;
700 }
701
702 #aside_primary .notices li {
703     margin-bottom: 8px;
704 }
705
706 #aside_primary .notice {
707     min-height: 24px;
708 }
709
710 #export_data li {
711     list-style-type:none;
712     display: inline;
713     line-height: 2;
714 }
715
716 #export_data li a {
717     padding-left: 20px;
718     margin-right: 10px;
719 }
720 #export_data li a.foaf {
721     padding-left: 30px;
722 }
723
724 #aside_primary td {
725     padding-right: 10px;
726     padding-bottom: 10px;
727 }
728
729 .section tbody td {
730 padding-right:18px;
731 padding-bottom:11px;
732 }
733
734 #entity_statistics dt,
735 #entity_statistics dd {
736 display:inline;
737 margin-right:11px;
738 }
739 #entity_statistics dt:after {
740 content: ":";
741 }
742
743 .section ul.entities {
744     float:left;
745     width:100%;
746 }
747
748 .section .entities li {
749     list-style-type: none;
750     float: left;
751     margin-right: 3px;
752     margin-bottom: 8px;
753     display: inline;
754 }
755 .section .entities li .photo {
756     margin: 0;
757 }
758 .section .entities li .fn {
759     display: none;
760 }
761
762 .tag-cloud {
763 list-style-type:none;
764 text-align:center;
765 }
766 .aside .tag-cloud {
767 font-size:0.8em;
768 word-wrap:break-word;
769 }
770 .tag-cloud li {
771 display:inline;
772 margin-right:7px;
773 line-height:1.25;
774 }
775
776 .tag-cloud li:before {
777 content:'\0009';
778 }
779
780 .aside .tag-cloud li {
781 line-height:1.5;
782 }
783 .tag-cloud li a {
784 text-decoration:none;
785 }
786 #tagcloud.section dt {
787 text-transform:uppercase;
788 font-weight:bold;
789 }
790 .tag-cloud-1 {
791 font-size:1em;
792 }
793 .tag-cloud-2 {
794 font-size:1.25em;
795 }
796 .tag-cloud-3 {
797 font-size:1.75em;
798 }
799 .tag-cloud-4 {
800 font-size:2em;
801 }
802 .tag-cloud-5 {
803 font-size:2.25em;
804 }
805 .tag-cloud-6 {
806 font-size:2.75em;
807 }
808 .tag-cloud-7 {
809 font-size:3.25em;
810 }
811
812 #publictagcloud #tagcloud.section dt {
813 display:none;
814 }
815
816 /* secondary elements */
817
818 .processing { 
819 background-image:url(../../base/images/icons/icon_processing.gif);
820 background-repeat:no-repeat;
821 background-position:47% 47%;
822 }
823
824 .error {
825     background-color: #F7E8E8;
826 }
827 .success {
828     background-color: #f2f2f2;
829 }
830
831 .system_notice dt {
832     display:none;
833 }
834
835 #page_notice {
836 clear:both;
837 margin-bottom:18px;
838 }
839
840 .entry-content .success {
841     padding: 6px;
842 }
843
844 .system_notice ul,
845 .instructions ul {
846 margin-left:1em;
847 }
848 .instructions p,
849 .instructions ul {
850 margin-bottom:18px;
851 }
852 .help dt {
853 display:none;
854 }
855 .guide {
856 clear:both;
857 }
858
859 #bookmarklet address {
860 display:none;
861 }
862 #bookmarklet .form_notice {
863 width:auto;
864 }
865 #bookmarklet #wrap {
866 min-width:0;
867 }
868
869 button.close,
870 button.minimize {
871 width:16px;
872 height:16px;
873 text-indent:-9999px;
874 padding:0;
875 border:0;
876 text-align:center;
877 font-weight:bold;
878 cursor:pointer;
879 }
880
881 .dialogbox {
882 position:absolute;
883     top: 0px;
884     right: 0px;
885 z-index:9;
886 float:none;
887 padding:11px;
888 border-style:solid;
889 border-width:1px;
890     background: #fff;
891     color: #000;
892 }
893
894 .dialogbox legend {
895 display:block !important;
896 margin-right:18px;
897 margin-bottom:18px;
898 }
899
900 .dialogbox button.close {
901 position:absolute;
902 right:3px;
903 top:3px;
904 }
905
906 .dialogbox .form_guide {
907 font-weight:normal;
908 padding:0;
909 }
910
911 .dialogbox .submit_dialogbox {
912 font-weight:bold;
913 text-indent:0;
914 min-width:46px;
915 }
916 .dialogbox input {
917 padding-left:4px;
918 }
919 .dialogbox fieldset {
920 margin-bottom:0;
921 }
922
923 #wrap form.processing input.submit,
924 .entity_actions a.processing,
925 .dialogbox.processing .submit_dialogbox {
926 cursor:wait;
927 outline:none;
928 text-indent:-9999px;
929 }
930
931 #pagination {
932     background-color: #f2f2f2;
933     clear: left;
934     margin-top: 20px;
935     padding: 1%;
936     height: 1em;
937 }
938
939 #pagination li {
940     display: inline;
941 }
942
943 #pagination .nav_prev {
944     float: left;
945 }
946
947 #pagination .nav_next {
948     float: right;
949 }
950
951 #footer {
952     clear: both;
953     background-color: #ccc;
954     margin-left: 1%;
955     margin-right: 1%;
956     padding: 1%;
957 }
958
959 #site_nav_global_secondary dt {
960     display: none;
961 }
962
963 #site_nav_global_secondary li {
964     display: inline;
965     margin-right: 20px;
966 }
967
968 #licenses dt {
969     display: none;
970 }
971
972 #licenses dd {
973     margin-top: 10px;
974 }
975
976 #site_content_license_cc {
977 margin-bottom:0;
978 }
979 #site_content_license_cc img {
980 display:inline;
981 vertical-align:top;
982 margin-right:4px;
983 }
984
985 form ul li {
986     list-style-type:none;
987     margin:0 0 18px 0;
988 }
989
990 form label.submit {
991 display:none;
992 }
993
994 .form_settings {
995     clear:both;
996 }
997
998 .form_settings fieldset {
999     margin-top: 10px;
1000     margin-bottom: 30px;
1001     border: none;
1002 }
1003
1004 .form_settings fieldset fieldset {
1005     margin-bottom: 40px;
1006     padding: 10px;
1007     padding-top: 30px;
1008     border-width:1px;
1009     border-style:solid;
1010     background:rgba(240, 240, 240, 0.2);
1011 }
1012
1013 .form_settings fieldset fieldset legend {
1014     line-height:0;
1015     font-size: 1.4em;
1016     font-weight: normal;
1017 }
1018
1019 .form_settings input.remove {
1020 margin-left:11px;
1021 }
1022 .form_settings .form_data li {
1023 width:100%;
1024 float:left;
1025 }
1026 .form_settings .form_data label {
1027 float:left;
1028 }
1029 .form_settings .form_data textarea,
1030 .form_settings .form_data select,
1031 .form_settings .form_data input {
1032 margin-left:1.795%;
1033 float:left;
1034 }
1035 .form_settings .form_data input {
1036 width:39%;
1037 }
1038 .form_settings .form_data input.submit,
1039 .form_settings .form_data input.checkbox,
1040 .form_settings .form_data input.radio {
1041 width:auto;
1042 }
1043 .form_settings .form_data textarea {
1044 width:63%;
1045 }
1046
1047 .form_settings .form_data input.submit {
1048 margin-left:0;
1049 }
1050
1051 .form_settings label {
1052 margin-top:2px;
1053 width:24%;
1054     text-align: right;
1055 }
1056
1057 .form_settings label.checkbox {
1058     text-align: left;
1059 }
1060
1061 .form_actions label {
1062 display:none;
1063 }
1064 .form_guide {
1065 font-style:italic;
1066 }
1067
1068 .form_settings #settings_autosubscribe label {
1069 display:inline;
1070 font-weight:bold;
1071 }
1072
1073 #form_settings_profile legend,
1074 #form_login legend,
1075 #form_register legend,
1076 #form_password legend,
1077 #form_settings_avatar legend,
1078 #newgroup legend,
1079 #editgroup legend,
1080 #form_tag_user legend,
1081 #form_remote_subscribe legend,
1082 #form_openid_login legend,
1083 #form_search legend,
1084 #form_invite legend,
1085 #form_notice_delete legend,
1086 #form_password_recover legend,
1087 #form_password_change legend,
1088 .form_entity_block legend,
1089 #form_filter_bytag legend,
1090 #apioauthauthorize_allowdeny {
1091 display:none;
1092 }
1093
1094 .form_settings .form_data p.form_guide {
1095 clear:both;
1096 margin-left:26%;
1097 margin-bottom:0;
1098 }
1099
1100 .form_settings p {
1101 margin-bottom:11px;
1102 }
1103
1104 .form_settings input.checkbox,
1105 .form_settings input.radio {
1106 margin-top:3px;
1107 margin-left:0;
1108 }
1109 .form_settings label.checkbox {
1110 font-weight:normal;
1111 margin-top:0;
1112 margin-right:0;
1113 margin-left:11px;
1114 float:left;
1115 width:90%;
1116 }
1117 .form_settings label.radio {
1118 margin-top:0;
1119 margin-right:47px;
1120 margin-left:11px;
1121 width:auto;
1122 }
1123
1124 #form_login p.form_guide,
1125 #form_register #settings_rememberme p.form_guide,
1126 #form_openid_login #settings_rememberme p.form_guide,
1127 #settings_twitter_remove p.form_guide,
1128 #form_search ul.form_data #q,
1129 #design_background-image_onoff p.form_guide {
1130 margin-left:0;
1131 }
1132
1133 .form_settings .form_note {
1134 border-radius:4px;
1135 -moz-border-radius:4px;
1136 -webkit-border-radius:4px;
1137 padding:0 7px;
1138 }
1139
1140 .form_settings input {
1141     margin-right: 20px;
1142 }
1143
1144 #form_search .submit {
1145 margin-left:11px;
1146 }
1147 #form_search .form_data input {
1148 width:auto;
1149 }
1150
1151 .hentry .entry-content .form_settings ul {
1152 margin-left:0;
1153 }
1154
1155 /* override OStatus plugin style */
1156
1157 #form_ostatus_connect.form_settings.dialogbox, #form_ostatus_sub.dialogbox {
1158     width: 76%;
1159 }
1160
1161 #form_ostatus_connect.form_settings.dialogbox legend {
1162     font-size: 1.4em;
1163     font-weight: normal;
1164     padding-bottom: 10px;    
1165 }
1166
1167 #form_ostatus_connect.dialogbox .form_data label,
1168 #form_ostatus_sub.dialogbox .form_data label {
1169     font-weight: normal;
1170     font-size: 1.2em;
1171     width:34%;
1172 }
1173
1174 #form_ostatus_connect.dialogbox .form_data input,
1175 #form_ostatus_sub.dialogbox .form_data input {
1176     float: right;
1177     width: 52% !important;
1178 }
1179
1180 #form_ostatus_connect.dialogbox .form_data .form_guide,
1181 #form_ostatus_sub.dialogbox .form_data .form_guide {
1182     background: none !important;
1183     text-align: right;
1184     margin-right: 16px;
1185 }
1186
1187 .section .entity_actions {
1188     margin-right: 0px !important;
1189 }
1190
1191 .section .entity_remote_subscribe {
1192     color:#000 !important;
1193     padding-left: 26px !important;
1194     background-position: 4px -1183px !important;
1195 }
1196
1197 #filter_tags ul li,
1198 .entity_send-a-message .form_notice,
1199 .form_settings fieldset fieldset,
1200 .entity_moderation:hover ul,
1201 .entity_role:hover ul,
1202 .dialogbox {
1203 border-color:#DDDDDD;
1204 }
1205
1206 .form_settings input.form_action-primary {
1207 background:none;
1208 }
1209
1210 .form_settings .form_note {
1211 background-color:#9BB43E;
1212 }
1213
1214 #form_settings_photo .form_data {
1215 clear:both;
1216 }
1217
1218 #form_settings_avatar li {
1219 width:auto;
1220 }
1221 #form_settings_avatar input {
1222 margin-left:0;
1223 }
1224 #avatar_original,
1225 #avatar_preview {
1226 float:left;
1227 }
1228 #avatar_preview {
1229 margin-left:29px;
1230 }
1231 #avatar_preview_view {
1232 height:96px;
1233 width:96px;
1234 margin-bottom:18px;
1235 overflow:hidden;
1236 }
1237
1238 #settings_attach,
1239 #form_settings_avatar .form_actions {
1240 clear:both;
1241 }
1242
1243 #form_settings_avatar .form_actions {
1244 margin-bottom:0;
1245 }
1246
1247 #settings_design_background-image img {
1248     max-width:480px;
1249     max-height:480px;
1250     clear: left;
1251     display: block;
1252     margin-bottom: 10px;
1253 }
1254
1255 #settings_design_background-image .form_guide {
1256     float: left;
1257     margin-top: 10px;
1258 }
1259
1260 #settings_design_color .form_data,
1261 #color-picker {
1262 float:left;
1263 }
1264 #settings_design_color .form_data {
1265 width:400px;
1266 margin-right:1%;
1267 }
1268
1269 #settings_design_color .form_data li {
1270 width:33%;
1271 }
1272 #settings_design_color .form_data label {
1273 float:none;
1274 display:block;
1275 }
1276 #settings_design_color .form_data .swatch {
1277 padding:11px;
1278 margin-left:0;
1279 width:auto;
1280 }
1281
1282 .entity_profile {
1283 position:relative;
1284 width:73%;
1285 min-height:123px;
1286 float:left;
1287 margin-bottom:18px;
1288 margin-left:0;
1289 overflow:hidden;
1290 }
1291
1292 .entity_profile dt,
1293 #entity_statistics dt {
1294 font-weight:bold;
1295 }
1296 .entity_profile dd {
1297 display:inline;
1298 }
1299
1300 .entity_profile .entity_depiction {
1301     float:left;
1302     width:96px;
1303     margin-right:18px;
1304     margin-bottom:18px;
1305     text-align: center;
1306 }
1307
1308 .entity_profile .entity_fn,
1309 .entity_profile .entity_nickname,
1310 .entity_profile .entity_location,
1311 .entity_profile .entity_url,
1312 .entity_profile .entity_note,
1313 .entity_profile .entity_tags,
1314 .entity_profile .entity_aliases,
1315 .entity_profile .entity_statistics {
1316 margin-left:113px;
1317 margin-bottom:4px;
1318 }
1319
1320 .entity_profile .entity_nickname,
1321 .entity_profile .entity_fn {
1322 margin-left:0;
1323 }
1324
1325 .entity_profile .nickname {
1326     font-size:1.4em;
1327 }
1328
1329 .entity_profile .fn {
1330     font-size: 1.2em;
1331     clear: left;
1332 }
1333
1334 .entity_profile .fn:before {
1335 content: "(";
1336 font-weight:normal;
1337 }
1338 .entity_profile .fn:after {
1339 content: ")";
1340 font-weight:normal;
1341 }
1342 .entity_profile .nickname:after,
1343 .entity_profile .nickname:before {
1344 content:"";
1345 }
1346 .entity_profile dt,
1347 .entity_profile h2 {
1348 display:none;
1349 }
1350 .entity_profile .role {
1351 margin-left:11px;
1352 font-style:italic;
1353 }
1354
1355 .entity_actions {
1356 float:right;
1357 margin-left:2%;
1358     margin-bottom: 28px;
1359 min-width:21%;
1360 }
1361
1362 .entity_actions h2 {
1363 display:none;
1364 }
1365 .entity_actions ul {
1366 list-style-type:none;
1367 }
1368 .entity_actions li {
1369 margin-bottom:7px;
1370 }
1371 .entity_actions li:first-child {
1372 border-top:0;
1373 }
1374 .entity_actions fieldset {
1375 border:0;
1376 padding:0;
1377 }
1378 .entity_actions legend {
1379 display:none;
1380 }
1381
1382 .entity_actions input.submit {
1383 display:block;
1384 text-align:left;
1385 width:100%;
1386 }
1387 .entity_actions a {
1388 text-decoration:none;
1389 font-weight:bold;
1390 display:block;
1391 }
1392
1393 .entity_actions a, .entity_actions input, .entity_actions p {
1394     color: #333 !important;
1395     font-weight: normal;
1396     line-height: 1.6em;
1397 }
1398
1399 .entity_actions a {
1400     padding: 3px 4px 4px 28px;
1401 }
1402
1403 .entity_actions input {
1404     padding: 4px 4px 4px 26px;
1405 }
1406
1407 .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 {
1408     background-color: #ccc !important;
1409     border: none;
1410 }
1411
1412 .entity_actions p {
1413     padding: 2px 4px 4px 28px;
1414 }
1415
1416 .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 {
1417     background-color: #f2f2f2 !important;
1418 }
1419
1420 .entity_actions #entity_remote_subscribe a {
1421     padding-right: 6px;
1422 }
1423
1424 .entity_actions .accept {
1425 margin-bottom:18px;
1426 }
1427
1428 .entity_send-a-message button {
1429 position:absolute;
1430 top:3px;
1431 right:3px;
1432 }
1433
1434 .entity_send-a-message .form_notice {
1435     width: 410px;
1436     padding: 10px;
1437     position: absolute;
1438     top: 46px;
1439     right: 10px;
1440     z-index: 2;
1441 }
1442
1443 .entity_send-a-message .form_notice fieldset {
1444     width: 410px;
1445 }
1446
1447 .entity_send-a-message .form_notice textarea {
1448     width: 280px;
1449 }
1450
1451 .entity_send-a-message .form_notice legend {
1452 display:block;
1453 margin-bottom:11px;
1454     font-weight: normal;
1455     color: #333 !important;
1456 }
1457
1458 .entity_send-a-message .form_notice label,
1459 .entity_send-a-message .form_notice select {
1460 display:none;
1461 }
1462 .entity_send-a-message .form_notice .submit {
1463     position: absolute;
1464     top: 52px;
1465     right: 0px;
1466     text-align: center;
1467 }
1468
1469 .entity_moderation,
1470 .entity_role {
1471 position:relative;
1472 }
1473 .entity_moderation p,
1474 .entity_role p {
1475
1476 padding-bottom:2px;
1477 margin-bottom:7px;
1478 }
1479 .entity_moderation ul,
1480 .entity_role ul {
1481 display:none;
1482 }
1483 .entity_moderation:hover ul,
1484 .entity_role:hover ul {
1485 display:block;
1486 width:110%;
1487 padding:11px;
1488 position:absolute;
1489 z-index:1;
1490 border-width:1px;
1491 border-style:solid;
1492         top: 20px;
1493         right: 0px;
1494         background-color: #fff;
1495 }
1496
1497 .entity_tags ul {
1498 list-style-type:none;
1499 display:inline;
1500 }
1501 .entity_tags li {
1502 display:inline;
1503 margin-right:7px;
1504 }
1505 .entity_tags li:before {
1506 content:'\0009';
1507 }
1508
1509 #filter_tags {
1510     margin-bottom: 20px;
1511     padding-bottom: 10px;
1512     border-bottom: 1px solid #ccc;
1513     float: left;
1514 }
1515 #filter_tags dt {
1516 display:none;
1517 }
1518 #filter_tags ul {
1519 list-style-type:none;
1520 }
1521 #filter_tags li {
1522 float:left;
1523 margin-left:7px;
1524 padding-left:7px;
1525 border-left-width: 1px;
1526 border-left-style:solid;
1527 }
1528 #filter_tags #filter_tags_all {
1529     margin-left: 10px;
1530 border-left:0;
1531 padding-left:0;
1532 }
1533 #filter_tags_all a {
1534 font-weight:bold;
1535     margin-top: 4px;
1536 float:left;
1537 }
1538
1539 #filter_tags_item label {
1540     margin-right: 14px;
1541     margin-left: 7px;
1542     padding-top: 4px;
1543 }
1544 #filter_tags_item label,
1545 #filter_tags_item select {
1546 float:left;
1547 }
1548
1549 #filter_tags_item p {
1550 float:left;
1551 clear:both;
1552 margin-left:38px;
1553 }
1554 #filter_tags_item .submit {
1555 position:relative;
1556 top:3px;
1557 left:3px;
1558 }
1559
1560 .profile .entity_profile {
1561 margin-bottom:0;
1562 min-height:60px;
1563 }
1564
1565 .profile .form_group_join legend,
1566 .profile .form_group_leave legend,
1567 .profile .form_user_subscribe legend,
1568 .profile .form_user_unsubscribe legend {
1569 display:none;
1570 }
1571
1572 .profiles {
1573     list-style-type:none;
1574 }
1575
1576 .profiles li {
1577     margin-bottom: 20px;
1578 }
1579
1580 .profile .entity_profile .fn.nickname,
1581 .profile .entity_profile .url[rel~=contact] {
1582 margin-left:0;
1583 display:inline;
1584 }
1585
1586 .profile .entity_profile .fn,
1587 .profile .entity_profile .label {
1588 margin-left:11px;
1589 margin-bottom:4px;
1590 width:auto;
1591 clear:none;
1592 }
1593
1594 .profile .entity_profile .note,
1595 .profile .entity_profile .url,
1596 .profile .entity_profile .entity_tags,
1597 .profile .entity_profile .form_subscription_edit {
1598 margin-left:59px;
1599 clear:none;
1600 display:block;
1601 width:auto;
1602 }
1603 .profile .entity_profile .entity_tags dt {
1604 display:inline;
1605 margin-right:11px;
1606 }
1607
1608 .profile .entity_profile .form_subscription_edit label {
1609 font-weight:normal;
1610 margin-right:11px;
1611 }
1612
1613 .applications {
1614 margin-bottom:18px;
1615 float:left;
1616 width:100%;
1617 }
1618 .applications li {
1619 list-style-type:none;
1620 }
1621 .application img,
1622 #showapplication .entity_profile img,
1623 .form_data #application_icon img,
1624 #apioauthauthorize .form_data img {
1625 max-width:96px;
1626 max-height:96px;
1627 }
1628 #apioauthauthorize .form_data img {
1629 margin-right:18px;
1630 float:left;
1631 }
1632 #showapplication .entity_profile {
1633 width:68%;
1634 }
1635 #showapplication .entity_profile .entity_fn {
1636 margin-left:0;
1637 }
1638 #showapplication .entity_profile .entity_fn .fn:before,
1639 #showapplication .entity_profile .entity_fn .fn:after {
1640 content:'';
1641 }
1642 #showapplication .entity_data {
1643 clear:both;
1644 margin-bottom:18px;
1645 }
1646 #showapplication .entity_data h2 {
1647 display:none;
1648 }
1649 #showapplication .entity_data dl {
1650 margin-bottom:18px;
1651 }
1652 #showapplication .entity_data dt {
1653 font-weight:bold;
1654 }
1655 #showapplication .entity_data dd {
1656 margin-left:1.795%;
1657 font-family:monospace;
1658 font-size:1.3em;
1659 }
1660 .form_data #application_types label.radio,
1661 .form_data #default_access_types label.radio {
1662 width:14.5%;
1663 }
1664
1665 .mark-top {
1666     border-top: 1px solid #ccc;
1667 }
1668
1669 #realtime_actions li {
1670     margin-right: -4px;
1671 }
1672
1673 #realtime_play, #realtime_pause, #realtime_popup {
1674     background-image: url(../images/icons/icons-01.gif);
1675     background-repeat: no-repeat;
1676     background-color: transparent;
1677 }
1678
1679 #realtime_play {
1680     background-position: 0 -2308px;
1681 }
1682 #realtime_pause {
1683     background-position: 0 -2374px;
1684 }
1685 #realtime_popup {
1686     background-position: 0 -1714px;
1687 }
1688
1689 #realtime_play, #realtime_pause, #realtime_popup {
1690         opacity: 0.6;
1691 }
1692
1693 #realtime_play:hover, #realtime_pause:hover, #realtime_popup:hover {
1694         opacity: 1;
1695 }
1696
1697 body.realtime-popup {
1698     min-width: 100%;
1699 }
1700
1701 .realtime-popup #wrap {
1702     padding: 0px !important;
1703     margin: 0px !important;
1704 }
1705
1706 .realtime-popup #content {
1707     padding: 0px !important;
1708     margin: 0px !important;
1709     width: 98% !important;
1710 }
1711
1712 .realtime-popup .form_notice {
1713     float: left !important;
1714     position: static !important;
1715 }
1716
1717 .realtime-popup .form_notice fieldset {
1718     width: 450px !important;
1719 }
1720
1721 .realtime-popup .form_notice textarea {
1722     width: 340px !important;
1723 }
1724
1725 .realtime-popup .form_notice .submit {
1726     top: 58px !important;
1727     height: 2em;
1728     font-size: 0.8em;
1729     width: 86px;
1730 }
1731
1732 .realtime-popup .form_notice label.notice_data-attach {
1733     right: 70px;
1734 }
1735
1736 .realtime-popup .form_notice .notice_data-geo_wrap label, .realtime-popup .form_notice .notice_data-geo_wrap input {
1737     right: 2px;
1738 }
1739
1740 /* icons */
1741
1742 .form_notice label.notice_data-attach,
1743 #export_data li a.rss,
1744 #export_data li a.atom,
1745 #export_data li a.foaf,
1746 .entity_edit a,
1747 .entity_send-a-message a,
1748 .entity_nudge p,
1749 .form_user_nudge input.submit,
1750 .form_user_block input.submit,
1751 .form_user_unblock input.submit,
1752 .form_group_block input.submit,
1753 .form_group_unblock input.submit,
1754 .form_make_admin input.submit,
1755 .notice .attachment,
1756 .notice-options .notice_reply,
1757 .notice-options form.form_favor input.submit,
1758 .notice-options form.form_disfavor input.submit,
1759 .notice-options .notice_delete,
1760 .notice-options form.form_repeat input.submit,
1761 #new_group a,
1762 #pagination .nav_prev a,
1763 #pagination .nav_next a,
1764 button.close,
1765 .form_group_leave input.submit,
1766 .form_user_unsubscribe input.submit,
1767 .form_group_join input.submit,
1768 .form_user_subscribe input.submit,
1769 .form_remote_authorize input.submit,
1770 .entity_subscribe a,
1771 .entity_moderation p,
1772 .entity_sandbox input.submit,
1773 .entity_silence input.submit,
1774 .entity_delete input.submit,
1775 .entity_role p,
1776 .entity_role_administrator input.submit,
1777 .entity_role_moderator input.submit,
1778 .notice-options .repeated,
1779 .form_notice label.notice_data-geo,
1780 button.minimize,
1781 .form_reset_key input.submit,
1782 .entity_clear input.submit,
1783 .entity_flag input.submit,
1784 .entity_flag p,
1785 .entity_subscribe input.submit,
1786 #realtime_play,
1787 #realtime_pause,
1788 #realtime_popup {
1789 background-image:url(../images/icons/icons-01.gif);
1790 background-repeat:no-repeat;
1791 background-color:transparent;
1792 }
1793
1794 button.close {
1795 background-position:0 -1120px;
1796 }
1797 button.minimize {
1798 background-position:0 -1912px;
1799 }
1800 #export_data li a.rss {
1801 background-position:0 -130px;
1802 }
1803 #export_data li a.atom {
1804 background-position:0 -64px;
1805 }
1806 #export_data li a.foaf {
1807 background-position:0 1px;
1808 }
1809 .form_group_leave input.submit,
1810 .form_user_unsubscribe input.submit {
1811 background-position:5px -1246px;
1812 }
1813 .form_group_join input.submit,
1814 .form_user_subscribe input.submit,
1815 .form_remote_authorize input.submit,
1816 .entity_subscribe a {
1817 background-position:5px -1181px;
1818 }
1819 .entity_edit a {
1820 background-position: 5px -719px;
1821 }
1822 .entity_send-a-message a {
1823 background-position: 5px -852px;
1824 }
1825 .entity_nudge p,
1826 .form_user_nudge input.submit {
1827 background-position: 5px -785px;
1828 }
1829 .form_user_block input.submit,
1830 .form_user_unblock input.submit,
1831 .form_group_block input.submit,
1832 .form_group_unblock input.submit {
1833 background-position: 5px -918px;
1834 }
1835 .form_make_admin input.submit {
1836 background-position: 5px -983px;
1837 }
1838 .entity_moderation p {
1839 background-position: 5px -1313px;
1840 }
1841 .entity_sandbox input.submit {
1842 background-position: 5px -1380px;
1843 }
1844 .entity_silence input.submit {
1845 background-position: 5px -1445px;
1846 }
1847 .entity_delete input.submit {
1848 background-position: 5px -1511px;
1849 }
1850 .entity_sandbox .form_user_unsandbox input.submit {
1851 background-position: 5px -2568px;
1852 }
1853 .entity_silence .form_user_unsilence input.submit {
1854 background-position: 5px -2633px;
1855 }
1856 .entity_role p {
1857 background-position: 5px -2436px;
1858 }
1859 .entity_role_administrator .form_user_grantrole input.submit {
1860 background-position: 5px -983px;
1861 }
1862 .entity_role_moderator .form_user_grantrole input.submit {
1863 background-position: 5px -1313px;
1864 }
1865 .entity_role_administrator .form_user_revokerole input.submit {
1866 background-position: 5px -2699px;
1867 }
1868 .entity_role_moderator .form_user_revokerole input.submit {
1869 background-position: 5px -2501px;
1870 }
1871 .form_reset_key input.submit {
1872 background-position: 5px -1973px;
1873 }
1874 .entity_clear input.submit {
1875 background-position: 5px -2039px;
1876 }
1877 .entity_flag input.submit,
1878 .entity_flag p {
1879 background-position: 5px -2105px;
1880 }
1881 .entity_subscribe input.accept {
1882 background-position: 5px -2171px;
1883 }
1884 .entity_subscribe input.reject {
1885 background-position: 5px -2237px;
1886 }
1887 #realtime_play {
1888 background-position: 0 -2308px;
1889 }
1890 #realtime_pause {
1891 background-position: 0 -2374px;
1892 }
1893 #realtime_popup {
1894 background-position: 0 -1714px;
1895 }
1896 .notice .attachment {
1897 background-position:0 -394px;
1898 }
1899 .notice .attachment.more {
1900 background-position:0 -2770px;
1901 }
1902 #attachments .attachment {
1903 background:none;
1904 }
1905 .notice-options .notice_reply {
1906 background-position:0 -592px;
1907 }
1908 .notice-options form.form_favor input.submit {
1909 background-position:0 -460px;
1910 }
1911 .notice-options form.form_disfavor input.submit {
1912 background-position:0 -526px;
1913 }
1914 .notice-options .notice_delete {
1915 background-position:0 -658px;
1916 }
1917 .notice-options .form_repeat.processing {
1918 background-image:none;
1919 }
1920 .notice-options form.form_repeat input.submit {
1921 background-position:0 -1582px;
1922 }
1923 .notice-options .repeated {
1924 background-position:0 -1648px;
1925 }
1926 #new_group a {
1927 background-position:0 -1054px;
1928 }
1929 .form_notice label.notice_data-attach {
1930     background-position: 0 -328px;
1931 }
1932 .form_notice label.notice_data-geo {
1933     background-position: 0 -1780px;
1934 }
1935 .form_notice label.notice_data-geo.checked {
1936     background-position: 0 -1846px;
1937 }
1938
1939 #pagination .nav_prev a {
1940     padding-top: 8px;
1941     padding-left: 25px;
1942     background-position:0 -187px;
1943 }
1944 #pagination .nav_next a { 
1945     padding-top: 9px;
1946     padding-right: 25px;
1947     background-position: 115% -252px;
1948 }
1949
1950 #usergroups #new_group {
1951 float: left;
1952 margin-right: 2em;
1953 }
1954 #new_group, #group_search {
1955 margin-bottom:18px;
1956 }
1957 #new_group a {
1958 padding-left:20px;
1959 }
1960
1961 #input_form_nav { 
1962     list-style-type: none;
1963 }
1964
1965 #input_form_nav li { 
1966     display:inline;
1967 }
1968
1969 .input_form_nav_tab.current {
1970     text-decoration: underline;
1971 }
1972
1973 .input_form { 
1974     display: none;
1975 }
1976
1977 .input_form.current { 
1978     display: block;
1979 }
1980
1981 /*end of @media screen, projection, tv*/
1982
1983
1984 @media print {
1985 a:after { background-color:#FFFFFF; }
1986 a:not([href^="#"]):after { content:" <"attr(href)"> "; }
1987 img { border:none; }
1988 p { orphans: 2; widows: 1; }
1989
1990 #site_nav_global_primary,
1991 #site_nav_local_views,
1992 #form_notice,
1993 .pagination,
1994 #site_nav_global_secondary,
1995 .entity_actions,
1996 .notice-options,
1997 #aside_primary,
1998 .form_subscription_edit .submit {
1999 display:none;
2000 }
2001 .timestamp dt, .timestamp dd,
2002 .device dt, .device dd {
2003 display:inline;
2004 }
2005 .profiles li,
2006 .notices li {
2007 margin-bottom:18px;
2008 }
2009
2010 }/*end of @media print*/