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