]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
fca65c90763e6cc97d6e69ca3852399f5b9b9656
[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         -webkit-transition: all 0.2s ease-in-out;
31         -moz-transition: all 0.2s ease-in-out;
32         -o-transition: all 0.2s ease-in-out;
33         -ms-transition: all 0.2s ease-in-out;
34         transition: all 0.2s ease-in-out;
35 }
36
37
38 a, a:link { color: @Link; text-decoration: none; }
39 a:visited { color: @LinkVisited; text-decoration: none; }
40 a:hover {color: @LinkHover; text-decoration: underline; }
41
42 .left { float: left; }
43 .right { float: right; }
44 .hidden { display: none; }
45 .clear { clear: both; }
46
47 .fakelink { color: @Link; text-decoration: none; cursor:pointer; }
48 .fakelink:hover { color: @LinkHover; text-decoration: underline; }
49
50 code {
51         font-family: Courier, monospace;
52         white-space: pre;
53         display: block;
54         overflow: auto;
55         border: 1px solid #444;
56         background: #EEE;
57         color: #444;
58         padding: 10px;
59         margin-top: 20px; 
60 }
61
62 #panel {
63         position: absolute;
64         width: 10em;
65         background: @MenuBg;
66         color: @Menu;
67         margin: 0px;
68         padding: 1em;
69         list-style: none;
70         border: 3px solid @MenuBorder;
71         z-index: 100000;
72         
73         .shadow();      
74 }
75
76
77
78 /* tool */
79
80 .tool {
81         height: auto; overflow: auto;
82         .label { float: left;}
83         .action { float: right; }
84 }
85
86
87
88
89 /* popup notifications */
90 div.jGrowl div.notice {
91         background: @NoticeBackgroundColor url("../../../images/icons/48/notice.png") no-repeat 5px center;
92         color:  @NoticeColor;
93         padding-left: 58px;
94 }
95 div.jGrowl div.info {
96         background: @InfoBackgroundColor url("../../../images/icons/48/info.png") no-repeat 5px center;
97         color:  @InfoColor;
98         padding-left: 58px;
99 }
100
101
102
103 /* header */
104 header {
105         position: fixed; left: 43%; right: 43%; top: 0px;
106         margin: 0px; padding: 0px;
107         /*width: 100%; height: 12px; */
108         z-index: 110;
109         color: @Grey1;
110         #site-location {
111                 display: none;
112         }
113         
114         #banner {
115                 overflow: hidden;
116                 text-align: center;
117                 width: 100%;
118                 a, a:active, a:visited, a:link, a:hover { color: @Grey1; text-decoration: none; outline: none; vertical-align: bottom; }
119                 #logo-img { height: 22px; margin-top:5px;}
120                 #logo-text { font-size: 22px }
121         }
122 }
123 /* nav */
124 nav { 
125         width: 100%; height: 32px;
126         position: fixed; left: 0px; top: 0px;
127         padding: 0px;
128         background-color: @NavbarBackground;
129         color: @Grey1;
130         z-index: 100;
131         .shadow(0px, 0px);
132
133                 a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none;  }
134
135                 ul {
136                         margin: 0px;
137                         padding: 0px 20px;
138                         li { 
139                                 list-style: none; 
140                                 margin: 0px; padding: 0px;
141                                 float: left;
142                                 .menu-popup{ left: 0px; right: auto; }
143                         }
144                         
145                 }
146
147                 .nav-menu-icon {
148                         position: relative;
149                         height: 22px;
150                         padding: 5px;
151                         margin: 0px 10px;
152                         .roundtop();
153                         
154                         &.selected {
155                                 background-color: @NavbarSelectedBg;
156                         }
157                         
158                                 img { width: 22px; height: 22px; }
159                                 .nav-notify { top: 3px; }
160                 }
161
162                 .nav-menu {
163                         position: relative;
164                         height: 16px;
165                         padding: 5px;
166                         margin: 3px 15px 0px;
167                         font-size: 14px;
168                         border-bottom: 3px solid @NavbarBackground;
169                         &.selected {
170                                 border-bottom: 3px solid @NavbarSelectedBorder;
171                         }
172                         
173                 }
174
175                 .nav-notify {
176                         display: none;
177                         position: absolute;
178                         background-color: @NavbarNotifBg;
179                         .rounded();
180                         font-size: 10px;
181                         padding: 1px 3px;
182                         top: 0px;
183                         right: -10px;
184                         min-width: 15px;
185                         text-align: right;
186                         
187                                 &.show{ display: block; }
188                 }
189                 
190                 
191                 #nav-help-link,
192                 #nav-search-link,
193                 #nav-directory-link,
194                 #nav-apps-link,
195                 #nav-site-linkmenu { 
196                         float: right;
197                         .menu-popup{ right: 0px; left: auto; }
198                 }
199         
200                 #nav-notifications-linkmenu.on .icon.s22.notify,
201                 #nav-notifications-linkmenu.selected .icon.s22.notify { background-image: url("../../../images/icons/22/notify_on.png") }
202                 #nav-apps-link.selected { background-color: @NavbarSelectedBg; }
203 }
204
205
206 ul.menu-popup {
207         position: absolute;
208         display: none;
209         width: 10em;
210         background: @MenuBg;
211         color: @Menu;
212         margin: 0px;
213         padding: 0px;
214         list-style: none;
215         border: 3px solid @MenuBorder;
216         z-index: 100000;
217         
218         .shadow();
219         
220                 a { display: block; color: @MenuItem; padding: 5px 10px; text-decoration: none;}
221                 a:hover { background-color: @MenuItemHoverBg; }
222                 .menu-sep  { border-top: 1px solid @MenuItemSeparator; }
223                 li { float: none;  overflow: auto; height: auto; display: block; }
224                 li img { float: left; width: 16px; height: 16px; padding-right: 5px;}
225                 .empty {
226                         padding: 5px;
227                         text-align: center;
228                         color: @MenuEmpty;
229                 }
230                 
231 }
232
233 /* autocomplete popup */
234 .acpopup {
235         max-height:150px;
236         background-color:@MenuBg;
237         color: @Menu;
238         border:1px solid #MenuBorder;
239         overflow:auto;
240         z-index:100000;
241         .shadow();
242 }
243 .acpopupitem {
244         color: @MenuItem; padding: 4px;
245         clear:left;
246         img {
247                 float: left;
248                 margin-right: 4px;
249         }
250         &.selected{
251                 background-color: @MenuItemHoverBg;
252         }
253 }
254
255
256 #nav-notifications-menu {
257         width: 400px; max-height: 550px;
258         overflow: auto;
259         img { float: left; margin-right: 5px; }
260         .contactname { font-weight: bold; }
261         .notif-when { font-size: 10px; color: @MenuItemDetail; display: block; }
262 }
263
264
265
266
267 /* aside */
268 aside { 
269         display: table-cell;
270         vertical-align: top;
271         width: 200px;
272         padding:0px 10px 0px 20px;
273         border-right: 1px solid @AsideBorder;
274
275         .vcard {
276                 .fn { font-size: 16px; font-weight: bold; margin-bottom: 5px; }
277                 .title { margin-bottom: 5px; }
278                 dl { height: auto; overflow: auto; }
279                 dt {float: left; margin-left: 0px; width: 35%; text-align: right; color: @VCardLabelColor; }
280                 dd {float: left; margin-left: 4px; width: 60%;}
281         
282         }
283
284         #profile-extra-links {
285                 ul { padding: 0px; margin: 0px; }
286                 li { padding: 0px; margin: 0px; list-style: none; }
287         }
288
289         #dfrn-request-link {
290                 display: block;
291                 .rounded();
292                 color: @AsideConnect;
293                 background: @AsideConnectBg url('../../../images/connect-bg.png') no-repeat left center;
294                 font-weight: bold;
295                 text-transform:uppercase;
296                 padding: 4px 2px 2px 35px;
297                 
298                 &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
299         }
300
301         #profiles-menu { width: 20em; }
302
303
304 }
305
306 #contact-block {
307         overflow: auto; height: auto;
308         .contact-block-h4 { float: left; margin: 5px 0px; }
309         .allcontact-link { float: right; margin: 5px 0px; }
310         .contact-block-content {
311                 clear: both;
312                 overflow: hidden;
313                 height: auto;
314         }
315         /*.contact-block-div { width:60px; height: 60px; }*/
316         .contact-block-link {
317                 float: left;
318                 margin: 0px 2px 2px 0px;
319                 img { width: 48px; height: 48px; }
320         }
321 }
322 /* mail view */
323 .mail-conv-sender,
324 .mail-conv-detail {
325         float: left;
326 }
327 .mail-conv-detail {
328         margin-left: 20px;
329         width: 500px;
330 }
331
332 .mail-conv-subject {
333     font-size: 1.4em;
334     margin: 10px 0;
335 }
336
337 .mail-conv-outside-wrapper-end {
338         clear: both;
339 }
340
341 .mail-conv-outside-wrapper {
342         margin-top: 30px;
343 }
344
345 .mail-conv-delete-wrapper {
346         float: right;
347         margin-right: 30px;
348         margin-top: 15px;
349 }
350 .mail-conv-break {
351         clear: both;
352 }
353
354 .mail-conv-delete-icon {
355         border: none;
356 }
357
358 /* group member */
359 #contact-edit-drop-link,
360 .mail-list-delete-wrapper,
361 .group-delete-wrapper {
362         float: right;
363         margin-right: 50px;
364         .drophide {
365             background-image: url('../../../images/icons/22/delete.png');
366             display: block; width: 22px; height: 22px;
367             opacity: 0.3;
368             position: relative;
369             top: -50px;
370         }
371         .drop {
372             background-image: url('../../../images/icons/22/delete.png');
373             display: block; width: 22px; height: 22px;
374             position: relative;
375             top: -50px;
376         }
377 }
378 /*
379 #group-members {
380         margin-top: 20px;
381         padding: 10px;
382         height: 250px;
383         overflow: auto;
384         border: 1px solid #ddd;
385 }
386 #group-members-end {
387         clear: both;
388 }
389 #group-all-contacts {
390         padding: 10px;
391         height: 450px;
392         overflow: auto;
393         border: 1px solid #ddd;
394 }
395 #group-all-contacts-end {
396         clear: both;
397         margin-bottom: 10px;
398 }
399 .contact-block-div {
400         float: left;
401         width: 60px;
402         height: 60px;
403 }*/
404  
405 /* widget */
406 .widget {
407         margin-bottom: 2em;
408         
409         h3 { padding: 0px; margin: 2px;}
410         .action { .opaque(0.1); }
411         input.action { .opaque(0.5); }
412         &:hover .title .action { .opaque(1); }
413         .tool:hover .action { .opaque(1); }
414         .tool:hover .action.ticked { .opaque(1); }
415
416         ul { padding: 0px;}
417         ul li {padding-left: 16px; min-height: 16px; list-style: none; }
418         
419         .tool.selected {
420                 background: url('../../../images/selected.png') no-repeat left center;
421         }
422         
423         /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
424         .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
425         
426 }
427
428 /* widget: search */
429 #add-search-popup {
430         width: 200px;
431         top: 18px;
432 }
433
434
435 /* section */
436 section { 
437         display: table-cell;
438         vertical-align: top;
439         width: 800px;
440         padding:0px 20px 0px 10px;
441 }
442
443 /* wall item */
444 .tread-wrapper { 
445         background-color: @ThreadBackgroundColor;
446         position: relative;
447         padding: 10px;
448         margin-bottom: 20px;
449         width: 780px;
450 }
451 .wall-item-decor { position: absolute; left: 97%; top: -10px;  width: 16px;}
452 .unstarred { display: none; }
453
454 .wall-item-container {
455         display: table;
456         width: 780px;
457         
458         .wall-item-item,
459         .wall-item-bottom { display: table-row; }
460         
461         .wall-item-bottom { .opaque(0.5); }
462         &:hover .wall-item-bottom { .opaque(1); }
463         .wall-item-info {
464                 display: table-cell;
465                 vertical-align: top;
466                 text-align: left;
467                 width: 60px;
468                 
469         } 
470         .wall-item-location {
471                 word-wrap: break-word;
472                 width: 50px;
473         }
474         .wall-item-content {
475                 display: table-cell;
476                 font-size: 12px;
477                 max-width: 720px;
478                 word-wrap: break-word;
479         }
480         .wall-item-content img { max-width: 710px; }
481         .wall-item-links,
482         .wall-item-actions { 
483                 display: table-cell; 
484                 vertical-align: middle; 
485                 
486                 .icon {
487                         .opaque(0.5);
488                 }
489                 .icon:hover  {
490                         .opaque(1.0);
491                 }               
492         }
493         
494         .wall-item-ago { padding-right: 40px; }
495         .wall-item-name { font-weight: bold; }
496         
497         .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; }
498         .wall-item-actions-social { float: left; margin-top: 0.5em;
499                 a { margin-right: 3em; }
500          }
501         .wall-item-actions-tools { float: right; width: 15%; 
502                 a { float: right; }
503                 input { float: right; }
504         }
505         
506 }
507
508
509 .wall-item-container.comment {
510         /*margin-top: 50px;*/
511         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
512                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
513         }       
514         .contact-photo-menu-button {
515                 top: 15px !important;
516                 left: 15px !important;
517         }
518         .wall-item-links { padding-left: 12px; }
519 }
520
521 .wall-item-comment-wrapper {
522         margin: 30px 2em 2em 60px;
523         .comment-edit-photo { display: none; }
524         textarea {      
525                 height: 1em; width: 100%; font-size: 10px;
526                 color: @CommentBoxEmptyColor;
527                 border: 1px solid @CommentBoxEmptyBorderColor;
528                 padding:0.3em;
529         }
530         .comment-edit-text-full {
531                 font-size: 14px;
532                 height: 4em;
533                 color: @CommentBoxFullColor;
534                 border: 1px solid @CommentBoxFullBorderColor;
535         }
536 }
537
538 .comment-edit-preview {
539         width: 710px;
540         border: 1px solid @Grey5;
541         margin-top: 10px;
542         
543         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
544                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
545         }       
546         .contact-photo-menu-button {
547                 top: 15px !important;
548                 left: 15px !important;
549         }
550         .wall-item-links { padding-left: 12px; }
551
552         .wall-item-container { width: 700px; }
553         .tread-wrapper { width: 700px; padding: 0; margin: 10px 0;}
554
555
556 }
557
558 .shiny { border-right:10px solid @ShinyBorderColor; }
559 #jot-preview-content .tread-wrapper { background-color: @JotPreviewBackgroundColor; }
560
561
562 .wall-item-tags { padding-top: 5px; }
563 .tag {
564         background: url("../../../images/tag_b.png") no-repeat center left;
565         color: @TagColor;
566         padding-left: 3px;
567         a {
568                 padding-right: 8px;
569                 background: url("../../../images/tag.png") no-repeat center right;
570                 color: @TagColor;
571         }
572 }
573 .filesavetags {
574     padding: 3px 0px 3px 0px;
575     opacity: 0.5;
576 }
577
578 .wwto { 
579         position: absolute !important; 
580         width: 25px; height: 25px; 
581     background: #FFFFFF;
582     border: 2px solid @Metalic3;
583     height: 25px;
584     width: 25px;
585     overflow: hidden;
586     padding: 1px;
587     position: absolute !important;
588     top: 40px;
589     left: 30px;
590     
591     .shadow(0px, 0px)
592 }
593 .wwto .contact-photo { width: 25px; height: 25px; }
594
595
596 #pause {
597  position: fixed;
598  bottom: 5px;
599  right: 5px;
600 }
601
602
603 .contact-photo-wrapper { position: relative; }
604 .contact-photo { 
605         width: 48px; height: 48px;
606         img { width: 48px; height: 48px; }
607         overflow: hidden;
608         display: block;
609  }              
610 .contact-photo-menu-button {
611         display: none;
612         position: absolute;
613         left: -2px;
614         top: 31px;
615 }
616
617 .contact-wrapper {
618         float: left;
619         width: 300px;
620         height: 90px;
621         padding-right: 10px;
622         margin: 0 10px 10px 0px;
623         .contact-photo-wrapper { 
624                 float: left; 
625                 margin-right: 10px;
626         }
627         .contact-photo { 
628                 width: 80px; height: 80px;
629                 img { width: 80px; height: 80px; }
630         }
631         .contact-photo-menu-button {
632                 left: 0px;
633                 top: 63px;
634         }       
635 }
636 .directory-item {
637         float: left;
638         width: 200px;
639         height: 200px;
640         .contact-photo { 
641                 width: 175px; height: 175px;
642                 img { width: 175px; height: 175px; }
643         }
644 }
645 .contact-name { font-weight: bold; padding-top: 15px; }
646 .contact-details { 
647         color: @Grey3; white-space: nowrap;
648         overflow: hidden;
649         text-overflow: ellipsis;
650 }
651
652 /* editor */
653 .jothidden { display: none; }
654 #jot {
655
656         width: 100%;
657         margin: 0px 2em 20px 0px;
658         
659         
660         .profile-jot-text {
661                 height: 1em; width: 99%; font-size: 10px;
662                 color: @CommentBoxEmptyColor;
663                 border: 1px solid @CommentBoxEmptyBorderColor;
664                 padding:0.3em;
665         }
666
667         #jot-tools {
668                 margin: 0px; padding: 0px;
669                 height: 40px; overflow: none;
670                 width: 800px;
671                 background-color: @JotToolsBackgroundColor;
672                 border-bottom: 2px solid @JotToolsBorderColor;
673                 li {
674                         list-style: none;
675                         float: left;
676                         width: 80px;
677                         height: 40px;
678                         border-bottom: 2px solid @JotToolsBorderColor;
679                         a {
680                                 display: block;
681                                 color: @JotToolsText;
682                                 width: 100%;
683                                 height:40px;
684                                 text-align: center;
685                                 line-height: 40px;
686                                 overflow: hidden;
687                         }
688                 }
689                 li:hover {
690                         background-color: @JotToolsOverBackgroundColor;
691                         border-bottom: 2px solid @JotToolsOverBorderColor;
692                 }
693                 li.perms {
694                         float: right;
695                         width: 40px;
696                         a.unlock {
697                                 width: 30px;
698                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
699                                 background-color: @JotPermissionUnlockBackgroundColor;
700                         }
701                         a.lock {
702                                 width: 30px;
703                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
704                                 background-color: @JotPermissionLockBackgroundColor;
705                         }
706                         
707                 }
708                 li.submit {
709                         float: right;
710                         background-color: @JotSubmitBackgroundColor;
711                         border-bottom: 2px solid @JotSubmitBackgroundColor;
712                         border-right: 1px solid @Grey4;
713                         border-left: 1px solid @Grey4;
714                         input {
715                                 border: 0px; margin: 0px; padding: 0px;
716                                 background-color: @JotSubmitBackgroundColor;
717                                 color: @JotSubmitText;
718                                 width: 80px; height: 40px;
719                                 line-height: 40px;
720                         }
721                         input:hover {
722                                 background-color: @JotSubmitOverBackgroundColor;
723                                 color: @JotSubmitOverText;
724                         }
725                 }
726                 li.loading {
727                         float: right;
728                         background-color: @JotLoadingBackgroundColor;
729                         width:  20px;
730                         vertical-align: center;
731                         text-align: center;
732                         img { margin-top: 10px; }
733                         border-top: 2px solid @JotToolsBorderColor;
734                         height: 38px;
735                 }
736         }
737
738         #jot-title {
739                 border: 0px;
740                 margin: 0px;
741                 height: 20px;
742                 width: 700px;
743                 font-weight: bold;
744                 border: 1px solid @BodyBackground;
745
746                 &:-webkit-input-placeholder {
747                         font-weight: normal;
748                 }
749
750                 &:-moz-placeholder {
751                         font-weight: normal;
752                 }               
753         
754                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
755                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
756         }
757         
758         #character-counter {
759                 width: 80px;
760                 float: right;
761                 text-align: right;
762                 height: 20px;
763                 line-height: 20px;
764                 padding-right: 20px;
765         }
766
767 }
768
769
770 /** buttons **/
771 /*input[type="submit"] {
772         border: 0px;
773     background-color: @ButtonBackgroundColor;
774     color: @ButtonColor;
775     padding: 0px 10px;
776         .rounded(5px);
777     height: 18px;
778 }*/
779
780
781 /** acl **/
782 #photo-edit-perms-select,
783 #photos-upload-permissions-wrapper,
784 #profile-jot-acl-wrapper{
785         display:block!important;
786 }
787
788
789
790 #acl-wrapper {
791         width: 690px;
792         float:left;
793 }
794 #acl-search {
795         float:right;
796         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
797         padding-right:20px;
798 }
799 #acl-showall {
800         float: left;
801         display: block;
802         width: auto;
803         height: 18px;
804         background-color: #cccccc;
805         background-image: url("../../../images/show_all_off.png");
806         background-position: 7px 7px;
807         background-repeat: no-repeat;
808         padding: 7px 5px 0px 30px;
809         color: #999999;
810         .rounded(5px);
811 }
812 #acl-showall.selected {
813         color: #000000;
814         background-color: #ff9900;
815         background-image: url("../../../images/show_all_on.png");
816 }
817
818 #acl-list {
819         height: 210px;
820         border: 1px solid #cccccc;
821         clear: both;
822         margin-top: 30px;
823         overflow: auto;
824 }
825 #acl-list-content {
826         
827 }
828 .acl-list-item {
829         display: block;
830         width: 150px;
831         height: 30px;
832         border: 1px solid #cccccc;
833         margin: 5px;
834         float: left;
835 }
836 .acl-list-item img{
837         width:22px;
838         height: 22px;
839         float: left;
840         margin: 4px;
841 }
842 .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;}
843 .acl-list-item a { 
844         font-size: 8px;
845         display: block;
846         width: 40px;
847         height: 10px;
848         float: left;
849         color: #999999;
850         background-color: #cccccc;
851         background-position: 3px 3px;
852         background-repeat: no-repeat;
853         margin-right: 5px;
854         -webkit-border-radius: 2px ;
855         -moz-border-radius: 2px;
856         border-radius: 2px;
857         padding-left: 15px;
858 }
859 #acl-wrapper a:hover {
860         text-decoration: none;
861         color:#000000;
862 }
863 .acl-button-show { background-image: url("../../../images/show_off.png"); }
864 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
865
866 .acl-button-show.selected {
867         color: #000000;
868         background-color: #9ade00;
869         background-image: url("../../../images/show_on.png");
870 }
871 .acl-button-hide.selected {
872         color: #000000;
873         background-color: #ff4141;
874         background-image: url("../../../images/hide_on.png");
875 }
876 .acl-list-item.groupshow { border-color: #9ade00; }
877 .acl-list-item.grouphide { border-color: #ff4141; }
878 /** /acl **/
879
880 /** tab buttons **/
881 ul.tabs {
882     list-style-type: none;
883     padding-bottom: 10px;
884
885     li {
886         float: left;
887         margin-left: 20px;
888         
889         .active {
890                         border-bottom: 1px solid @LinkVisited;
891         }
892     }
893     
894 }
895
896
897 /** group editor **/
898 #group-edit-desc { margin-top: 1em; color: @FieldHelpColor; }
899 #group-update-wrapper{
900         height: auto; overflow: auto;
901         #group {
902                 width:300px; 
903                 float:left;
904                 margin-right:20px;
905         }
906         #contacts {
907                 width:300px;
908                 float:left;
909         }
910         #group-separator { display: none; }
911         .contact_list {
912                 height: 300px;
913                 border: 1px solid @MenuBorder;
914                 overflow: auto;
915                 .contact-block-div  {
916                         width: 50px; height: 50px;
917                         float: left;
918                 }
919         }
920 }
921
922 /**
923  * Form fields
924  */
925 .field {
926         margin-bottom: 10px;
927         padding-bottom: 10px;
928         overflow: auto;
929         width: 100%;
930
931
932         label {
933                 float: left;
934                 width: 200px;
935         }
936
937         input,
938         textarea {
939                 width: 400px;
940         }
941         textarea { height: 100px; }
942         .field_help {
943                 display: block;
944                 margin-left: 200px;
945                 color: @FieldHelpColor;
946                 
947         }
948
949
950         .onoff {
951                 float: left;
952                 width: 80px;
953         }
954         .onoff a {
955                 display: block;
956                 border:1px solid #666666;
957                 background-image:url("../../../images/onoff.jpg");
958                 background-repeat: no-repeat;
959                 padding: 4px 2px 2px 2px;
960                 height: 16px;
961                 text-decoration: none;
962         }
963         .onoff .off {
964                 border-color:#666666;
965                 padding-left: 40px;
966                 background-position: left center;
967                 background-color: #cccccc;
968                 color: #666666;
969                 text-align: right;
970         }
971         .onoff .on {
972                 border-color:#204A87;
973                 padding-right: 40px;
974                 background-position: right center;
975                 background-color: #D7E3F1;
976                 color: #204A87;
977                 text-align: left;
978         }
979         .hidden { display: none!important; }
980
981         &.radio .field_help { margin-left: 0px; }
982 }
983
984 #profile-edit-links li {
985         list-style: none;
986         margin-top: 10px;
987 }
988
989 #profile-edit-default-desc {
990         color: #FF0000;
991         border: 1px solid #FF8888;
992         background-color: #FFEEEE;
993         padding: 7px;
994 }
995 #profile-edit-profile-name-label,
996 #profile-edit-name-label,
997 #profile-edit-pdesc-label,
998 #profile-edit-gender-label,
999 #profile-edit-dob-label,
1000 #profile-edit-address-label,
1001 #profile-edit-locality-label,
1002 #profile-edit-region-label,
1003 #profile-edit-postal-code-label,
1004 #profile-edit-country-name-label,
1005 #profile-edit-marital-label,
1006 #profile-edit-with-label,
1007 #profile-edit-sexual-label,
1008 #profile-edit-politic-label,
1009 #profile-edit-religion-label,
1010 #profile-edit-pubkeywords-label,
1011 #profile-edit-prvkeywords-label,
1012 #profile-edit-gender-select,
1013 #profile-edit-homepage-label {
1014         float: left;
1015         width: 175px;
1016         padding-top: 7px;
1017 }
1018 #profile-edit-profile-name,
1019 #profile-edit-name,
1020 #gender-select, 
1021 #profile-edit-pdesc,
1022 #profile-edit-gender,
1023 #profile-edit-dob,
1024 #profile-edit-address,
1025 #profile-edit-locality,
1026 #profile-edit-region,
1027 #profile-edit-postal-code,
1028 #profile-edit-country-name,
1029 #profile-edit-marital,
1030 #profile-edit-with,
1031 #profile-edit-sexual,
1032 #profile-edit-politic,
1033 #profile-edit-religion,
1034 #profile-edit-pubkeywords,
1035 #profile-edit-prvkeywords,
1036 #profile-edit-homepage {
1037     margin-top: 5px;
1038 }
1039
1040 /* oauth */
1041 .oauthapp {
1042         height: auto; overflow: auto;
1043         border-bottom: 2px solid #cccccc;
1044         padding-bottom: 1em;
1045         margin-bottom: 1em;     
1046 }
1047 .oauthapp img {
1048         float: left;
1049         width: 48px; height: 48px;
1050         margin: 10px;
1051 }
1052 .oauthapp img.noicon {
1053         background-image: url("../../../images/icons/48/plugin.png");
1054         background-position: center center;
1055         background-repeat: no-repeat;
1056 }
1057 .oauthapp a {
1058         float: left;
1059 }
1060
1061 /* contacts */
1062 .contact-entry-wrapper {
1063         width: 50px; float: left;
1064 }
1065
1066 /* photo */
1067 .lframe {
1068         float: left;
1069         margin: 0px 10px 10px 0px;
1070 }
1071
1072 /* profile match wrapper */
1073 .profile-match-wrapper {
1074         float: left;
1075         width: 90px;
1076         height: 90px;
1077         margin-bottom: 20px;
1078         .contact-photo { 
1079                 width: 80px; height: 80px;
1080                 img { width: 80px; height: 80px; }
1081         }
1082         .contact-photo-menu-button {
1083                 left: 0px;
1084                 top: 63px;
1085         }       
1086 }
1087
1088
1089 /* page footer */
1090 footer { height: 100px; display: table-row; }
1091
1092 .pager {
1093     margin-top: 25px;
1094     clear: both;
1095 }
1096