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