]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
c698497a1609066c913113bb1d99afaf9eead0de
[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-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: 0px; 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: 0px; margin: 0px; }
345                 li { padding: 0px; margin: 0px; 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('../../../images/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('../../../images/connect-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 0px; }
391         .allcontact-link { float: right; margin: 5px 0px; }
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: 0px 2px 2px 0px;
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: 0px; 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: 0px;}
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: 0px;}
471         .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
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 0px 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: 0px !important;
587         }
588         .wall-item-links { padding-left: 12px; }
589
590         .commentbox {
591                 height: 0px;
592                 overflow: hidden;
593                 .wall-item-comment-wrapper {
594                         border-top: 1px solid @CommentBoxEmptyBorderColor;
595                         height: 0px; overflow: hidden;
596                 }
597                 .transition();
598         }
599
600         &:hover .commentbox {
601                 height:auto; overflow: visible;
602                 .wall-item-comment-wrapper {
603                         border-top: 0px;
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 0px;
644         }
645 }
646
647 .threaded .wall-item-comment-wrapper { margin-left: 0px; }
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: 0px;
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 0px 3px 0px;
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, 0px);
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: 0px;
740             }
741
742 }
743 .type-link {
744         blockquote {
745             margin: 1em 0px;
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: none;
784                 > div {
785                         background:
786                                 rgba(255, 255, 255, 0.36)
787                                 url(../../../images/icons/48/play.png)
788                                 no-repeat center center
789                                 !important;
790                 }
791         }
792 }
793
794
795 /* threaded comments */
796 .children {
797         margin-top: 1em;
798         .hide-comments-outer { margin-left:60px; }
799
800         .wwto { display: none; }
801
802         .comment-edit-preview { width: 660px;
803                 .wall-item-container { width: 610px; }
804          }
805
806         & .children {
807
808                 margin-left: 40px;
809                 .wall-item-container { width: 710px; }
810                 .comment-edit-preview { width: 620px;
811                         .wall-item-container { width: 620px; }
812                  }
813
814                 & .children {
815                         .wall-item-container { width: 670px; }
816                         .comment-edit-preview { width: 580px;
817                                 .wall-item-container { width: 580px; }
818                         }
819
820                         & .children {
821                                 .wall-item-container { width: 630px; }
822                                 .comment-edit-preview { width: 540px;
823                                         .wall-item-container { width: 540px; }
824                                 }
825
826                                 & .children {
827                                         .wall-item-container { width: 590px; }
828                                         .comment-edit-preview { width: 500px;
829                                                 .wall-item-container { width: 500px; }
830                                         }
831
832                                         .children {
833                                                 margin-left: 0px;
834                                                 .hide-comments-outer { margin-left: 0px; }
835                                         }
836                                 }
837                         }
838                 }
839         }
840 }
841 /*.threaded .hide-comments-outer { margin-left: 20px; }*/
842
843 span[id^="showmore-teaser"]{
844         background: url("showmore-bg.jpg") no-repeat center bottom;
845 }
846 span[id^="showmore-wrap"] {
847         border-top: 1px solid #999999;
848         color: #999999;
849         display: block;
850         text-align: center;
851         background-color: @ThreadBackgroundColor;
852 }
853
854
855 #pause {
856         position: fixed;
857         bottom: 5px;
858         right: 5px;
859 }
860
861
862 .contact-photo-wrapper { position: relative; }
863 .contact-select {       position: absolute; top:64px; left:64px; display:none; }
864 .contact-select:checked,
865 .contact-photo:hover .contact-select {  display:block; }
866 #contacts-actions {
867         position: absolute;
868         left: 800px;
869         width: 200px;
870         background-color: @MenuBg;
871         border: 2px solid @MenuBorder;
872         .batch-action {
873                 display: block;
874                 width: 100%;
875                 background-color: @MenuBg;
876                 border: 0px;
877                 color: @MenuItem;
878                 text-align: left;
879                 padding: 5px 10px;
880                 font-size: 11px;
881         }
882         .batch-action:hover {
883                 background-color: @MenuItemHoverBg;
884         }
885         display: none;
886 }
887 @media (max-width: 1000px) {
888         #contacts-actions { left: 40px; }
889 }
890
891 .contact-photo {
892         width: 48px; height: 48px;
893         img { width: 48px; height: 48px; }
894         overflow: hidden;
895         display: block;
896  }
897 .contact-photo-menu-button {
898         display: none;
899         position: absolute;
900         left: -2px;
901         top: 31px;
902 }
903
904 .contact-wrapper {
905         float: left;
906         width: 300px;
907         height: 90px;
908         padding-right: 10px;
909         margin: 0 10px 10px 0px;
910         .contact-photo-wrapper {
911                 float: left;
912                 margin-right: 10px;
913         }
914         .contact-photo {
915                 width: 80px; height: 80px;
916                 img { width: 80px; height: 80px; }
917         }
918         .contact-photo-menu-button {
919                 left: 0px;
920                 top: 63px;
921         }
922         .drop {
923                 background-image: url('../../../images/icons/22/delete.png');
924                 display: block; width: 22px; height: 22px;
925                 position: relative;
926                 top: 10px;
927                 left: -10px;
928                 z-index: 99;
929         }
930         .drophide {
931                 background-image: url('../../../images/icons/22/delete.png');
932                 display: block; width: 22px; height: 22px;
933                 opacity: 0.3;
934                 position: relative;
935                 top: 10px;
936                 left: -10px;
937                 z-index: 99;
938         }
939         .contact-entry-connect {
940                 padding-top: 5px;
941                 font-weight: bold;
942         }
943 }
944 .directory-item {
945         float: left;
946         width: 200px;
947         height: 200px;
948         .contact-photo {
949                 width: 175px; height: 175px;
950                 img { width: 175px; height: 175px; }
951         }
952 }
953 .contact-name { font-weight: bold; /* padding-top: 15px; */}
954 .contact-details {
955         color: @Grey3; white-space: nowrap;
956         overflow: hidden;
957         text-overflow: ellipsis;
958 }
959
960 /* editor */
961 .jothidden { display: none; }
962 #jot {
963
964         width: 100%;
965         margin: 0px 2em 20px 0px;
966
967         .profile-jot-text {
968                 height: 1em; width: 99%; font-size: 10px;
969                 color: @CommentBoxEmptyColor;
970                 border: 1px solid @CommentBoxEmptyBorderColor;
971                 padding:0.3em;
972         }
973
974         #jot-tools {
975                 margin: 0px; padding: 0px;
976                 height: 40px; overflow: none;
977                 width: 770px;
978                 background-color: @JotToolsBackgroundColor;
979                 border-bottom: 2px solid @JotToolsBorderColor;
980                 li {
981                         list-style: none;
982                         float: left;
983                         width: 80px;
984                         height: 40px;
985                         border-bottom: 2px solid @JotToolsBorderColor;
986                         a {
987                                 display: block;
988                                 color: @JotToolsText;
989                                 width: 100%;
990                                 height:40px;
991                                 text-align: center;
992                                 line-height: 40px;
993                                 overflow: hidden;
994                         }
995                 }
996                 li:hover {
997                         background-color: @JotToolsOverBackgroundColor;
998                         border-bottom: 2px solid @JotToolsOverBorderColor;
999                 }
1000                 li.perms {
1001                         float: right;
1002                         width: 40px;
1003                         a.unlock {
1004                                 width: 30px;
1005                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
1006                                 background-color: @JotPermissionUnlockBackgroundColor;
1007                         }
1008                         a.lock {
1009                                 width: 30px;
1010                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
1011                                 background-color: @JotPermissionLockBackgroundColor;
1012                         }
1013
1014                 }
1015                 li.submit {
1016                         float: right;
1017                         background-color: @JotSubmitBackgroundColor;
1018                         border-bottom: 2px solid @JotSubmitBackgroundColor;
1019                         border-right: 1px solid @Grey4;
1020                         border-left: 1px solid @Grey4;
1021                         input {
1022                                 border: 0px; margin: 0px; padding: 0px;
1023                                 background-color: @JotSubmitBackgroundColor;
1024                                 color: @JotSubmitText;
1025                                 width: 80px; height: 40px;
1026                                 line-height: 40px;
1027                         }
1028                         input:hover {
1029                                 background-color: @JotSubmitOverBackgroundColor;
1030                                 color: @JotSubmitOverText;
1031                         }
1032                 }
1033                 li.loading {
1034                         float: right;
1035                         background-color: @JotLoadingBackgroundColor;
1036                         width:  20px;
1037                         vertical-align: center;
1038                         text-align: center;
1039                         img { margin-top: 10px; }
1040                         border-top: 2px solid @JotToolsBorderColor;
1041                         height: 38px;
1042                 }
1043         }
1044
1045         #jot-title {
1046                 border: 0px;
1047                 margin: 0px;
1048                 height: 20px;
1049                 width: 500px;
1050                 font-weight: bold;
1051                 border: 1px solid @BodyBackground;
1052
1053                 &:-webkit-input-placeholder {
1054                         font-weight: normal;
1055                 }
1056
1057                 &:-moz-placeholder {
1058                         font-weight: normal;
1059                 }
1060
1061                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
1062                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
1063         }
1064
1065         #character-counter {
1066                 width: 40px;
1067                 float: right;
1068                 text-align: right;
1069                 height: 20px;
1070                 line-height: 20px;
1071                 padding-right: 20px;
1072         }
1073
1074         #jot-category {
1075                 border: 0px;
1076                 margin: 0px;
1077                 height: 20px;
1078                 width: 200px;
1079                 border: 1px solid @BodyBackground;
1080                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
1081                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
1082         }
1083 }
1084
1085
1086 /** buttons **/
1087 /*input[type="submit"] {
1088         border: 0px;
1089     background-color: @ButtonBackgroundColor;
1090     color: @ButtonColor;
1091     padding: 0px 10px;
1092         .rounded(5px);
1093     height: 18px;
1094 }*/
1095
1096
1097 /** acl **/
1098 #photo-edit-perms-select,
1099 #photos-upload-permissions-wrapper,
1100 #profile-jot-acl-wrapper{
1101         display:block!important;
1102 }
1103
1104
1105
1106 #acl-wrapper {
1107         width: 690px;
1108         float:left;
1109 }
1110 #acl-search {
1111         float:right;
1112         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
1113         padding-right:20px;
1114 }
1115 #acl-showall {
1116         float: left;
1117         display: block;
1118         width: auto;
1119         height: 18px;
1120         background-color: #cccccc;
1121         background-image: url("../../../images/show_all_off.png");
1122         background-position: 7px 7px;
1123         background-repeat: no-repeat;
1124         padding: 7px 5px 0px 30px;
1125         color: #999999;
1126         .rounded(5px);
1127 }
1128 #acl-showall.selected {
1129         color: #000000;
1130         background-color: #ff9900;
1131         background-image: url("../../../images/show_all_on.png");
1132 }
1133
1134 #acl-list {
1135         height: 210px;
1136         border: 1px solid #cccccc;
1137         clear: both;
1138         margin-top: 30px;
1139         overflow: auto;
1140 }
1141 #acl-list-content {
1142
1143 }
1144 .acl-list-item {
1145         display: block;
1146         width: 150px;
1147         height: 30px;
1148         border: 1px solid #cccccc;
1149         margin: 5px;
1150         float: left;
1151 }
1152 .acl-list-item img{
1153         width:22px;
1154         height: 22px;
1155         float: left;
1156         margin: 4px;
1157 }
1158 .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;}
1159 .acl-list-item a {
1160         font-size: 8px;
1161         display: block;
1162         width: 40px;
1163         height: 10px;
1164         float: left;
1165         color: #999999;
1166         background-color: #cccccc;
1167         background-position: 3px 3px;
1168         background-repeat: no-repeat;
1169         margin-right: 5px;
1170         -webkit-border-radius: 2px ;
1171         -moz-border-radius: 2px;
1172         border-radius: 2px;
1173         padding-left: 15px;
1174 }
1175 #acl-wrapper a:hover {
1176         text-decoration: none;
1177         color:#000000;
1178 }
1179 .acl-button-show { background-image: url("../../../images/show_off.png"); }
1180 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
1181
1182 .acl-button-show.selected {
1183         color: #000000;
1184         background-color: #9ade00;
1185         background-image: url("../../../images/show_on.png");
1186 }
1187 .acl-button-hide.selected {
1188         color: #000000;
1189         background-color: #ff4141;
1190         background-image: url("../../../images/hide_on.png");
1191 }
1192 .acl-list-item.groupshow { border-color: #9ade00; }
1193 .acl-list-item.grouphide { border-color: #ff4141; }
1194 /** /acl **/
1195
1196 /** tab buttons **/
1197 ul.tabs {
1198     list-style-type: none;
1199     padding-bottom: 10px;
1200
1201     li {
1202         float: left;
1203         margin-left: 20px;
1204
1205         .active {
1206                         border-bottom: 1px solid @LinkVisited;
1207         }
1208     }
1209
1210 }
1211
1212
1213 /** group editor **/
1214 #group-edit-desc { margin-top: 1em; color: @FieldHelpColor; }
1215 #group-update-wrapper{
1216         height: auto; overflow: auto;
1217         #group {
1218                 width:300px;
1219                 float:left;
1220                 margin-right:20px;
1221         }
1222         #contacts {
1223                 width:300px;
1224                 float:left;
1225         }
1226         #group-separator { display: none; }
1227         .contact_list {
1228                 height: 300px;
1229                 border: 1px solid @MenuBorder;
1230                 overflow: auto;
1231                 .contact-block-div  {
1232                         width: 50px; height: 50px;
1233                         float: left;
1234                 }
1235         }
1236 }
1237
1238 /**
1239  * Form fields
1240  */
1241 .field {
1242         margin-bottom: 10px;
1243         padding-bottom: 10px;
1244         overflow: auto;
1245         width: 100%;
1246
1247
1248         label {
1249                 float: left;
1250                 width: 200px;
1251         }
1252
1253         input,
1254         textarea {
1255                 width: 400px;
1256         }
1257         input[type="checkbox"], input[type="radio"]{
1258                 width: auto;
1259         }
1260
1261         textarea { height: 100px; }
1262         .field_help {
1263                 display: block;
1264                 margin-left: 200px;
1265                 color: @FieldHelpColor;
1266         }
1267
1268
1269         .onoff {
1270                 float: left;
1271                 width: 80px;
1272         }
1273         .onoff a {
1274                 display: block;
1275                 border:1px solid #666666;
1276                 background-image:url("../../../images/onoff.jpg");
1277                 background-repeat: no-repeat;
1278                 padding: 4px 2px 2px 2px;
1279                 height: 16px;
1280                 text-decoration: none;
1281         }
1282         .onoff .off {
1283                 border-color:#666666;
1284                 padding-left: 40px;
1285                 background-position: left center;
1286                 background-color: #cccccc;
1287                 color: #666666;
1288                 text-align: right;
1289         }
1290         .onoff .on {
1291                 border-color:#204A87;
1292                 padding-right: 40px;
1293                 background-position: right center;
1294                 background-color: #D7E3F1;
1295                 color: #204A87;
1296                 text-align: left;
1297         }
1298         .hidden { display: none!important; }
1299
1300         &.radio .field_help { margin-left: 0px; }
1301 }
1302
1303
1304 #profile-edit-links li {
1305         list-style: none;
1306         margin-top: 10px;
1307 }
1308
1309 #profile-edit-default-desc {
1310         color: #FF0000;
1311         border: 1px solid #FF8888;
1312         background-color: #FFEEEE;
1313         padding: 7px;
1314 }
1315 #profile-edit-profile-name-label,
1316 #profile-edit-name-label,
1317 #profile-edit-pdesc-label,
1318 #profile-edit-gender-label,
1319 #profile-edit-dob-label,
1320 #profile-edit-address-label,
1321 #profile-edit-locality-label,
1322 #profile-edit-region-label,
1323 #profile-edit-postal-code-label,
1324 #profile-edit-country-name-label,
1325 #profile-edit-marital-label,
1326 #profile-edit-with-label,
1327 #profile-edit-sexual-label,
1328 #profile-edit-politic-label,
1329 #profile-edit-religion-label,
1330 #profile-edit-pubkeywords-label,
1331 #profile-edit-prvkeywords-label,
1332 #profile-edit-gender-select,
1333 #profile-edit-homepage-label {
1334         float: left;
1335         width: 175px;
1336         padding-top: 7px;
1337 }
1338 #profile-edit-profile-name,
1339 #profile-edit-name,
1340 #gender-select,
1341 #profile-edit-pdesc,
1342 #profile-edit-gender,
1343 #profile-edit-dob,
1344 #profile-edit-address,
1345 #profile-edit-locality,
1346 #profile-edit-region,
1347 #profile-edit-postal-code,
1348 #profile-edit-country-name,
1349 #profile-edit-marital,
1350 #profile-edit-with,
1351 #profile-edit-sexual,
1352 #profile-edit-politic,
1353 #profile-edit-religion,
1354 #profile-edit-pubkeywords,
1355 #profile-edit-prvkeywords,
1356 #profile-edit-homepage {
1357         margin-top: 5px;
1358 }
1359
1360 /* oauth */
1361 .oauthapp {
1362         height: auto; overflow: auto;
1363         border-bottom: 2px solid #cccccc;
1364         padding-bottom: 1em;
1365         margin-bottom: 1em;
1366 }
1367 .oauthapp img {
1368         float: left;
1369         width: 48px; height: 48px;
1370         margin: 10px;
1371 }
1372 .oauthapp img.noicon {
1373         background-image: url("../../../images/icons/48/plugin.png");
1374         background-position: center center;
1375         background-repeat: no-repeat;
1376 }
1377 .oauthapp a {
1378         float: left;
1379 }
1380
1381 /* contacts */
1382 .contact-entry-wrapper {
1383         width: 50px; float: left;
1384 }
1385
1386 /* videos page */
1387 .videos {
1388         .video-top-wrapper {
1389                 width: 200px; float: left;
1390                 margin: 0px 10px 10px 0px;
1391                 position: relative;
1392
1393                 .video-js {
1394                         width: 200px!important;
1395                         height: 132px!important;
1396                 }
1397
1398                 .video-delete {
1399                         position: absolute;
1400                         opacity: 0;
1401                         right: 0px;
1402                         top: 0px;
1403                         transition: opacity 0.5s;
1404                 }
1405
1406                 &:hover .video-delete {
1407                         opacity: 1;
1408                 }
1409         }
1410 }
1411
1412 /* photo albums */
1413 @photosize: 150px;
1414
1415 #photo-edit-link-wrap { margin-bottom: 10px; }
1416
1417 #album-edit-link {
1418         border-right: 1px solid @MenuBorder;
1419         float: left;
1420         padding-right: 5px;
1421         margin-right: 5px;
1422 }
1423 #photo-edit-link,
1424 #album-edit-link a {
1425         background: url("../../../images/icons/16/edit.png") no-repeat left center;
1426         padding-left: 18px;
1427 }
1428 #photo-toprofile-link {
1429         background: url("../../../images/icons/16/user.png") no-repeat left center;
1430         padding-left: 18px;
1431 }
1432
1433 #photo-top-upload-link,
1434 .photos-upload-link { margin: 1em 0px; display: block; }
1435 .photos-upload-link a,
1436 #photo-top-upload-link {
1437         background: url("../../../images/icons/16/add.png") no-repeat left center;
1438         padding-left: 18px;
1439 }
1440
1441
1442 .photo-top-image-wrapper,
1443 .photo-album-image-wrapper {
1444         float: left;
1445         margin: 0px 10px 10px 0px;
1446         width:@photosize; height: @photosize;
1447         position: relative;
1448         overflow: hidden;
1449
1450         img { width: @photosize; }
1451
1452         .photo-top-album-name,
1453         .caption{
1454                 position: absolute;
1455                 color: @Menu;
1456                 background-color: @MenuBg;
1457
1458                 width: 100%;
1459                 .shadow(0px, 5px);
1460                 .transition(0.5s);
1461                 bottom: -@photosize;
1462         }
1463
1464         &:hover .photo-top-album-name,
1465         &:hover .caption {
1466                 bottom: 0px;
1467                 .shadow(0px, 0px);
1468                 .transition(0.5s);
1469         }
1470 }
1471
1472 #photo-photo {
1473         display: block; width: 660px;
1474         padding: 50px; margin-bottom: 0px;
1475         text-align: center;
1476         background-color: @Grey3;
1477         img { max-width: 560px; }
1478 }
1479 #photo-album-title {
1480         background: url("../../../images/icons/22/image.png") no-repeat top left;
1481         padding-left: 23px;
1482         min-height: 22px;
1483         padding-top: 6px;
1484         /* a { display: block;}*/
1485 }
1486
1487 #photo-caption {
1488         display: block; width: 660px;
1489         min-height: 55px;
1490         background-color:  @Grey2;
1491         padding:0 50px 0 50px;
1492 }
1493 #photo-next-link > a > div {
1494         background: url("icons/next.png") no-repeat center center;
1495         float: right;
1496         width: 50px; height: 50px;
1497 }
1498 #photo-prev-link > a > div {
1499         background: url("icons/prev.png") no-repeat center center;
1500         float: left;
1501         width: 50px; height: 50px;
1502 }
1503 #photo-like-div {
1504         display: block; width: 660px;
1505         height: 30px;
1506         background-color:  @Grey2;
1507         padding:0 50px 0 50px;
1508         .icon {float: left;}
1509         .like-rotator {float: right;}
1510 }
1511
1512 #photo_edit_form {
1513         padding: 1em;
1514 }
1515
1516 /* profile match wrapper */
1517 .profile-match-wrapper {
1518         float: left;
1519         width: 110px;
1520         height: 110px;
1521         margin-bottom: 20px;
1522         .drop {
1523             background-image: url('../../../images/icons/22/delete.png');
1524             display: block; width: 22px; height: 22px;
1525             position: relative;
1526             top: 10px;
1527             left: -10px;
1528         }
1529         .drophide {
1530             background-image: url('../../../images/icons/22/delete.png');
1531             display: block; width: 22px; height: 22px;
1532             opacity: 0.3;
1533             position: relative;
1534             top: 10px;
1535             left: -10px;
1536         }
1537         .contact-photo {
1538                 width: 80px; height: 80px;
1539                 img { width: 80px; height: 80px; }
1540         }
1541         .contact-photo-menu-button {
1542                 left: 0px;
1543                 top: 63px;
1544         }
1545 }
1546
1547 /* messages */
1548 #message-new {
1549         background: @MessageNewBackgroundColor;
1550         border: 1px solid @MessageNewBorderColor;
1551         width: 150px;
1552         a {
1553                 color: @MessageNewColor;
1554                 text-align: center;
1555                 display: block;
1556                 font-weight: bold;
1557                 padding: 1em 0px;
1558         }
1559 }
1560
1561 .mail-list-wrapper {
1562         background-color: @MailListBackgroundColor;
1563         margin-bottom: 5px;
1564         width: 100%; height: auto; overflow: hidden;
1565
1566         span { display: block; float: left; width: 20%; overflow: hidden;}
1567
1568         .mail-subject {
1569                 width: 30%;
1570                 padding:4px 0px 0px 4px;
1571                 a { display: block; }
1572                 &.unseen a { font-weight: bold; }
1573         }
1574         .mail-date { padding: 4px 4px 0px 4px; }
1575         .mail-from { padding: 4px 4px 0px 4px; }
1576         .mail-count { padding: 4px 4px 0px 4px; text-align: right;}
1577
1578         .mail-delete { float: right; }
1579 }
1580
1581 #mail-display-subject {
1582         background-color: @MailDisplaySubjectBackgroundColor;
1583         color: @MailDisplaySubjectColor;
1584         margin-bottom: 10px;
1585         width: 100%; height: auto; overflow: hidden;
1586         span { float: left; overflow: hidden; padding: 4px 0px 0px 10px;}
1587         .mail-delete { float: right;  .opaque(0.5);}
1588         &:hover .mail-delete { .opaque(1); }
1589
1590 }
1591
1592 /* theme screenshot */
1593 .screenshot, #theme-preview {
1594         position: absolute;
1595         width:202px;
1596         left: 70%;
1597         top: 50px;
1598         img { width: 200px; height: 150px; }
1599 }
1600
1601 /* page footer */
1602 footer { height: 100px; display: table-row; }
1603
1604 .pager {
1605         margin-top: 25px;
1606         clear: both;
1607 }
1608
1609 /**
1610  * ADMIN
1611  */
1612 #pending-update {
1613         float:right;
1614         color: #ffffff;
1615         font-weight: bold;
1616         background-color: #FF0000;
1617         padding: 0em 0.3em;
1618
1619 }
1620 #adminpage {
1621     dl {
1622         clear: left;
1623         margin-bottom: 2px;
1624         padding-bottom: 2px;
1625         border-bottom: 1px solid black;
1626     }
1627     dt {
1628         width: 200px;
1629         float: left;
1630         font-weight: bold;
1631     }
1632     dd {
1633         margin-left: 200px;
1634     }
1635     h3 {
1636         border-bottom: 1px solid #cccccc;
1637     }
1638     .field label {
1639         font-weight: bold;
1640     }
1641     .submit {
1642         clear:left;
1643         text-align: right;
1644     }
1645     #pluginslist {
1646         margin: 0px; padding: 0px;
1647     }
1648     .plugin {
1649         list-style: none;
1650         display: block;
1651         border: 1px solid #888888;
1652         padding: 1em;
1653         margin-bottom: 5px;
1654         clear: left;
1655         desc {
1656             margin-left: 2.5em;
1657         }
1658     }
1659     .toggleplugin {
1660         float:left;
1661         margin-right: 1em;
1662     }
1663     table {
1664         width:100%;
1665         border-bottom: 1px solid #000000;
1666         margin: 5px 0px;
1667         th {
1668             text-align: left;
1669         }
1670         td .icon {
1671             float: left;
1672         }
1673         tr:hover {
1674             background-color: #bbc7d7;
1675         }
1676     }
1677     table#users img {
1678             width: 16px; height: 16px;
1679     }
1680     .selectall { text-align: right; }
1681 }
1682
1683 /* edit buttons for comments */
1684
1685 .icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
1686 .comment-edit-bb {
1687         list-style: none;
1688         display: none;
1689         margin: 0px;
1690         padding: 0px;
1691         width: 75%;
1692 }
1693 .comment-edit-bb > li {
1694         display: inline-block;
1695         margin: 10px 10px 0 0;
1696         visibility: none;
1697 }
1698
1699 .editicon {
1700         display: inline-block;
1701         width: 16px;
1702         height: 16px;
1703         background-image: url(icons/bbedit.png);
1704         text-decoration: none;
1705         :hover {background-color: #ccc;}
1706 }
1707 .boldbb { background-position: 0px 0px; }
1708 .boldbb:hover { background-position: 0px -16px; }
1709 .italicbb { background-position: -16px 0px; }
1710 .italicbb:hover { background-position: -16px -16px; }
1711 .underlinebb { background-position: -32px 0px; }
1712 .underlinebb:hover { background-position: -32px -16px; }
1713 .quotebb { background-position: -48px 0px; }
1714 .quotebb:hover { background-position: -48px -16px; }
1715 .codebb { background-position: -64px 0px; }
1716 .codebb:hover { background-position: -64px -16px; }
1717 .imagebb { background-position: -80px 0px; }
1718 .imagebb:hover { background-position: -80px -16px; }
1719 .urlbb { background-position: -96px 0px; }
1720 .urlbb:hover { background-position: -96px -16px; }
1721 .videobb { background-position: -112px 0px; }
1722 .videobb:hover { background-position: -112px -16px; }
1723
1724
1725 /** range input css **/
1726 /* slider root element */
1727 .slider {
1728         height:2px;
1729         position:relative;
1730         cursor:pointer;
1731         border:1px solid #333;
1732         width:200px;
1733         margin:10px 0px 10px 0px;
1734             float: left;
1735 }
1736
1737 /* progress bar (enabled with progress: true) */
1738 .progress {
1739         height:9px;
1740         background-color:#C5FF00;
1741         display:none;
1742         opacity:0.6;
1743 }
1744
1745 /* drag handle */
1746 .handle {
1747         background-color:#ccc;
1748         height:16px;
1749         width:8px;
1750         top:-8px;
1751         position:absolute;
1752         display:block;
1753         margin-top:1px;
1754         border:1px solid #000;
1755         cursor:move;
1756             .roundbottom();
1757             .shadow();
1758 }
1759
1760 /* the input field */
1761 .range {
1762         width: 20px!important;
1763         font-size: 8pt;
1764         margin-left: 10px;
1765         border: 0px;
1766         color: @FieldHelpColor;
1767 }
1768
1769 /* buttons for the event view */
1770 .plink-event-link {
1771         float: left;
1772         margin-left: 2px;
1773 }
1774
1775 /* upload/select popup */
1776 .fbrowser {
1777         overflow: auto;
1778         position: absolute;
1779         top: 0px;
1780         width: 100%;
1781         height: 100%;
1782 }
1783 .fbrowser .path {
1784         background-color: @NavbarBackground;
1785         a {     padding: 5px; margin: 0px 2px; display: inline-block; }
1786         a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none;  }
1787 }
1788 .fbrowser .folders ul { list-style: url("icons/folder.png"); padding-left: 22px;}
1789 .fbrowser .list { padding: 10px; }
1790 .fbrowser.image .photo-album-image-wrapper { width: 48px; height: 48px; }
1791 .fbrowser.image a img { width: auto; height: 48px; }
1792 .fbrowser.image a p { display: none;}
1793 .fbrowser.file .photo-album-image-wrapper { float:none;  white-space: nowrap; width: 100%; height: auto; }
1794 .fbrowser.file img { display: inline; width: 16px; height: 16px}
1795 .fbrowser.file p  { display: inline; white-space: nowrap; }
1796
1797 .fbrowser .upload { clear: both; padding-top: 1em;}
1798