]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
Merge remote-tracking branch 'upstream/develop' into develop
[friendica.git] / view / theme / quattro / quattro.less
1 // Quattro Theme LESS file
2
3 /* global */
4 body {
5         font-family: Liberation Sans,helvetica,arial,clean,sans-serif;
6         font-size: 11px;
7         background-color: @BodyBackground;
8         color: @BodyColor;
9         margin: 50px 0 0 0;
10         display:table;
11 }
12 h4 { font-size: 1.1em }
13
14 .shadow(@x: 0, @y: 5px){
15         -webkit-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
16         -moz-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
17         box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
18 }
19
20 .rounded(@tr: 5px, @tl: 5px, @bl: 5px, @br: 5px){
21         -moz-border-radius: @arguments;
22         -webkit-border-radius: @arguments;
23         border-radius: @arguments;
24 }
25 .roundbottom (@radius: 5px){ .rounded(0, 0, @radius, @radius); }
26 .roundtop (@radius: 5px){ .rounded(@radius, @radius, 0, 0); }
27
28 .opaque(@v: 0.5){
29         opacity: @v;
30         .transition();
31 }
32
33 .transition(@d: 0.2s){
34         -webkit-transition: all @d ease-in-out;
35         -moz-transition: all @d ease-in-out;
36         -o-transition: all @d ease-in-out;
37         -ms-transition: all @d ease-in-out;
38         transition: all @d ease-in-out;
39 }
40
41
42 a, a:link { color: @Link; text-decoration: none; }
43 a:visited { color: @LinkVisited; text-decoration: none; }
44 a:hover {color: @LinkHover; text-decoration: underline; }
45
46 .left { float: left; }
47 .right { float: right; }
48 .hidden { display: none; }
49 .clear { clear: both; }
50
51 .fakelink { color: @Link; text-decoration: none; cursor:pointer; }
52 .fakelink:hover { color: @LinkHover; text-decoration: underline; }
53
54 blockquote {
55         background:@BlockquoteBackgroundColor;
56         padding: 1em;
57         margin-left: 1em;
58         border-left: 1em solid @BlockquoteBorderColor;
59
60 }
61
62 code {
63         font-family: Courier, monospace;
64         white-space: pre;
65         display: block;
66         overflow: auto;
67         border: 1px solid #444;
68         background: #EEE;
69         color: #444;
70         padding: 10px;
71         margin-top: 20px;
72 }
73
74 #panel {
75         position: absolute;
76         width: 10em;
77         background: @MenuBg;
78         color: @Menu;
79         margin: 0;
80         padding: 1em;
81         list-style: none;
82         border: 3px solid @MenuBorder;
83         z-index: 100000;
84
85         .shadow();
86 }
87
88
89
90 /* tool */
91
92 .tool {
93         height: auto; overflow: auto;
94         .label { float: left;}
95         .action { float: right; }
96         > img { float: left; }
97 }
98
99
100
101
102 /* popup notifications */
103 #jGrowl.top-right {
104         top: 30px;
105         right: 15px;
106 }
107 div.jGrowl div.notice {
108         background: @NoticeBackgroundColor url("../../../images/icons/48/notice.png") no-repeat 5px center;
109         color:  @NoticeColor;
110         padding-left: 58px;
111 }
112 div.jGrowl div.info {
113         background: @InfoBackgroundColor url("../../../images/icons/48/info.png") no-repeat 5px center;
114         color:  @InfoColor;
115         padding-left: 58px;
116 }
117
118 /* notifications page */
119 .notif-item {
120         padding: 0.5em;
121         &:nth-child(even) { background-color: @NotificationsPageListEvenBackground; }
122         &:nth-child(odd) { background-color: @NotificationsPageListOddBackground; }
123         .notif-image { width: 16px; }
124 }
125
126
127 /* header */
128 header {
129         position: fixed; left: 43%; right: 43%; top: 0;
130         margin: 0; padding: 0;
131         /*width: 100%; height: 12px; */
132         z-index: 110;
133         color: @Grey1;
134         #site-location {
135                 display: none;
136         }
137
138         #banner {
139                 overflow: hidden;
140                 text-align: center;
141                 width: 100%;
142                 a, a:active, a:visited, a:link, a:hover { color: @Grey1; text-decoration: none; outline: none; vertical-align: bottom; }
143                 #logo-img { height: 22px; margin-top:5px;}
144                 #logo-text { font-size: 22px }
145         }
146 }
147 /* nav */
148 nav {
149         width: 100%; height: 32px;
150         position: fixed; left: 0; top: 0;
151         padding: 0;
152         background-color: @NavbarBackground;
153         color: @Grey1;
154         z-index: 100;
155         .shadow(0px, 0);
156
157                 a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none;  }
158
159                 ul {
160                         margin: 0;
161                         padding: 0 20px;
162                         li {
163                                 list-style: none;
164                                 margin: 0; padding: 0;
165                                 float: left;
166                                 .menu-popup{ left: 0; right: auto; }
167                         }
168
169                 }
170
171                 .nav-menu-icon {
172                         position: relative;
173                         height: 22px;
174                         padding: 5px;
175                         margin: 0 10px;
176                         .roundtop();
177
178                         &.selected {
179                                 background-color: @NavbarSelectedBg;
180                         }
181
182                                 img { width: 22px; height: 22px; }
183                                 .nav-notify { top: 3px; }
184                 }
185
186                 .nav-menu {
187                         position: relative;
188                         height: 16px;
189                         padding: 5px;
190                         margin: 3px 15px 0;
191                         font-size: 14px;
192                         border-bottom: 3px solid @NavbarBackground;
193                         &.selected {
194                                 border-bottom: 3px solid @NavbarSelectedBorder;
195                         }
196
197                 }
198
199                 .nav-notify {
200                         display: none;
201                         position: absolute;
202                         background-color: @NavbarNotifBg;
203                         .rounded();
204                         font-size: 10px;
205                         padding: 1px 3px;
206                         top: 0;
207                         right: -10px;
208                         min-width: 15px;
209                         text-align: right;
210
211                                 &.show{ display: block; }
212                 }
213
214
215                 #nav-help-link,
216                 #nav-search-link,
217                 #nav-directory-link,
218                 #nav-apps-link,
219                 #nav-site-linkmenu {
220                         float: right;
221                         .menu-popup{ right: 0; left: auto; }
222                 }
223
224                 #nav-notifications-linkmenu.on .icon.s22.notify,
225                 #nav-notifications-linkmenu.selected .icon.s22.notify   { background-image: url("../../../images/icons/22/notify_on.png") }
226                 #nav-introductions-link.on .icon.s22.intro,
227                 #nav-introductions-link.selected .icon.s22.intro        { background-image: url("icons/contacts_on.png") }
228                 #nav-messages-link.on .icon.s22.mail,
229                 #nav-messages-link.selected .icon.s22.mail              { background-image: url("icons/messages_on.png") }
230                 #nav-apps-link.selected { background-color: @NavbarSelectedBg; }
231 }
232
233
234 ul.menu-popup {
235         position: absolute;
236         display: none;
237         width: 10em;
238         background: @MenuBg;
239         color: @Menu;
240         margin: 0;
241         padding: 0;
242         list-style: none;
243         border: 3px solid @MenuBorder;
244         z-index: 100000;
245
246         .shadow();
247
248                 a { display: block; color: @MenuItem; padding: 5px 10px; text-decoration: none;}
249                 a:hover { background-color: @MenuItemHoverBg; }
250                 .menu-sep  { border-top: 1px solid @MenuItemSeparator; }
251                 li { float: none;  overflow: auto; height: auto; display: block; }
252                 li img { float: left; width: 16px; height: 16px; padding-right: 5px;}
253                 .empty {
254                         padding: 5px;
255                         text-align: center;
256                         color: @MenuEmpty;
257                 }
258                 .toolbar {
259                         background-color:  @MenuEmpty;
260                         height: auto; overflow: auto;
261                         a { float: right; }
262                         a:hover { background-color: @MenuBg; }
263                 }
264
265 }
266
267 /* autocomplete popup */
268 .autocomplete, .acpopup-mce { max-height:150px; }
269 .autocomplete,
270 .acpopup-mce,
271 .acpopup {
272         background-color:@MenuBg;
273         color: @Menu;
274         border:1px solid @MenuBorder;
275         overflow:auto;
276         z-index:100000;
277         .shadow();
278 }
279 .autocomplete > div,
280 .acpopupitem {
281         color: @MenuItem; padding: 4px;
282         clear:left;
283         overflow: auto;
284         height: auto;
285         img {
286                 float: left;
287                 margin-right: 4px;
288                 width: 16px !important;
289                 height: 16px !important;
290         }
291         &.selected{
292                 background-color: @MenuItemHoverBg;
293         }
294 }
295 .textcomplete-item {
296         color: @MenuItem;
297         a:hover{
298                 color: @MenuItem;
299         }
300         &.active{
301                 background-color: @MenuItemHoverBg;
302         }
303 }
304
305
306 #nav-notifications-menu {
307         width: 400px; max-height: 550px;
308         overflow: auto;
309         img { float: left; margin-right: 5px; }
310         .contactname { font-weight: bold; }
311         .notif-when { font-size: 10px; color: @MenuItemDetail; display: block; }
312 }
313
314 /* Contact-Header for the Network Stream */
315 #viewcontact_wrapper-network {
316         width: 100%;
317         min-height: 100px;
318         background-color: #eff0f1;
319         border-bottom: 1px solid #cccccc;
320         #contact-entry-wrapper-network {
321                 float: none;
322                 width: auto;
323                 height: auto;
324                 padding: 10px;
325                 #contact-entry-accounttype-network { font-size: 22px; }
326                 #contact-entry-name-network { font-size: 24.5px; font-weight: normal; }
327                 .contact-details { font-size: 12px; }
328         }
329 }
330
331
332 /* aside 230px*/
333 aside {
334         display: table-cell;
335         vertical-align: top;
336         width: 200px;
337         padding:0px 10px 0 20px;
338         border-right: 1px solid @AsideBorder;
339
340         .profile-edit-side-div { display: none; }
341
342         .vcard {
343                 .fn { font-size: 16px; font-weight: bold; margin-bottom: 5px; }
344                 .title { margin-bottom: 5px; }
345                 .p-addr { margin-bottom: 5px; }
346                 .account-type { font-size: 14px; margin-bottom: 13px; }
347                 dl { height: auto; overflow: auto; }
348                 dt {float: left; margin-left: 0; width: 35%; text-align: right; color: @VCardLabelColor; }
349                 dd {float: left; margin-left: 4px; width: 60%;}
350
351         }
352
353         #profile-extra-links {
354                 ul { padding: 0; margin: 0; }
355                 li { padding: 0.2em 0; margin: 0; list-style: none; }
356         }
357
358         #wallmessage-link {
359                 display: block;
360                 .rounded();
361                 color: @AsideConnect;
362                 background: @AsideConnectBg url('../../../images/connect-bg.png') no-repeat left center;
363                 font-weight: bold;
364                 text-transform:uppercase;
365                 padding: 4px 2px 2px 35px;
366                 margin-top: 3px;
367
368                 &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
369         }
370         #dfrn-request-link {
371                 display: block;
372                 .rounded();
373                 color: @AsideConnect;
374                 background: @AsideConnectBg url('icons/connect-bg.png') no-repeat left center;
375                 font-weight: bold;
376                 text-transform:uppercase;
377                 padding: 4px 2px 2px 35px;
378
379                 &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
380         }
381         #subscribe-feed-link {
382                 display: block;
383                 .rounded();
384                 color: @AsideConnect;
385                 background: @AsideConnectBg url('icons/rss-bg.png') no-repeat left center;
386                 font-weight: bold;
387                 text-transform:uppercase;
388                 padding: 4px 2px 2px 35px;
389
390                 &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
391         }
392
393         #profiles-menu { width: 20em; }
394
395         .posted-date-selector-months { margin-left: 10px; }
396 }
397
398 #contact-block {
399         overflow: auto; height: auto;
400         .contact-block-h4 { float: left; margin: 5px 0; }
401         .allcontact-link { float: right; margin: 5px 0; }
402         .contact-block-content {
403                 clear: both;
404                 overflow: hidden;
405                 height: auto;
406         }
407         /*.contact-block-div { width:60px; height: 60px; }*/
408         .contact-block-link {
409                 float: left;
410                 margin: 0 2px 2px 0;
411                 img { width: 48px; height: 48px; }
412         }
413 }
414
415 /* group member */
416 #contact-edit-drop-link,
417 .mail-list-delete-wrapper,
418 .group-delete-wrapper {
419         float: right;
420         margin-right: 50px;
421         .drophide {
422                 background-image: url('../../../images/icons/22/delete.png');
423                 display: block; width: 22px; height: 22px;
424                 opacity: 0.3;
425                 position: relative;
426                 top: -50px;
427         }
428         .drop {
429                 background-image: url('../../../images/icons/22/delete.png');
430                 display: block; width: 22px; height: 22px;
431                 position: relative;
432                 top: -50px;
433         }
434 }
435 /*
436 #group-members {
437         margin-top: 20px;
438         padding: 10px;
439         height: 250px;
440         overflow: auto;
441         border: 1px solid #ddd;
442 }
443 #group-members-end {
444         clear: both;
445 }
446 #group-all-contacts {
447         padding: 10px;
448         height: 450px;
449         overflow: auto;
450         border: 1px solid #ddd;
451 }
452 #group-all-contacts-end {
453         clear: both;
454         margin-bottom: 10px;
455 }
456 .contact-block-div {
457         float: left;
458         width: 60px;
459         height: 60px;
460 }*/
461
462 /* widget */
463 .widget {
464         margin-bottom: 2em;
465
466         h3 { padding: 0; margin: 2px;}
467         .action { .opaque(0.1); }
468         input.action { .opaque(0.5); }
469         &:hover .title .action { .opaque(1); }
470         .tool:hover .action { .opaque(1); }
471         .tool:hover .action.ticked { .opaque(1); }
472
473         ul { padding: 0;}
474         ul li {padding-left: 16px; min-height: 16px; list-style: none; }
475
476         .tool.selected {
477                 background: url('../../../images/selected.png') no-repeat left center;
478         }
479
480         /*.action .s10 { width: 10px; overflow: hidden; padding: 0;}
481         .action .s16 { width: 16px; overflow: hidden; padding: 0;}*/
482
483         .notify {
484                 display: none;
485                 background-color: #19AEFF;
486                 border-radius: 5px;
487                 font-size: 10px;
488                 padding: 1px 3px;
489                 min-width: 15px;
490                 text-align: right;
491                 float: right;
492                 color: rgb(255, 255, 255);
493                 margin-right: 10px;
494
495                 &.on { display: block; }
496         }
497 }
498
499 /* widget: search */
500 #add-search-popup {
501         width: 200px;
502         top: 18px;
503 }
504
505
506 /* section 800px */
507 section {
508         display: table-cell;
509         vertical-align: top;
510         width: 770px;
511         padding:0px 20px 0 10px;
512 }
513
514 .sparkle {
515         cursor: url('icons/lock.cur'), pointer;
516 }
517
518 /* wall item */
519 .tread-wrapper {
520         background-color: @ThreadBackgroundColor;
521         position: relative;
522         padding: 10px;
523         margin-bottom: 20px;
524         width: 750px;
525         border-bottom: 1px solid @ThreadBottomBorderColor;
526 }
527 .wall-item-decor { position: absolute; left: 97%; top: -10px;  width: 16px;}
528 .unstarred { display: none; }
529
530 .wall-item-container {
531         display: table;
532         width: 750px;
533
534         .wall-item-item,
535         .wall-item-bottom { display: table-row; }
536
537         .wall-item-bottom { .opaque(0.5); }
538         &:hover .wall-item-bottom { .opaque(1); }
539         .wall-item-info {
540                 display: table-cell;
541                 vertical-align: top;
542                 text-align: left;
543                 width: 60px;
544
545         }
546         .wall-item-location {
547                 word-wrap: break-word;
548                 width: 50px;
549         }
550         .wall-item-content {
551                 display: table-cell;
552                 font-size: 12px;
553                 max-width: 720px;
554                 word-wrap: break-word;
555         }
556         .wall-item-content img { max-width: 700px; }
557         .wall-item-links,
558         .wall-item-actions {
559                 display: table-cell;
560                 vertical-align: middle;
561
562                 .icon {
563                         .opaque(0.5);
564                 }
565                 .icon:hover  {
566                         .opaque(1.0);
567                 }
568         }
569
570         .wall-item-ago { padding-right: 40px; }
571         .wall-item-name { font-weight: bold; }
572
573         .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; }
574         .wall-item-actions-events { float: left; margin-top: 0.5em;
575                 a { margin-right: 3em; }
576          }
577         .wall-item-actions-social { float: left; margin-top: 0.5em;
578                 a { margin-right: 3em;
579                         .active { font-weight: bold;}
580                 }
581          }
582         .wall-item-actions-tools { float: right; width: 15%;
583                 a { float: right; }
584                 input { float: right; }
585         }
586
587 }
588
589
590 .wall-item-container.comment {
591         .contact-photo-wrapper { margin-left: 16px; }
592         .contact-photo {
593                 width: 32px; height: 32px;
594         }
595
596         .contact-photo-menu-button {
597                 top: 15px !important;
598                 left: 0 !important;
599         }
600         .wall-item-links { padding-left: 12px; }
601
602         .commentbox {
603                 height: 0;
604                 overflow: hidden;
605                 .wall-item-comment-wrapper {
606                         border-top: 1px solid @CommentBoxEmptyBorderColor;
607                         height: 0; overflow: hidden;
608                 }
609                 .transition();
610         }
611
612         &:hover .commentbox {
613                 height:auto; overflow: visible;
614                 .wall-item-comment-wrapper {
615                         border-top: 0;
616                         height:auto;overflow: visible;
617                 }
618                 .transition();
619         }
620 }
621
622 /* 'tag' item type */
623 .wall-item-container.item-tag {
624         .wall-item-content {
625                 .opaque(0.5);
626         }
627         .contact-photo-wrapper { margin-left: 32px; }
628         .contact-photo {
629                 width: 16px; height: 16px;
630         }
631         .contact-photo-menu-button {
632                 top: 15px !important;
633                 left: 15px !important;
634         }
635 }
636
637
638 .wall-item-comment-wrapper {
639         margin: 1em 2em 1em 60px;
640         .comment-edit-photo { display: none; }
641
642         textarea {
643                 height: 1em; width: 100%; font-size: 10px;
644                 color: @CommentBoxEmptyColor;
645                 border: 1px solid @CommentBoxEmptyBorderColor;
646                 padding:0.3em;
647         }
648         .comment-edit-text-full {
649                 height: 4em;
650                 color: @CommentBoxFullColor;
651                 border: 1px solid @CommentBoxFullBorderColor;
652         }
653
654         &.photo {
655                 margin: 1em 2em 1em 0;
656         }
657 }
658
659 .threaded .wall-item-comment-wrapper { margin-left: 0; }
660
661 .comment-edit-preview {
662         width: 710px;
663         border: 1px solid @Grey5;
664         margin-top: 10px;
665         background-color: @JotPreviewBackgroundColor;
666
667         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
668                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
669         }
670         .contact-photo-menu-button {
671                 top: 15px !important;
672                 left: 15px !important;
673         }
674         .wall-item-links { padding-left: 12px; }
675
676         .wall-item-container { width: 90%; }
677         .tread-wrapper {
678                 width: 90%; padding: 0; margin: 10px 0;
679                 background-color: @JotPreviewBackgroundColor;
680                 border-bottom: 0;
681         }
682         .wall-item-conv { display: none; }
683 }
684
685 .shiny { border-right:10px solid @ShinyBorderColor; }
686 #jot-preview-content .tread-wrapper { background-color: @JotPreviewBackgroundColor; }
687
688 .hide-comments-outer {margin-bottom: 0.8em; }
689
690 .wall-item-tags { padding-top: 5px; }
691 .tag {
692         background: url("icons/tag.png") no-repeat center right;
693         color: @TagColor;
694         padding-right: 8px;
695         padding-left: 3px;
696         a { color: @TagColor;   }
697 }
698 .mention {
699         background: url("icons/men.png") no-repeat 1px center;
700         color: @MentionColor;
701         padding-right: 3px;
702         padding-left: 18px;
703         a { color: @MentionColor;       }
704 }
705 .folder {
706         background: url("icons/folder.png") no-repeat 1px center;
707         color: @MentionColor;
708         padding-right: 3px;
709         padding-left: 15px;
710         a { color: @MentionColor;       }
711 }
712 .category {
713         background: url("icons/category.png") no-repeat 1px center;
714         color: @MentionColor;
715         padding-right: 3px;
716         padding-left: 15px;
717         a { color: @MentionColor;       }
718 }
719 /*.filesavetags {
720     padding: 3px 0 3px 0;
721     opacity: 0.5;
722 }*/
723
724 .wwto {
725         position: absolute !important;
726         background: #FFFFFF;
727         border: 2px solid @Metalic3;
728         height: 25px;
729         width: 25px;
730         overflow: hidden;
731         padding: 1px;
732         top: 40px;
733         left: 30px;
734
735         .shadow(0px, 0);
736 }
737 .wwto .contact-photo { width: 25px; height: 25px; }
738
739 /* reshare e embed */
740 .wall-item-container .wall-item-content .type-link img,
741 .type-link img {
742         max-width: 160px;
743         max-height: 160px;
744         float: left;
745         margin-right: 10px;
746
747             &.attachment-image {
748                     max-width: 650px;
749                     max-height: inital;
750                     float: none;
751                     margin-right: 0;
752             }
753
754 }
755 .type-link {
756         blockquote {
757             margin: 1em 0;
758             max-height: 160px;
759             overflow: hidden;
760             padding-left: 1em;
761         }
762         .oembed {}
763 }
764
765 .type-video blockquote { padding-left: 1em; }
766
767 .shared_header {
768         height: 32px;
769         color: #999;
770         border-top: 1px solid @ThreadBottomBorderColor;
771         padding-top: 5px;
772         margin-top: 5px;
773
774         img {
775             -webkit-border-radius: 4px;
776             -moz-border-radius: 4px;
777             border-radius: 4px;
778             float: left;
779         }
780
781         span { margin-left: 9px; }
782 }
783
784
785 blockquote.shared_content {
786         margin-left: 32px;
787         color: #000;
788         border: none;
789 }
790
791
792 .oembed.video {
793         > a.embed_video {
794                 display: block;
795                 float: left;
796         position: relative;
797                 > div {
798             position: absolute; top: 0px; left: 0px;
799                         background:
800                                 rgba(255, 255, 255, 0.36)
801                                 url(../../../images/icons/48/play.png)
802                                 no-repeat center center
803                                 !important;
804                 }
805         }
806 }
807
808
809 /* threaded comments */
810 .children {
811         margin-top: 1em;
812         .hide-comments-outer { margin-left:60px; }
813
814         .wwto { display: none; }
815
816         .comment-edit-preview { width: 660px;
817                 .wall-item-container { width: 610px; }
818          }
819
820         & .children {
821
822                 margin-left: 40px;
823                 .wall-item-container { width: 710px; }
824                 .comment-edit-preview { width: 620px;
825                         .wall-item-container { width: 620px; }
826                  }
827
828                 & .children {
829                         .wall-item-container { width: 670px; }
830                         .comment-edit-preview { width: 580px;
831                                 .wall-item-container { width: 580px; }
832                         }
833
834                         & .children {
835                                 .wall-item-container { width: 630px; }
836                                 .comment-edit-preview { width: 540px;
837                                         .wall-item-container { width: 540px; }
838                                 }
839
840                                 & .children {
841                                         .wall-item-container { width: 590px; }
842                                         .comment-edit-preview { width: 500px;
843                                                 .wall-item-container { width: 500px; }
844                                         }
845
846                                         .children {
847                                                 margin-left: 0;
848                                                 .hide-comments-outer { margin-left: 0; }
849                                         }
850                                 }
851                         }
852                 }
853         }
854 }
855 /*.threaded .hide-comments-outer { margin-left: 20px; }*/
856
857 span[id^="showmore-teaser"]{
858         background: url("showmore-bg.jpg") no-repeat center bottom;
859 }
860 span[id^="showmore-wrap"] {
861         border-top: 1px solid #999999;
862         color: #999999;
863         display: block;
864         text-align: center;
865         background-color: @ThreadBackgroundColor;
866 }
867
868
869 #pause {
870         position: fixed;
871         bottom: 5px;
872         right: 5px;
873 }
874
875
876 .contact-photo-wrapper { position: relative; }
877 .contact-select {       position: absolute; top:64px; left:64px; display:none; }
878 .contact-select:checked,
879 .contact-photo:hover .contact-select {  display:block; }
880 #contacts-actions {
881         position: absolute;
882         left: 800px;
883         width: 200px;
884         background-color: @MenuBg;
885         border: 2px solid @MenuBorder;
886         .batch-action {
887                 display: block;
888                 width: 100%;
889                 background-color: @MenuBg;
890                 border: 0;
891                 color: @MenuItem;
892                 text-align: left;
893                 padding: 5px 10px;
894                 font-size: 11px;
895         }
896         .batch-action:hover {
897                 background-color: @MenuItemHoverBg;
898         }
899         display: none;
900 }
901 @media (max-width: 1000px) {
902         #contacts-actions { left: 40px; }
903 }
904
905 .contact-photo {
906         width: 48px; height: 48px;
907         img { width: 48px; height: 48px; }
908         overflow: hidden;
909         display: block;
910  }
911 .contact-photo-menu-button {
912         display: none;
913         position: absolute;
914         left: -2px;
915         top: 31px;
916 }
917
918 .contact-wrapper {
919         float: left;
920         width: 300px;
921         height: 90px;
922         padding-right: 10px;
923         margin: 0 10px 10px 0;
924         .contact-photo-wrapper {
925                 float: left;
926                 margin-right: 10px;
927         }
928         .contact-photo {
929                 width: 80px; height: 80px;
930                 img { width: 80px; height: 80px; }
931         }
932         .contact-photo-menu-button {
933                 left: 0;
934                 top: 63px;
935         }
936         .drop {
937                 background-image: url('../../../images/icons/22/delete.png');
938                 display: block; width: 22px; height: 22px;
939                 position: relative;
940                 top: 10px;
941                 left: -10px;
942                 z-index: 99;
943         }
944         .drophide {
945                 background-image: url('../../../images/icons/22/delete.png');
946                 display: block; width: 22px; height: 22px;
947                 opacity: 0.3;
948                 position: relative;
949                 top: 10px;
950                 left: -10px;
951                 z-index: 99;
952         }
953         .contact-entry-connect {
954                 padding-top: 5px;
955                 font-weight: bold;
956         }
957 }
958 .directory-item {
959         float: left;
960         width: 200px;
961         height: 200px;
962         .contact-photo {
963                 width: 175px; height: 175px;
964                 img { width: 175px; height: 175px; }
965         }
966 }
967 .contact-name { font-weight: bold; /* padding-top: 15px; */}
968 .contact-details {
969         color: @Grey3; white-space: nowrap;
970         overflow: hidden;
971         text-overflow: ellipsis;
972 }
973
974 #contact-edit-status-wrapper { border-color: @JotToolsOverBackgroundColor;}
975 /* editor */
976 .jothidden { display: none; }
977 #jot {
978
979         width: 100%;
980         margin: 0 2em 20px 0;
981
982         .profile-jot-text {
983                 height: 1em; width: 99%; font-size: 10px;
984                 color: @CommentBoxEmptyColor;
985                 border: 1px solid @CommentBoxEmptyBorderColor;
986                 padding:0.3em;
987         }
988
989         #jot-tools {
990                 margin: 0; padding: 0;
991                 height: 40px; overflow: none;
992                 width: 770px;
993                 background-color: @JotToolsBackgroundColor;
994                 border-bottom: 2px solid @JotToolsBorderColor;
995                 li {
996                         list-style: none;
997                         float: left;
998                         width: 80px;
999                         height: 40px;
1000                         border-bottom: 2px solid @JotToolsBorderColor;
1001                         a {
1002                                 display: block;
1003                                 color: @JotToolsText;
1004                                 width: 100%;
1005                                 height:40px;
1006                                 text-align: center;
1007                                 line-height: 40px;
1008                                 overflow: hidden;
1009                         }
1010                 }
1011                 li:hover {
1012                         background-color: @JotToolsOverBackgroundColor;
1013                         border-bottom: 2px solid @JotToolsOverBorderColor;
1014                 }
1015                 li.perms {
1016                         float: right;
1017                         width: 40px;
1018                         a.unlock {
1019                                 width: 30px;
1020                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
1021                                 background-color: @JotPermissionUnlockBackgroundColor;
1022                         }
1023                         a.lock {
1024                                 width: 30px;
1025                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
1026                                 background-color: @JotPermissionLockBackgroundColor;
1027                         }
1028
1029                 }
1030                 li.submit {
1031                         float: right;
1032                         background-color: @JotSubmitBackgroundColor;
1033                         border-bottom: 2px solid @JotSubmitBackgroundColor;
1034                         border-right: 1px solid @Grey4;
1035                         border-left: 1px solid @Grey4;
1036                         input {
1037                                 border: 0; margin: 0; padding: 0;
1038                                 background-color: @JotSubmitBackgroundColor;
1039                                 color: @JotSubmitText;
1040                                 width: 80px; height: 40px;
1041                                 line-height: 40px;
1042                         }
1043                         input:hover {
1044                                 background-color: @JotSubmitOverBackgroundColor;
1045                                 color: @JotSubmitOverText;
1046                         }
1047                 }
1048                 li.loading {
1049                         float: right;
1050                         background-color: @JotLoadingBackgroundColor;
1051                         width:  20px;
1052                         vertical-align: center;
1053                         text-align: center;
1054                         img { margin-top: 10px; }
1055                         border-top: 2px solid @JotToolsBorderColor;
1056                         height: 38px;
1057                 }
1058         }
1059
1060         #jot-title {
1061                 border: 0;
1062                 margin: 0;
1063                 height: 20px;
1064                 width: 500px;
1065                 font-weight: bold;
1066                 border: 1px solid @BodyBackground;
1067
1068                 &:-webkit-input-placeholder {
1069                         font-weight: normal;
1070                 }
1071
1072                 &:-moz-placeholder {
1073                         font-weight: normal;
1074                 }
1075
1076                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
1077                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
1078         }
1079
1080         #character-counter {
1081                 width: 40px;
1082                 float: right;
1083                 text-align: right;
1084                 height: 20px;
1085                 line-height: 20px;
1086                 padding-right: 20px;
1087         }
1088
1089         #jot-category {
1090                 border: 0;
1091                 margin: 0;
1092                 height: 20px;
1093                 width: 200px;
1094                 border: 1px solid @BodyBackground;
1095                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
1096                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
1097         }
1098 }
1099
1100
1101 /** buttons **/
1102 /*input[type="submit"] {
1103         border: 0;
1104     background-color: @ButtonBackgroundColor;
1105     color: @ButtonColor;
1106     padding: 0 10px;
1107         .rounded(5px);
1108     height: 18px;
1109 }*/
1110
1111 a.actionbutton {
1112         border: 1px solid @Grey3;
1113         background-color: @Grey2;
1114         color: @Grey5;
1115         font-size: 8pt;
1116         padding: 2pt;
1117         .rounded();
1118
1119         i.icon {
1120                 display: inline-block;
1121                 vertical-align: baseline;
1122                 padding: 0;
1123         }
1124
1125         &:hover {
1126                 text-decoration: none;
1127                 background-color: @Grey1;
1128         }
1129 }
1130 h2 > .actionbutton { float: right; }
1131
1132
1133 /** acl **/
1134 #photo-edit-perms-select,
1135 #photos-upload-permissions-wrapper,
1136 #profile-jot-acl-wrapper{
1137         display:block!important;
1138 }
1139
1140
1141
1142 #acl-wrapper {
1143         width: 690px;
1144         float:left;
1145 }
1146 #acl-search {
1147         float:right;
1148         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
1149         padding-right:20px;
1150 }
1151 #acl-showall {
1152         float: left;
1153         display: block;
1154         width: auto;
1155         height: 18px;
1156         background-color: #cccccc;
1157         background-image: url("../../../images/show_all_off.png");
1158         background-position: 7px 7px;
1159         background-repeat: no-repeat;
1160         padding: 7px 5px 0 30px;
1161         color: #999999;
1162         .rounded(5px);
1163 }
1164 #acl-showall.selected {
1165         color: #000000;
1166         background-color: #ff9900;
1167         background-image: url("../../../images/show_all_on.png");
1168 }
1169
1170 #acl-list {
1171         height: 210px;
1172         border: 1px solid #cccccc;
1173         clear: both;
1174         margin-top: 30px;
1175         overflow: auto;
1176 }
1177 #acl-list-content {
1178
1179 }
1180 .acl-list-item {
1181         display: block;
1182         width: 150px;
1183         height: 30px;
1184         border: 1px solid #cccccc;
1185         margin: 5px;
1186         float: left;
1187 }
1188 .acl-list-item img{
1189         width:22px;
1190         height: 22px;
1191         float: left;
1192         margin: 4px;
1193 }
1194 .acl-list-item p { height: 12px; font-size: 10px; margin: 0; padding: 2px 0 1px; overflow: hidden;}
1195 .acl-list-item a {
1196         font-size: 8px;
1197         display: block;
1198         width: 40px;
1199         height: 10px;
1200         float: left;
1201         color: #999999;
1202         background-color: #cccccc;
1203         background-position: 3px 3px;
1204         background-repeat: no-repeat;
1205         margin-right: 5px;
1206         -webkit-border-radius: 2px ;
1207         -moz-border-radius: 2px;
1208         border-radius: 2px;
1209         padding-left: 15px;
1210 }
1211 #acl-wrapper a:hover {
1212         text-decoration: none;
1213         color:#000000;
1214 }
1215 .acl-button-show { background-image: url("../../../images/show_off.png"); }
1216 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
1217
1218 .acl-button-show.selected {
1219         color: #000000;
1220         background-color: #9ade00;
1221         background-image: url("../../../images/show_on.png");
1222 }
1223 .acl-button-hide.selected {
1224         color: #000000;
1225         background-color: #ff4141;
1226         background-image: url("../../../images/hide_on.png");
1227 }
1228 .acl-list-item.groupshow { border-color: #9ade00; }
1229 .acl-list-item.grouphide { border-color: #ff4141; }
1230 /** /acl **/
1231
1232 /** tab buttons **/
1233 ul.tabs {
1234     list-style-type: none;
1235     padding-bottom: 10px;
1236
1237     li {
1238         float: left;
1239         margin-left: 20px;
1240
1241         .active {
1242                         border-bottom: 1px solid @LinkVisited;
1243         }
1244     }
1245
1246 }
1247
1248
1249 /** group editor **/
1250 #group-edit-desc { margin-top: 1em; color: @FieldHelpColor; }
1251 #group-update-wrapper{
1252         height: auto; overflow: auto;
1253         #group {
1254                 width:300px;
1255                 float:left;
1256                 margin-right:20px;
1257         }
1258         #contacts {
1259                 width:300px;
1260                 float:left;
1261         }
1262         #group-separator { display: none; }
1263         .contact_list {
1264                 height: 300px;
1265                 border: 1px solid @MenuBorder;
1266                 overflow: auto;
1267                 .contact-block-div  {
1268                         width: 50px; height: 50px;
1269                         float: left;
1270                 }
1271         }
1272 }
1273
1274 /**
1275  * Form fields
1276  */
1277 .field {
1278         margin-bottom: 10px;
1279         padding-bottom: 10px;
1280         overflow: auto;
1281         width: 100%;
1282
1283
1284         label {
1285                 float: left;
1286                 width: 200px;
1287         }
1288
1289         input,
1290         textarea {
1291                 width: 400px;
1292         }
1293         input[type="checkbox"], input[type="radio"]{
1294                 width: auto;
1295         }
1296
1297         textarea { height: 100px; }
1298         .field_help {
1299                 display: block;
1300                 margin-left: 200px;
1301                 color: @FieldHelpColor;
1302         }
1303
1304
1305         .onoff {
1306                 float: left;
1307                 width: 80px;
1308         }
1309         .onoff a {
1310                 display: block;
1311                 border:1px solid #666666;
1312                 background-image:url("../../../images/onoff.jpg");
1313                 background-repeat: no-repeat;
1314                 padding: 4px 2px 2px 2px;
1315                 height: 16px;
1316                 text-decoration: none;
1317         }
1318         .onoff .off {
1319                 border-color:#666666;
1320                 padding-left: 40px;
1321                 background-position: left center;
1322                 background-color: #cccccc;
1323                 color: #666666;
1324                 text-align: right;
1325         }
1326         .onoff .on {
1327                 border-color:#204A87;
1328                 padding-right: 40px;
1329                 background-position: right center;
1330                 background-color: #D7E3F1;
1331                 color: #204A87;
1332                 text-align: left;
1333         }
1334         .hidden { display: none!important; }
1335
1336         &.radio .field_help { margin-left: 0; }
1337 }
1338
1339
1340 #profile-edit-links li {
1341         list-style: none;
1342         margin-top: 10px;
1343 }
1344
1345 #profile-edit-default-desc {
1346         color: #FF0000;
1347         border: 1px solid #FF8888;
1348         background-color: #FFEEEE;
1349         padding: 7px;
1350 }
1351 #profile-edit-profile-name-label,
1352 #profile-edit-name-label,
1353 #profile-edit-pdesc-label,
1354 #profile-edit-gender-label,
1355 #profile-edit-dob-label,
1356 #profile-edit-address-label,
1357 #profile-edit-locality-label,
1358 #profile-edit-region-label,
1359 #profile-edit-postal-code-label,
1360 #profile-edit-country-name-label,
1361 #profile-edit-marital-label,
1362 #profile-edit-with-label,
1363 #profile-edit-sexual-label,
1364 #profile-edit-politic-label,
1365 #profile-edit-religion-label,
1366 #profile-edit-pubkeywords-label,
1367 #profile-edit-prvkeywords-label,
1368 #profile-edit-gender-select,
1369 #profile-edit-homepage-label {
1370         float: left;
1371         width: 175px;
1372         padding-top: 7px;
1373 }
1374 #profile-edit-profile-name,
1375 #profile-edit-name,
1376 #gender-select,
1377 #profile-edit-pdesc,
1378 #profile-edit-gender,
1379 #profile-edit-dob,
1380 #profile-edit-address,
1381 #profile-edit-locality,
1382 #profile-edit-region,
1383 #profile-edit-postal-code,
1384 #profile-edit-country-name,
1385 #profile-edit-marital,
1386 #profile-edit-with,
1387 #profile-edit-sexual,
1388 #profile-edit-politic,
1389 #profile-edit-religion,
1390 #profile-edit-pubkeywords,
1391 #profile-edit-prvkeywords,
1392 #profile-edit-homepage {
1393         margin-top: 5px;
1394 }
1395
1396 /* oauth */
1397 .oauthapp {
1398         height: auto; overflow: auto;
1399         border-bottom: 2px solid #cccccc;
1400         padding-bottom: 1em;
1401         margin-bottom: 1em;
1402 }
1403 .oauthapp img {
1404         float: left;
1405         width: 48px; height: 48px;
1406         margin: 10px;
1407 }
1408 .oauthapp img.noicon {
1409         background-image: url("../../../images/icons/48/plugin.png");
1410         background-position: center center;
1411         background-repeat: no-repeat;
1412 }
1413 .oauthapp a {
1414         float: left;
1415 }
1416
1417 /* contacts */
1418 .contact-entry-wrapper {
1419         width: 50px; float: left;
1420 }
1421
1422 /* manage page */
1423 .identity-match-photo {
1424         position: relative;
1425         .manage-notify {
1426                 background-color: #19AEFF;
1427                 border-radius: 5px;
1428                 font-size: 10px;
1429                 padding: 1px 3px;
1430                 min-width: 15px;
1431                 text-align: right;
1432                 position: absolute;
1433                 right: 10px;
1434                 top: -5px;
1435                 color: rgb(255, 255, 255);
1436         }
1437 }
1438
1439
1440 /* videos page */
1441 .videos {
1442         .video-top-wrapper {
1443                 width: 200px; float: left;
1444                 margin: 0 10px 10px 0;
1445                 position: relative;
1446
1447                 .video-js {
1448                         width: 200px!important;
1449                         height: 132px!important;
1450                 }
1451
1452                 .video-delete {
1453                         position: absolute;
1454                         opacity: 0;
1455                         right: 0;
1456                         top: 0;
1457                         transition: opacity 0.5s;
1458                 }
1459
1460                 &:hover .video-delete {
1461                         opacity: 1;
1462                 }
1463         }
1464 }
1465
1466 /* photo albums */
1467 @photosize: 150px;
1468
1469 #photo-edit-link-wrap { margin-bottom: 10px; }
1470
1471 #album-edit-link {
1472         border-right: 1px solid @MenuBorder;
1473         float: left;
1474         padding-right: 5px;
1475         margin-right: 5px;
1476 }
1477 #photo-edit-link,
1478 #album-edit-link a {
1479         background: url("../../../images/icons/16/edit.png") no-repeat left center;
1480         padding-left: 18px;
1481 }
1482 #photo-toprofile-link {
1483         background: url("../../../images/icons/16/user.png") no-repeat left center;
1484         padding-left: 18px;
1485 }
1486
1487 #photo-top-upload-link,
1488 .photos-upload-link { margin: 1em 0; display: block; }
1489 .photos-upload-link a,
1490 #photo-top-upload-link {
1491         background: url("../../../images/icons/16/add.png") no-repeat left center;
1492         padding-left: 18px;
1493 }
1494
1495
1496 .photo-top-image-wrapper,
1497 .photo-album-image-wrapper {
1498         float: left;
1499         margin: 0 10px 10px 0;
1500         width:@photosize; height: @photosize;
1501         position: relative;
1502         overflow: hidden;
1503
1504         img { width: @photosize; }
1505
1506         .photo-top-album-name,
1507         .caption{
1508                 position: absolute;
1509                 color: @Menu;
1510                 background-color: @MenuBg;
1511
1512                 width: 100%;
1513                 .shadow(0px, 5px);
1514                 .transition(0.5s);
1515                 bottom: -@photosize;
1516         }
1517
1518         &:hover .photo-top-album-name,
1519         &:hover .caption {
1520                 bottom: 0;
1521                 .shadow(0px, 0);
1522                 .transition(0.5s);
1523         }
1524 }
1525
1526 #photo-photo {
1527         display: block; width: 660px;
1528         padding: 50px; margin-bottom: 0;
1529         text-align: center;
1530         background-color: @Grey3;
1531         img { max-width: 560px; }
1532 }
1533 #photo-album-title {
1534         background: url("../../../images/icons/22/image.png") no-repeat top left;
1535         padding-left: 23px;
1536         min-height: 22px;
1537         padding-top: 6px;
1538         /* a { display: block;}*/
1539 }
1540
1541 #photo-caption {
1542         display: block; width: 660px;
1543         min-height: 55px;
1544         background-color:  @Grey2;
1545         padding:0 50px 0 50px;
1546 }
1547 #photo-next-link > a > div {
1548         background: url("icons/next.png") no-repeat center center;
1549         float: right;
1550         width: 50px; height: 50px;
1551 }
1552 #photo-prev-link > a > div {
1553         background: url("icons/prev.png") no-repeat center center;
1554         float: left;
1555         width: 50px; height: 50px;
1556 }
1557 #photo-like-div {
1558         display: block; width: 660px;
1559         height: 30px;
1560         background-color:  @Grey2;
1561         padding:0 50px 0 50px;
1562         .icon {float: left;}
1563         .like-rotator {float: right;}
1564 }
1565
1566 #photo_edit_form {
1567         padding: 1em;
1568 }
1569
1570 /* profile match wrapper */
1571 .profile-match-wrapper {
1572         float: left;
1573         width: 110px;
1574         height: 110px;
1575         margin-bottom: 20px;
1576         .drop {
1577             background-image: url('../../../images/icons/22/delete.png');
1578             display: block; width: 22px; height: 22px;
1579             position: relative;
1580             top: 10px;
1581             left: -10px;
1582         }
1583         .drophide {
1584             background-image: url('../../../images/icons/22/delete.png');
1585             display: block; width: 22px; height: 22px;
1586             opacity: 0.3;
1587             position: relative;
1588             top: 10px;
1589             left: -10px;
1590         }
1591         .contact-photo {
1592                 width: 80px; height: 80px;
1593                 img { width: 80px; height: 80px; }
1594         }
1595         .contact-photo-menu-button {
1596                 left: 0;
1597                 top: 63px;
1598         }
1599 }
1600
1601 /* messages */
1602 #message-new {
1603         background: @MessageNewBackgroundColor;
1604         border: 1px solid @MessageNewBorderColor;
1605         width: 150px;
1606         a {
1607                 color: @MessageNewColor;
1608                 text-align: center;
1609                 display: block;
1610                 font-weight: bold;
1611                 padding: 1em 0;
1612         }
1613 }
1614
1615 .mail-list-wrapper {
1616         background-color: @MailListBackgroundColor;
1617         margin-bottom: 5px;
1618         width: 100%; height: auto; overflow: hidden;
1619
1620         span { display: block; float: left; width: 20%; overflow: hidden;}
1621
1622         .mail-subject {
1623                 width: 30%;
1624                 padding:4px 0 0 4px;
1625                 a { display: block; }
1626                 &.unseen a { font-weight: bold; }
1627         }
1628         .mail-date { padding: 4px 4px 0 4px; }
1629         .mail-from { padding: 4px 4px 0 4px; }
1630         .mail-count { padding: 4px 4px 0 4px; text-align: right;}
1631
1632         .mail-delete { float: right; }
1633 }
1634
1635 #message-preview {
1636         margin-top: 1em;
1637         box-sizing: border-box;
1638         * {  box-sizing: border-box;    white-space: nowrap;}
1639         .mail-list-wrapper {
1640                 .mail-subject {
1641                         width: 100%;
1642                 }
1643                 .mail-date  { font-size: 0.8em; width: 25%; text-align: right}
1644                 .mail-from  { font-size: 0.8em; width: 75%;}
1645                 .mail-count { font-size: 0.8em; width: 100%;}
1646                 .mail-delete { display: none;}
1647
1648                 & .mail-date, & .mail-from, & .mail-count { .opaque(0.5); }
1649                 &:hover .mail-date, &:hover .mail-from, &:hover .mail-count { .opaque(1); }
1650         }
1651 }
1652
1653
1654 #mail-display-subject {
1655         background-color: @MailDisplaySubjectBackgroundColor;
1656         color: @MailDisplaySubjectColor;
1657         margin-bottom: 10px;
1658         width: 100%; height: auto; overflow: hidden;
1659         span { float: left; overflow: hidden; padding: 4px 0 0 10px;}
1660         .mail-delete { float: right;  .opaque(0.5);}
1661         &:hover .mail-delete { .opaque(1); }
1662
1663 }
1664
1665 /* theme screenshot */
1666 .screenshot, #theme-preview {
1667         position: absolute;
1668         width:202px;
1669         left: 70%;
1670         top: 50px;
1671         img { width: 200px; height: 150px; }
1672 }
1673
1674 /* page footer */
1675 footer { height: 100px; display: table-row; }
1676
1677 .pager {
1678         margin-top: 25px;
1679         clear: both;
1680 }
1681
1682 /**
1683  * ADMIN
1684  */
1685 #pending-update {
1686         float:right;
1687         color: #ffffff;
1688         font-weight: bold;
1689         background-color: #FF0000;
1690         padding: 0em 0.3em;
1691
1692 }
1693 #adminpage {
1694     dl {
1695         clear: left;
1696         margin-bottom: 2px;
1697         padding-bottom: 2px;
1698         border-bottom: 1px solid black;
1699     }
1700     dt {
1701         width: 200px;
1702         float: left;
1703         font-weight: bold;
1704     }
1705     dd {
1706         margin-left: 200px;
1707     }
1708     h3 {
1709         border-bottom: 1px solid #cccccc;
1710     }
1711     .field label {
1712         font-weight: bold;
1713     }
1714     .submit {
1715         clear:left;
1716         text-align: right;
1717     }
1718     #pluginslist {
1719         margin: 0; padding: 0;
1720     }
1721     .plugin {
1722         list-style: none;
1723         display: block;
1724         border: 1px solid #888888;
1725         padding: 1em;
1726         margin-bottom: 5px;
1727         clear: left;
1728         desc {
1729             margin-left: 2.5em;
1730         }
1731     }
1732     .toggleplugin {
1733         float:left;
1734         margin-right: 1em;
1735     }
1736     table {
1737         width:100%;
1738         border-bottom: 1px solid #000000;
1739         margin: 5px 0;
1740         th {
1741             text-align: left;
1742         }
1743         td .icon {
1744             float: left;
1745         }
1746         tr:hover {
1747             background-color: #bbc7d7;
1748         }
1749     }
1750     table#users img {
1751             width: 16px; height: 16px;
1752     }
1753     .selectall { text-align: right; }
1754 }
1755
1756 /* edit buttons for comments */
1757
1758 .icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
1759 .comment-edit-bb {
1760         list-style: none;
1761         display: none;
1762         margin: 0;
1763         padding: 0;
1764         width: 75%;
1765 }
1766 .comment-edit-bb > li {
1767         display: inline-block;
1768         margin: 10px 10px 0 0;
1769         visibility: none;
1770 }
1771
1772 .editicon {
1773         display: inline-block;
1774         width: 16px;
1775         height: 16px;
1776         background-image: url(icons/bbedit.png);
1777         text-decoration: none;
1778         :hover {background-color: #ccc;}
1779 }
1780 .boldbb { background-position: 0 0; }
1781 .boldbb:hover { background-position: 0 -16px; }
1782 .italicbb { background-position: -16px 0; }
1783 .italicbb:hover { background-position: -16px -16px; }
1784 .underlinebb { background-position: -32px 0; }
1785 .underlinebb:hover { background-position: -32px -16px; }
1786 .quotebb { background-position: -48px 0; }
1787 .quotebb:hover { background-position: -48px -16px; }
1788 .codebb { background-position: -64px 0; }
1789 .codebb:hover { background-position: -64px -16px; }
1790 .imagebb { background-position: -80px 0; }
1791 .imagebb:hover { background-position: -80px -16px; }
1792 .urlbb { background-position: -96px 0; }
1793 .urlbb:hover { background-position: -96px -16px; }
1794 .videobb { background-position: -112px 0; }
1795 .videobb:hover { background-position: -112px -16px; }
1796
1797
1798 /** range input css **/
1799 /* slider root element */
1800 .slider {
1801         height:2px;
1802         position:relative;
1803         cursor:pointer;
1804         border:1px solid #333;
1805         width:200px;
1806         margin:10px 0 10px 0;
1807             float: left;
1808 }
1809
1810 /* progress bar (enabled with progress: true) */
1811 .progress {
1812         height:9px;
1813         background-color:#C5FF00;
1814         display:none;
1815         opacity:0.6;
1816 }
1817
1818 /* drag handle */
1819 .handle {
1820         background-color:#ccc;
1821         height:16px;
1822         width:8px;
1823         top:-8px;
1824         position:absolute;
1825         display:block;
1826         margin-top:1px;
1827         border:1px solid #000;
1828         cursor:move;
1829             .roundbottom();
1830             .shadow();
1831 }
1832
1833 /* the input field */
1834 .range {
1835         width: 20px!important;
1836         font-size: 8pt;
1837         margin-left: 10px;
1838         border: 0;
1839         color: @FieldHelpColor;
1840 }
1841
1842 /* buttons for the event view */
1843 .plink-event-link {
1844         float: left;
1845         margin-left: 2px;
1846 }
1847
1848 /* upload/select popup */
1849 .fbrowser {
1850         overflow: auto;
1851         position: absolute;
1852         top: 0;
1853         width: 100%;
1854         height: 100%;
1855 }
1856 .fbrowser .path {
1857         background-color: @NavbarBackground;
1858         a {     padding: 5px; margin: 0 2px; display: inline-block; }
1859         a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none;  }
1860 }
1861 .fbrowser .folders ul { list-style: url("icons/folder.png"); padding-left: 22px;}
1862 .fbrowser .list { padding: 10px; }
1863 .fbrowser.image .photo-album-image-wrapper { width: 48px; height: 48px; }
1864 .fbrowser.image a img { width: auto; height: 48px; }
1865 .fbrowser.image a p { display: none;}
1866 .fbrowser.file .photo-album-image-wrapper { float:none;  white-space: nowrap; width: 100%; height: auto; }
1867 .fbrowser.file img { display: inline; width: 16px; height: 16px}
1868 .fbrowser.file p  { display: inline; white-space: nowrap; }
1869
1870 .fbrowser .upload { clear: both; padding-top: 1em;}