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