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