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