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