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