]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
[frio] Capitalize a few terms for consistency
[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          }
580         .wall-item-actions-tools { float: right; width: 15%;
581                 a { float: right; }
582                 input { float: right; }
583         }
584
585 }
586
587
588 .wall-item-container.comment {
589         .contact-photo-wrapper { margin-left: 16px; }
590         .contact-photo {
591                 width: 32px; height: 32px;
592         }
593
594         .contact-photo-menu-button {
595                 top: 15px !important;
596                 left: 0 !important;
597         }
598         .wall-item-links { padding-left: 12px; }
599
600         .commentbox {
601                 height: 0;
602                 overflow: hidden;
603                 .wall-item-comment-wrapper {
604                         border-top: 1px solid @CommentBoxEmptyBorderColor;
605                         height: 0; overflow: hidden;
606                 }
607                 .transition();
608         }
609
610         &:hover .commentbox {
611                 height:auto; overflow: visible;
612                 .wall-item-comment-wrapper {
613                         border-top: 0;
614                         height:auto;overflow: visible;
615                 }
616                 .transition();
617         }
618 }
619
620 /* 'tag' item type */
621 .wall-item-container.item-tag {
622         .wall-item-content {
623                 .opaque(0.5);
624         }
625         .contact-photo-wrapper { margin-left: 32px; }
626         .contact-photo {
627                 width: 16px; height: 16px;
628         }
629         .contact-photo-menu-button {
630                 top: 15px !important;
631                 left: 15px !important;
632         }
633 }
634
635
636 .wall-item-comment-wrapper {
637         margin: 1em 2em 1em 60px;
638         .comment-edit-photo { display: none; }
639
640         textarea {
641                 height: 1em; width: 100%; font-size: 10px;
642                 color: @CommentBoxEmptyColor;
643                 border: 1px solid @CommentBoxEmptyBorderColor;
644                 padding:0.3em;
645         }
646         .comment-edit-text-full {
647                 height: 4em;
648                 color: @CommentBoxFullColor;
649                 border: 1px solid @CommentBoxFullBorderColor;
650         }
651
652         &.photo {
653                 margin: 1em 2em 1em 0;
654         }
655 }
656
657 .threaded .wall-item-comment-wrapper { margin-left: 0; }
658
659 .comment-edit-preview {
660         width: 710px;
661         border: 1px solid @Grey5;
662         margin-top: 10px;
663         background-color: @JotPreviewBackgroundColor;
664
665         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
666                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
667         }
668         .contact-photo-menu-button {
669                 top: 15px !important;
670                 left: 15px !important;
671         }
672         .wall-item-links { padding-left: 12px; }
673
674         .wall-item-container { width: 90%; }
675         .tread-wrapper {
676                 width: 90%; padding: 0; margin: 10px 0;
677                 background-color: @JotPreviewBackgroundColor;
678                 border-bottom: 0;
679         }
680         .wall-item-conv { display: none; }
681 }
682
683 .shiny { border-right:10px solid @ShinyBorderColor; }
684 #jot-preview-content .tread-wrapper { background-color: @JotPreviewBackgroundColor; }
685
686 .hide-comments-outer {margin-bottom: 0.8em; }
687
688 .wall-item-tags { padding-top: 5px; }
689 .tag {
690         background: url("icons/tag.png") no-repeat center right;
691         color: @TagColor;
692         padding-right: 8px;
693         padding-left: 3px;
694         a { color: @TagColor;   }
695 }
696 .mention {
697         background: url("icons/men.png") no-repeat 1px center;
698         color: @MentionColor;
699         padding-right: 3px;
700         padding-left: 18px;
701         a { color: @MentionColor;       }
702 }
703 .folder {
704         background: url("icons/folder.png") no-repeat 1px center;
705         color: @MentionColor;
706         padding-right: 3px;
707         padding-left: 15px;
708         a { color: @MentionColor;       }
709 }
710 .category {
711         background: url("icons/category.png") no-repeat 1px center;
712         color: @MentionColor;
713         padding-right: 3px;
714         padding-left: 15px;
715         a { color: @MentionColor;       }
716 }
717 /*.filesavetags {
718     padding: 3px 0 3px 0;
719     opacity: 0.5;
720 }*/
721
722 .wwto {
723         position: absolute !important;
724         background: #FFFFFF;
725         border: 2px solid @Metalic3;
726         height: 25px;
727         width: 25px;
728         overflow: hidden;
729         padding: 1px;
730         top: 40px;
731         left: 30px;
732
733         .shadow(0px, 0);
734 }
735 .wwto .contact-photo { width: 25px; height: 25px; }
736
737 /* reshare e embed */
738 .wall-item-container .wall-item-content .type-link img,
739 .type-link img {
740         max-width: 160px;
741         max-height: 160px;
742         float: left;
743         margin-right: 10px;
744
745             &.attachment-image {
746                     max-width: 650px;
747                     max-height: inital;
748                     float: none;
749                     margin-right: 0;
750             }
751
752 }
753 .type-link {
754         blockquote {
755             margin: 1em 0;
756             max-height: 160px;
757             overflow: hidden;
758             padding-left: 1em;
759         }
760         .oembed {}
761 }
762
763 .type-video blockquote { padding-left: 1em; }
764
765 .shared_header {
766         height: 32px;
767         color: #999;
768         border-top: 1px solid @ThreadBottomBorderColor;
769         padding-top: 5px;
770         margin-top: 5px;
771
772         img {
773             -webkit-border-radius: 4px;
774             -moz-border-radius: 4px;
775             border-radius: 4px;
776             float: left;
777         }
778
779         span { margin-left: 9px; }
780 }
781
782
783 blockquote.shared_content {
784         margin-left: 32px;
785         color: #000;
786         border: none;
787 }
788
789
790 .oembed.video {
791         > a.embed_video {
792                 display: block;
793                 float: left;
794         position: relative;
795                 > div {
796             position: absolute; top: 0px; left: 0px;
797                         background:
798                                 rgba(255, 255, 255, 0.36)
799                                 url(../../../images/icons/48/play.png)
800                                 no-repeat center center
801                                 !important;
802                 }
803         }
804 }
805
806
807 /* threaded comments */
808 .children {
809         margin-top: 1em;
810         .hide-comments-outer { margin-left:60px; }
811
812         .wwto { display: none; }
813
814         .comment-edit-preview { width: 660px;
815                 .wall-item-container { width: 610px; }
816          }
817
818         & .children {
819
820                 margin-left: 40px;
821                 .wall-item-container { width: 710px; }
822                 .comment-edit-preview { width: 620px;
823                         .wall-item-container { width: 620px; }
824                  }
825
826                 & .children {
827                         .wall-item-container { width: 670px; }
828                         .comment-edit-preview { width: 580px;
829                                 .wall-item-container { width: 580px; }
830                         }
831
832                         & .children {
833                                 .wall-item-container { width: 630px; }
834                                 .comment-edit-preview { width: 540px;
835                                         .wall-item-container { width: 540px; }
836                                 }
837
838                                 & .children {
839                                         .wall-item-container { width: 590px; }
840                                         .comment-edit-preview { width: 500px;
841                                                 .wall-item-container { width: 500px; }
842                                         }
843
844                                         .children {
845                                                 margin-left: 0;
846                                                 .hide-comments-outer { margin-left: 0; }
847                                         }
848                                 }
849                         }
850                 }
851         }
852 }
853 /*.threaded .hide-comments-outer { margin-left: 20px; }*/
854
855 span[id^="showmore-teaser"]{
856         background: url("showmore-bg.jpg") no-repeat center bottom;
857 }
858 span[id^="showmore-wrap"] {
859         border-top: 1px solid #999999;
860         color: #999999;
861         display: block;
862         text-align: center;
863         background-color: @ThreadBackgroundColor;
864 }
865
866
867 #pause {
868         position: fixed;
869         bottom: 5px;
870         right: 5px;
871 }
872
873
874 .contact-photo-wrapper { position: relative; }
875 .contact-select {       position: absolute; top:64px; left:64px; display:none; }
876 .contact-select:checked,
877 .contact-photo:hover .contact-select {  display:block; }
878 #contacts-actions {
879         position: absolute;
880         left: 800px;
881         width: 200px;
882         background-color: @MenuBg;
883         border: 2px solid @MenuBorder;
884         .batch-action {
885                 display: block;
886                 width: 100%;
887                 background-color: @MenuBg;
888                 border: 0;
889                 color: @MenuItem;
890                 text-align: left;
891                 padding: 5px 10px;
892                 font-size: 11px;
893         }
894         .batch-action:hover {
895                 background-color: @MenuItemHoverBg;
896         }
897         display: none;
898 }
899 @media (max-width: 1000px) {
900         #contacts-actions { left: 40px; }
901 }
902
903 .contact-photo {
904         width: 48px; height: 48px;
905         img { width: 48px; height: 48px; }
906         overflow: hidden;
907         display: block;
908  }
909 .contact-photo-menu-button {
910         display: none;
911         position: absolute;
912         left: -2px;
913         top: 31px;
914 }
915
916 .contact-wrapper {
917         float: left;
918         width: 300px;
919         height: 90px;
920         padding-right: 10px;
921         margin: 0 10px 10px 0;
922         .contact-photo-wrapper {
923                 float: left;
924                 margin-right: 10px;
925         }
926         .contact-photo {
927                 width: 80px; height: 80px;
928                 img { width: 80px; height: 80px; }
929         }
930         .contact-photo-menu-button {
931                 left: 0;
932                 top: 63px;
933         }
934         .drop {
935                 background-image: url('../../../images/icons/22/delete.png');
936                 display: block; width: 22px; height: 22px;
937                 position: relative;
938                 top: 10px;
939                 left: -10px;
940                 z-index: 99;
941         }
942         .drophide {
943                 background-image: url('../../../images/icons/22/delete.png');
944                 display: block; width: 22px; height: 22px;
945                 opacity: 0.3;
946                 position: relative;
947                 top: 10px;
948                 left: -10px;
949                 z-index: 99;
950         }
951         .contact-entry-connect {
952                 padding-top: 5px;
953                 font-weight: bold;
954         }
955 }
956 .directory-item {
957         float: left;
958         width: 200px;
959         height: 200px;
960         .contact-photo {
961                 width: 175px; height: 175px;
962                 img { width: 175px; height: 175px; }
963         }
964 }
965 .contact-name { font-weight: bold; /* padding-top: 15px; */}
966 .contact-details {
967         color: @Grey3; white-space: nowrap;
968         overflow: hidden;
969         text-overflow: ellipsis;
970 }
971
972 #contact-edit-status-wrapper { border-color: @JotToolsOverBackgroundColor;}
973 /* editor */
974 .jothidden { display: none; }
975 #jot {
976
977         width: 100%;
978         margin: 0 2em 20px 0;
979
980         .profile-jot-text {
981                 height: 1em; width: 99%; font-size: 10px;
982                 color: @CommentBoxEmptyColor;
983                 border: 1px solid @CommentBoxEmptyBorderColor;
984                 padding:0.3em;
985         }
986
987         #jot-tools {
988                 margin: 0; padding: 0;
989                 height: 40px; overflow: none;
990                 width: 770px;
991                 background-color: @JotToolsBackgroundColor;
992                 border-bottom: 2px solid @JotToolsBorderColor;
993                 li {
994                         list-style: none;
995                         float: left;
996                         width: 80px;
997                         height: 40px;
998                         border-bottom: 2px solid @JotToolsBorderColor;
999                         a {
1000                                 display: block;
1001                                 color: @JotToolsText;
1002                                 width: 100%;
1003                                 height:40px;
1004                                 text-align: center;
1005                                 line-height: 40px;
1006                                 overflow: hidden;
1007                         }
1008                 }
1009                 li:hover {
1010                         background-color: @JotToolsOverBackgroundColor;
1011                         border-bottom: 2px solid @JotToolsOverBorderColor;
1012                 }
1013                 li.perms {
1014                         float: right;
1015                         width: 40px;
1016                         a.unlock {
1017                                 width: 30px;
1018                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
1019                                 background-color: @JotPermissionUnlockBackgroundColor;
1020                         }
1021                         a.lock {
1022                                 width: 30px;
1023                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
1024                                 background-color: @JotPermissionLockBackgroundColor;
1025                         }
1026
1027                 }
1028                 li.submit {
1029                         float: right;
1030                         background-color: @JotSubmitBackgroundColor;
1031                         border-bottom: 2px solid @JotSubmitBackgroundColor;
1032                         border-right: 1px solid @Grey4;
1033                         border-left: 1px solid @Grey4;
1034                         input {
1035                                 border: 0; margin: 0; padding: 0;
1036                                 background-color: @JotSubmitBackgroundColor;
1037                                 color: @JotSubmitText;
1038                                 width: 80px; height: 40px;
1039                                 line-height: 40px;
1040                         }
1041                         input:hover {
1042                                 background-color: @JotSubmitOverBackgroundColor;
1043                                 color: @JotSubmitOverText;
1044                         }
1045                 }
1046                 li.loading {
1047                         float: right;
1048                         background-color: @JotLoadingBackgroundColor;
1049                         width:  20px;
1050                         vertical-align: center;
1051                         text-align: center;
1052                         img { margin-top: 10px; }
1053                         border-top: 2px solid @JotToolsBorderColor;
1054                         height: 38px;
1055                 }
1056         }
1057
1058         #jot-title {
1059                 border: 0;
1060                 margin: 0;
1061                 height: 20px;
1062                 width: 500px;
1063                 font-weight: bold;
1064                 border: 1px solid @BodyBackground;
1065
1066                 &:-webkit-input-placeholder {
1067                         font-weight: normal;
1068                 }
1069
1070                 &:-moz-placeholder {
1071                         font-weight: normal;
1072                 }
1073
1074                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
1075                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
1076         }
1077
1078         #character-counter {
1079                 width: 40px;
1080                 float: right;
1081                 text-align: right;
1082                 height: 20px;
1083                 line-height: 20px;
1084                 padding-right: 20px;
1085         }
1086
1087         #jot-category {
1088                 border: 0;
1089                 margin: 0;
1090                 height: 20px;
1091                 width: 200px;
1092                 border: 1px solid @BodyBackground;
1093                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
1094                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
1095         }
1096 }
1097
1098
1099 /** buttons **/
1100 /*input[type="submit"] {
1101         border: 0;
1102     background-color: @ButtonBackgroundColor;
1103     color: @ButtonColor;
1104     padding: 0 10px;
1105         .rounded(5px);
1106     height: 18px;
1107 }*/
1108
1109 a.actionbutton {
1110         border: 1px solid @Grey3;
1111         background-color: @Grey2;
1112         color: @Grey5;
1113         font-size: 8pt;
1114         padding: 2pt;
1115         .rounded();
1116
1117         i.icon {
1118                 display: inline-block;
1119                 vertical-align: baseline;
1120                 padding: 0;
1121         }
1122
1123         &:hover {
1124                 text-decoration: none;
1125                 background-color: @Grey1;
1126         }
1127 }
1128 h2 > .actionbutton { float: right; }
1129
1130
1131 /** acl **/
1132 #photo-edit-perms-select,
1133 #photos-upload-permissions-wrapper,
1134 #profile-jot-acl-wrapper{
1135         display:block!important;
1136 }
1137
1138
1139
1140 #acl-wrapper {
1141         width: 690px;
1142         float:left;
1143 }
1144 #acl-search {
1145         float:right;
1146         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
1147         padding-right:20px;
1148 }
1149 #acl-showall {
1150         float: left;
1151         display: block;
1152         width: auto;
1153         height: 18px;
1154         background-color: #cccccc;
1155         background-image: url("../../../images/show_all_off.png");
1156         background-position: 7px 7px;
1157         background-repeat: no-repeat;
1158         padding: 7px 5px 0 30px;
1159         color: #999999;
1160         .rounded(5px);
1161 }
1162 #acl-showall.selected {
1163         color: #000000;
1164         background-color: #ff9900;
1165         background-image: url("../../../images/show_all_on.png");
1166 }
1167
1168 #acl-list {
1169         height: 210px;
1170         border: 1px solid #cccccc;
1171         clear: both;
1172         margin-top: 30px;
1173         overflow: auto;
1174 }
1175 #acl-list-content {
1176
1177 }
1178 .acl-list-item {
1179         display: block;
1180         width: 150px;
1181         height: 30px;
1182         border: 1px solid #cccccc;
1183         margin: 5px;
1184         float: left;
1185 }
1186 .acl-list-item img{
1187         width:22px;
1188         height: 22px;
1189         float: left;
1190         margin: 4px;
1191 }
1192 .acl-list-item p { height: 12px; font-size: 10px; margin: 0; padding: 2px 0 1px; overflow: hidden;}
1193 .acl-list-item a {
1194         font-size: 8px;
1195         display: block;
1196         width: 40px;
1197         height: 10px;
1198         float: left;
1199         color: #999999;
1200         background-color: #cccccc;
1201         background-position: 3px 3px;
1202         background-repeat: no-repeat;
1203         margin-right: 5px;
1204         -webkit-border-radius: 2px ;
1205         -moz-border-radius: 2px;
1206         border-radius: 2px;
1207         padding-left: 15px;
1208 }
1209 #acl-wrapper a:hover {
1210         text-decoration: none;
1211         color:#000000;
1212 }
1213 .acl-button-show { background-image: url("../../../images/show_off.png"); }
1214 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
1215
1216 .acl-button-show.selected {
1217         color: #000000;
1218         background-color: #9ade00;
1219         background-image: url("../../../images/show_on.png");
1220 }
1221 .acl-button-hide.selected {
1222         color: #000000;
1223         background-color: #ff4141;
1224         background-image: url("../../../images/hide_on.png");
1225 }
1226 .acl-list-item.groupshow { border-color: #9ade00; }
1227 .acl-list-item.grouphide { border-color: #ff4141; }
1228 /** /acl **/
1229
1230 /** tab buttons **/
1231 ul.tabs {
1232     list-style-type: none;
1233     padding-bottom: 10px;
1234
1235     li {
1236         float: left;
1237         margin-left: 20px;
1238
1239         .active {
1240                         border-bottom: 1px solid @LinkVisited;
1241         }
1242     }
1243
1244 }
1245
1246
1247 /** group editor **/
1248 #group-edit-desc { margin-top: 1em; color: @FieldHelpColor; }
1249 #group-update-wrapper{
1250         height: auto; overflow: auto;
1251         #group {
1252                 width:300px;
1253                 float:left;
1254                 margin-right:20px;
1255         }
1256         #contacts {
1257                 width:300px;
1258                 float:left;
1259         }
1260         #group-separator { display: none; }
1261         .contact_list {
1262                 height: 300px;
1263                 border: 1px solid @MenuBorder;
1264                 overflow: auto;
1265                 .contact-block-div  {
1266                         width: 50px; height: 50px;
1267                         float: left;
1268                 }
1269         }
1270 }
1271
1272 /**
1273  * Form fields
1274  */
1275 .field {
1276         margin-bottom: 10px;
1277         padding-bottom: 10px;
1278         overflow: auto;
1279         width: 100%;
1280
1281
1282         label {
1283                 float: left;
1284                 width: 200px;
1285         }
1286
1287         input,
1288         textarea {
1289                 width: 400px;
1290         }
1291         input[type="checkbox"], input[type="radio"]{
1292                 width: auto;
1293         }
1294
1295         textarea { height: 100px; }
1296         .field_help {
1297                 display: block;
1298                 margin-left: 200px;
1299                 color: @FieldHelpColor;
1300         }
1301
1302
1303         .onoff {
1304                 float: left;
1305                 width: 80px;
1306         }
1307         .onoff a {
1308                 display: block;
1309                 border:1px solid #666666;
1310                 background-image:url("../../../images/onoff.jpg");
1311                 background-repeat: no-repeat;
1312                 padding: 4px 2px 2px 2px;
1313                 height: 16px;
1314                 text-decoration: none;
1315         }
1316         .onoff .off {
1317                 border-color:#666666;
1318                 padding-left: 40px;
1319                 background-position: left center;
1320                 background-color: #cccccc;
1321                 color: #666666;
1322                 text-align: right;
1323         }
1324         .onoff .on {
1325                 border-color:#204A87;
1326                 padding-right: 40px;
1327                 background-position: right center;
1328                 background-color: #D7E3F1;
1329                 color: #204A87;
1330                 text-align: left;
1331         }
1332         .hidden { display: none!important; }
1333
1334         &.radio .field_help { margin-left: 0; }
1335 }
1336
1337
1338 #profile-edit-links li {
1339         list-style: none;
1340         margin-top: 10px;
1341 }
1342
1343 #profile-edit-default-desc {
1344         color: #FF0000;
1345         border: 1px solid #FF8888;
1346         background-color: #FFEEEE;
1347         padding: 7px;
1348 }
1349 #profile-edit-profile-name-label,
1350 #profile-edit-name-label,
1351 #profile-edit-pdesc-label,
1352 #profile-edit-gender-label,
1353 #profile-edit-dob-label,
1354 #profile-edit-address-label,
1355 #profile-edit-locality-label,
1356 #profile-edit-region-label,
1357 #profile-edit-postal-code-label,
1358 #profile-edit-country-name-label,
1359 #profile-edit-marital-label,
1360 #profile-edit-with-label,
1361 #profile-edit-sexual-label,
1362 #profile-edit-politic-label,
1363 #profile-edit-religion-label,
1364 #profile-edit-pubkeywords-label,
1365 #profile-edit-prvkeywords-label,
1366 #profile-edit-gender-select,
1367 #profile-edit-homepage-label {
1368         float: left;
1369         width: 175px;
1370         padding-top: 7px;
1371 }
1372 #profile-edit-profile-name,
1373 #profile-edit-name,
1374 #gender-select,
1375 #profile-edit-pdesc,
1376 #profile-edit-gender,
1377 #profile-edit-dob,
1378 #profile-edit-address,
1379 #profile-edit-locality,
1380 #profile-edit-region,
1381 #profile-edit-postal-code,
1382 #profile-edit-country-name,
1383 #profile-edit-marital,
1384 #profile-edit-with,
1385 #profile-edit-sexual,
1386 #profile-edit-politic,
1387 #profile-edit-religion,
1388 #profile-edit-pubkeywords,
1389 #profile-edit-prvkeywords,
1390 #profile-edit-homepage {
1391         margin-top: 5px;
1392 }
1393
1394 /* oauth */
1395 .oauthapp {
1396         height: auto; overflow: auto;
1397         border-bottom: 2px solid #cccccc;
1398         padding-bottom: 1em;
1399         margin-bottom: 1em;
1400 }
1401 .oauthapp img {
1402         float: left;
1403         width: 48px; height: 48px;
1404         margin: 10px;
1405 }
1406 .oauthapp img.noicon {
1407         background-image: url("../../../images/icons/48/plugin.png");
1408         background-position: center center;
1409         background-repeat: no-repeat;
1410 }
1411 .oauthapp a {
1412         float: left;
1413 }
1414
1415 /* contacts */
1416 .contact-entry-wrapper {
1417         width: 50px; float: left;
1418 }
1419
1420 /* manage page */
1421 .identity-match-photo {
1422         position: relative;
1423         .manage-notify {
1424                 background-color: #19AEFF;
1425                 border-radius: 5px;
1426                 font-size: 10px;
1427                 padding: 1px 3px;
1428                 min-width: 15px;
1429                 text-align: right;
1430                 position: absolute;
1431                 right: 10px;
1432                 top: -5px;
1433                 color: rgb(255, 255, 255);
1434         }
1435 }
1436
1437
1438 /* videos page */
1439 .videos {
1440         .video-top-wrapper {
1441                 width: 200px; float: left;
1442                 margin: 0 10px 10px 0;
1443                 position: relative;
1444
1445                 .video-js {
1446                         width: 200px!important;
1447                         height: 132px!important;
1448                 }
1449
1450                 .video-delete {
1451                         position: absolute;
1452                         opacity: 0;
1453                         right: 0;
1454                         top: 0;
1455                         transition: opacity 0.5s;
1456                 }
1457
1458                 &:hover .video-delete {
1459                         opacity: 1;
1460                 }
1461         }
1462 }
1463
1464 /* photo albums */
1465 @photosize: 150px;
1466
1467 #photo-edit-link-wrap { margin-bottom: 10px; }
1468
1469 #album-edit-link {
1470         border-right: 1px solid @MenuBorder;
1471         float: left;
1472         padding-right: 5px;
1473         margin-right: 5px;
1474 }
1475 #photo-edit-link,
1476 #album-edit-link a {
1477         background: url("../../../images/icons/16/edit.png") no-repeat left center;
1478         padding-left: 18px;
1479 }
1480 #photo-toprofile-link {
1481         background: url("../../../images/icons/16/user.png") no-repeat left center;
1482         padding-left: 18px;
1483 }
1484
1485 #photo-top-upload-link,
1486 .photos-upload-link { margin: 1em 0; display: block; }
1487 .photos-upload-link a,
1488 #photo-top-upload-link {
1489         background: url("../../../images/icons/16/add.png") no-repeat left center;
1490         padding-left: 18px;
1491 }
1492
1493
1494 .photo-top-image-wrapper,
1495 .photo-album-image-wrapper {
1496         float: left;
1497         margin: 0 10px 10px 0;
1498         width:@photosize; height: @photosize;
1499         position: relative;
1500         overflow: hidden;
1501
1502         img { width: @photosize; }
1503
1504         .photo-top-album-name,
1505         .caption{
1506                 position: absolute;
1507                 color: @Menu;
1508                 background-color: @MenuBg;
1509
1510                 width: 100%;
1511                 .shadow(0px, 5px);
1512                 .transition(0.5s);
1513                 bottom: -@photosize;
1514         }
1515
1516         &:hover .photo-top-album-name,
1517         &:hover .caption {
1518                 bottom: 0;
1519                 .shadow(0px, 0);
1520                 .transition(0.5s);
1521         }
1522 }
1523
1524 #photo-photo {
1525         display: block; width: 660px;
1526         padding: 50px; margin-bottom: 0;
1527         text-align: center;
1528         background-color: @Grey3;
1529         img { max-width: 560px; }
1530 }
1531 #photo-album-title {
1532         background: url("../../../images/icons/22/image.png") no-repeat top left;
1533         padding-left: 23px;
1534         min-height: 22px;
1535         padding-top: 6px;
1536         /* a { display: block;}*/
1537 }
1538
1539 #photo-caption {
1540         display: block; width: 660px;
1541         min-height: 55px;
1542         background-color:  @Grey2;
1543         padding:0 50px 0 50px;
1544 }
1545 #photo-next-link > a > div {
1546         background: url("icons/next.png") no-repeat center center;
1547         float: right;
1548         width: 50px; height: 50px;
1549 }
1550 #photo-prev-link > a > div {
1551         background: url("icons/prev.png") no-repeat center center;
1552         float: left;
1553         width: 50px; height: 50px;
1554 }
1555 #photo-like-div {
1556         display: block; width: 660px;
1557         height: 30px;
1558         background-color:  @Grey2;
1559         padding:0 50px 0 50px;
1560         .icon {float: left;}
1561         .like-rotator {float: right;}
1562 }
1563
1564 #photo_edit_form {
1565         padding: 1em;
1566 }
1567
1568 /* profile match wrapper */
1569 .profile-match-wrapper {
1570         float: left;
1571         width: 110px;
1572         height: 110px;
1573         margin-bottom: 20px;
1574         .drop {
1575             background-image: url('../../../images/icons/22/delete.png');
1576             display: block; width: 22px; height: 22px;
1577             position: relative;
1578             top: 10px;
1579             left: -10px;
1580         }
1581         .drophide {
1582             background-image: url('../../../images/icons/22/delete.png');
1583             display: block; width: 22px; height: 22px;
1584             opacity: 0.3;
1585             position: relative;
1586             top: 10px;
1587             left: -10px;
1588         }
1589         .contact-photo {
1590                 width: 80px; height: 80px;
1591                 img { width: 80px; height: 80px; }
1592         }
1593         .contact-photo-menu-button {
1594                 left: 0;
1595                 top: 63px;
1596         }
1597 }
1598
1599 /* messages */
1600 #message-new {
1601         background: @MessageNewBackgroundColor;
1602         border: 1px solid @MessageNewBorderColor;
1603         width: 150px;
1604         a {
1605                 color: @MessageNewColor;
1606                 text-align: center;
1607                 display: block;
1608                 font-weight: bold;
1609                 padding: 1em 0;
1610         }
1611 }
1612
1613 .mail-list-wrapper {
1614         background-color: @MailListBackgroundColor;
1615         margin-bottom: 5px;
1616         width: 100%; height: auto; overflow: hidden;
1617
1618         span { display: block; float: left; width: 20%; overflow: hidden;}
1619
1620         .mail-subject {
1621                 width: 30%;
1622                 padding:4px 0 0 4px;
1623                 a { display: block; }
1624                 &.unseen a { font-weight: bold; }
1625         }
1626         .mail-date { padding: 4px 4px 0 4px; }
1627         .mail-from { padding: 4px 4px 0 4px; }
1628         .mail-count { padding: 4px 4px 0 4px; text-align: right;}
1629
1630         .mail-delete { float: right; }
1631 }
1632
1633 #message-preview {
1634         margin-top: 1em;
1635         box-sizing: border-box;
1636         * {  box-sizing: border-box;    white-space: nowrap;}
1637         .mail-list-wrapper {
1638                 .mail-subject {
1639                         width: 100%;
1640                 }
1641                 .mail-date  { font-size: 0.8em; width: 25%; text-align: right}
1642                 .mail-from  { font-size: 0.8em; width: 75%;}
1643                 .mail-count { font-size: 0.8em; width: 100%;}
1644                 .mail-delete { display: none;}
1645
1646                 & .mail-date, & .mail-from, & .mail-count { .opaque(0.5); }
1647                 &:hover .mail-date, &:hover .mail-from, &:hover .mail-count { .opaque(1); }
1648         }
1649 }
1650
1651
1652 #mail-display-subject {
1653         background-color: @MailDisplaySubjectBackgroundColor;
1654         color: @MailDisplaySubjectColor;
1655         margin-bottom: 10px;
1656         width: 100%; height: auto; overflow: hidden;
1657         span { float: left; overflow: hidden; padding: 4px 0 0 10px;}
1658         .mail-delete { float: right;  .opaque(0.5);}
1659         &:hover .mail-delete { .opaque(1); }
1660
1661 }
1662
1663 /* theme screenshot */
1664 .screenshot, #theme-preview {
1665         position: absolute;
1666         width:202px;
1667         left: 70%;
1668         top: 50px;
1669         img { width: 200px; height: 150px; }
1670 }
1671
1672 /* page footer */
1673 footer { height: 100px; display: table-row; }
1674
1675 .pager {
1676         margin-top: 25px;
1677         clear: both;
1678 }
1679
1680 /**
1681  * ADMIN
1682  */
1683 #pending-update {
1684         float:right;
1685         color: #ffffff;
1686         font-weight: bold;
1687         background-color: #FF0000;
1688         padding: 0em 0.3em;
1689
1690 }
1691 #adminpage {
1692     dl {
1693         clear: left;
1694         margin-bottom: 2px;
1695         padding-bottom: 2px;
1696         border-bottom: 1px solid black;
1697     }
1698     dt {
1699         width: 200px;
1700         float: left;
1701         font-weight: bold;
1702     }
1703     dd {
1704         margin-left: 200px;
1705     }
1706     h3 {
1707         border-bottom: 1px solid #cccccc;
1708     }
1709     .field label {
1710         font-weight: bold;
1711     }
1712     .submit {
1713         clear:left;
1714         text-align: right;
1715     }
1716     #pluginslist {
1717         margin: 0; padding: 0;
1718     }
1719     .plugin {
1720         list-style: none;
1721         display: block;
1722         border: 1px solid #888888;
1723         padding: 1em;
1724         margin-bottom: 5px;
1725         clear: left;
1726         desc {
1727             margin-left: 2.5em;
1728         }
1729     }
1730     .toggleplugin {
1731         float:left;
1732         margin-right: 1em;
1733     }
1734     table {
1735         width:100%;
1736         border-bottom: 1px solid #000000;
1737         margin: 5px 0;
1738         th {
1739             text-align: left;
1740         }
1741         td .icon {
1742             float: left;
1743         }
1744         tr:hover {
1745             background-color: #bbc7d7;
1746         }
1747     }
1748     table#users img {
1749             width: 16px; height: 16px;
1750     }
1751     .selectall { text-align: right; }
1752 }
1753
1754 /* edit buttons for comments */
1755
1756 .icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
1757 .comment-edit-bb {
1758         list-style: none;
1759         display: none;
1760         margin: 0;
1761         padding: 0;
1762         width: 75%;
1763 }
1764 .comment-edit-bb > li {
1765         display: inline-block;
1766         margin: 10px 10px 0 0;
1767         visibility: none;
1768 }
1769
1770 .editicon {
1771         display: inline-block;
1772         width: 16px;
1773         height: 16px;
1774         background-image: url(icons/bbedit.png);
1775         text-decoration: none;
1776         :hover {background-color: #ccc;}
1777 }
1778 .boldbb { background-position: 0 0; }
1779 .boldbb:hover { background-position: 0 -16px; }
1780 .italicbb { background-position: -16px 0; }
1781 .italicbb:hover { background-position: -16px -16px; }
1782 .underlinebb { background-position: -32px 0; }
1783 .underlinebb:hover { background-position: -32px -16px; }
1784 .quotebb { background-position: -48px 0; }
1785 .quotebb:hover { background-position: -48px -16px; }
1786 .codebb { background-position: -64px 0; }
1787 .codebb:hover { background-position: -64px -16px; }
1788 .imagebb { background-position: -80px 0; }
1789 .imagebb:hover { background-position: -80px -16px; }
1790 .urlbb { background-position: -96px 0; }
1791 .urlbb:hover { background-position: -96px -16px; }
1792 .videobb { background-position: -112px 0; }
1793 .videobb:hover { background-position: -112px -16px; }
1794
1795
1796 /** range input css **/
1797 /* slider root element */
1798 .slider {
1799         height:2px;
1800         position:relative;
1801         cursor:pointer;
1802         border:1px solid #333;
1803         width:200px;
1804         margin:10px 0 10px 0;
1805             float: left;
1806 }
1807
1808 /* progress bar (enabled with progress: true) */
1809 .progress {
1810         height:9px;
1811         background-color:#C5FF00;
1812         display:none;
1813         opacity:0.6;
1814 }
1815
1816 /* drag handle */
1817 .handle {
1818         background-color:#ccc;
1819         height:16px;
1820         width:8px;
1821         top:-8px;
1822         position:absolute;
1823         display:block;
1824         margin-top:1px;
1825         border:1px solid #000;
1826         cursor:move;
1827             .roundbottom();
1828             .shadow();
1829 }
1830
1831 /* the input field */
1832 .range {
1833         width: 20px!important;
1834         font-size: 8pt;
1835         margin-left: 10px;
1836         border: 0;
1837         color: @FieldHelpColor;
1838 }
1839
1840 /* buttons for the event view */
1841 .plink-event-link {
1842         float: left;
1843         margin-left: 2px;
1844 }
1845
1846 /* upload/select popup */
1847 .fbrowser {
1848         overflow: auto;
1849         position: absolute;
1850         top: 0;
1851         width: 100%;
1852         height: 100%;
1853 }
1854 .fbrowser .path {
1855         background-color: @NavbarBackground;
1856         a {     padding: 5px; margin: 0 2px; display: inline-block; }
1857         a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none;  }
1858 }
1859 .fbrowser .folders ul { list-style: url("icons/folder.png"); padding-left: 22px;}
1860 .fbrowser .list { padding: 10px; }
1861 .fbrowser.image .photo-album-image-wrapper { width: 48px; height: 48px; }
1862 .fbrowser.image a img { width: auto; height: 48px; }
1863 .fbrowser.image a p { display: none;}
1864 .fbrowser.file .photo-album-image-wrapper { float:none;  white-space: nowrap; width: 100%; height: auto; }
1865 .fbrowser.file img { display: inline; width: 16px; height: 16px}
1866 .fbrowser.file p  { display: inline; white-space: nowrap; }
1867
1868 .fbrowser .upload { clear: both; padding-top: 1em;}