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