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