]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
quattro post preview, style contacts pages, style for "shiny" class, fix contacts...
[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: idden;        height: auto;
313         }
314         /*.contact-block-div { width:60px; height: 60px; }*/
315         .contact-block-link {
316                 float: left;
317                 margin: 0px 2px 2px 0px;
318                 img { widht: 48px; height: 48px; }
319         }
320 }
321 /* mail view */
322 .mail-conv-sender,
323 .mail-conv-detail {
324         float: left;
325 }
326 .mail-conv-detail {
327         margin-left: 20px;
328         width: 500px;
329 }
330
331 .mail-conv-subject {
332     font-size: 1.4em;
333     margin: 10px 0;
334 }
335
336 .mail-conv-outside-wrapper-end {
337         clear: both;
338 }
339
340 .mail-conv-outside-wrapper {
341         margin-top: 30px;
342 }
343
344 .mail-conv-delete-wrapper {
345         float: right;
346         margin-right: 30px;
347         margin-top: 15px;
348 }
349 .mail-conv-break {
350         clear: both;
351 }
352
353 .mail-conv-delete-icon {
354         border: none;
355 }
356
357 /* group member */
358 #contact-edit-drop-link,
359 .mail-list-delete-wrapper,
360 .group-delete-wrapper {
361         float: right;
362         margin-right: 50px;
363         .drophide {
364             background-image: url('../../../images/icons/22/delete.png');
365             display: block; width: 22px; height: 22px;
366             opacity: 0.3;
367             position: relative;
368             top: -50px;
369         }
370         .drop {
371             background-image: url('../../../images/icons/22/delete.png');
372             display: block; width: 22px; height: 22px;
373             position: relative;
374             top: -50px;
375         }
376 }
377 /*
378 #group-members {
379         margin-top: 20px;
380         padding: 10px;
381         height: 250px;
382         overflow: auto;
383         border: 1px solid #ddd;
384 }
385 #group-members-end {
386         clear: both;
387 }
388 #group-all-contacts {
389         padding: 10px;
390         height: 450px;
391         overflow: auto;
392         border: 1px solid #ddd;
393 }
394 #group-all-contacts-end {
395         clear: both;
396         margin-bottom: 10px;
397 }
398 .contact-block-div {
399         float: left;
400         width: 60px;
401         height: 60px;
402 }*/
403  
404 /* widget */
405 .widget {
406         margin-bottom: 2em;
407         
408         h3 { padding: 0px; margin: 2px;}
409         .action { .opaque(0.1); }
410         input.action { .opaque(0.5); }
411         &:hover .title .action { .opaque(1); }
412         .tool:hover .action { .opaque(1); }
413         .tool:hover .action.ticked { .opaque(1); }
414
415         ul { padding: 0px;}
416         ul li {padding-left: 16px; min-height: 16px; list-style: none; }
417         
418         .tool.selected {
419                 background: url('../../../images/selected.png') no-repeat left center;
420         }
421         
422         /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
423         .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
424         
425 }
426
427 /* widget: search */
428 #add-search-popup {
429         width: 200px;
430         top: 18px;
431 }
432
433
434 /* section */
435 section { 
436         display: table-cell;
437         vertical-align: top;
438         width: 800px;
439         padding:0px 20px 0px 10px;
440 }
441
442 /* wall item */
443 .tread-wrapper { 
444         background-color: @ThreadBackgroundColor;
445         position: relative;
446         padding: 10px;
447         margin-bottom: 20px;
448         width: 780px;
449 }
450 .wall-item-decor { position: absolute; left: 790px; top: -10px;  width: 16px;}
451 .unstarred { display: none; }
452
453 .wall-item-container {
454         display: table;
455         width: 780px;
456         
457         .wall-item-item,
458         .wall-item-bottom { display: table-row; }
459         
460         .wall-item-bottom { .opaque(0.5); }
461         &:hover .wall-item-bottom { .opaque(1); }
462         .wall-item-info {
463                 display: table-cell;
464                 vertical-align: top;
465                 text-align: left;
466                 width: 60px;
467                 
468         } 
469         .wall-item-location {
470                 word-wrap: break-word;
471                 width: 50px;
472         }
473         .wall-item-content {
474                 display: table-cell;
475                 font-size: 12px;
476                 max-width: 720px;
477                 word-wrap: break-word;
478         }
479         .wall-item-content img { max-width: 710px; }
480         .wall-item-links,
481         .wall-item-actions { 
482                 display: table-cell; 
483                 vertical-align: middle; 
484                 
485                 .icon {
486                         .opaque(0.5);
487                 }
488                 .icon:hover  {
489                         .opaque(1.0);
490                 }               
491         }
492         
493         .wall-item-ago { padding-right: 40px; }
494         .wall-item-name { font-weight: bold; }
495         
496         .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; }
497         .wall-item-actions-social { float: left; margin-top: 0.5em;
498                 a { margin-right: 3em; }
499          }
500         .wall-item-actions-tools { float: right; width: 15%; 
501                 a { float: right; }
502                 input { float: right; }
503         }
504         
505 }
506
507
508 .wall-item-container.comment {
509         /*margin-top: 50px;*/
510         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
511                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
512         }       
513         .contact-photo-menu-button {
514                 top: 15px !important;
515                 left: 15px !important;
516         }
517         .wall-item-links { padding-left: 12px; }
518 }
519
520 .wall-item-comment-wrapper {
521         margin: 30px 2em 2em 60px;
522         .comment-edit-photo { display: none; }
523         textarea {      
524                 height: 1em; width: 100%; font-size: 10px;
525                 color: @CommentBoxEmptyColor;
526                 border: 1px solid @CommentBoxEmptyBorderColor;
527                 padding:0.3em;
528         }
529         .comment-edit-text-full {
530                 font-size: 14px;
531                 height: 4em;
532                 color: @CommentBoxFullColor;
533                 border: 1px solid @CommentBoxFullBorderColor;
534         }
535 }
536
537 .comment-edit-preview {
538         width: 710px;
539         border: 1px solid @Grey5;
540         margin-top: 10px;
541         
542         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
543                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
544         }       
545         .contact-photo-menu-button {
546                 top: 15px !important;
547                 left: 15px !important;
548         }
549         .wall-item-links { padding-left: 12px; }
550
551         .wall-item-container { width: 700px; }
552         .tread-wrapper { width: 700px; padding: 0; margin: 10px 0;}
553
554
555 }
556
557 .shiny { border-right:10px solid @ShinyBorderColor; }
558 #jot-preview-content .tread-wrapper { background-color: @JotPreviewBackgroundColor; }
559
560
561 .wall-item-tags { padding-top: 5px; }
562 .tag {
563         background: url("../../../images/tag_b.png") no-repeat center left;
564         color: @TagColor;
565         padding-left: 3px;
566         a {
567                 padding-right: 8px;
568                 background: url("../../../images/tag.png") no-repeat center right;
569                 color: @TagColor;
570         }
571 }
572
573 .wwto { 
574         position: absolute !important; 
575         width: 25px; height: 25px; 
576     background: #FFFFFF;
577     border: 2px solid @Metalic3;
578     height: 25px;
579     width: 25px;
580     overflow: hidden;
581     padding: 1px;
582     position: absolute !important;
583     top: 40px;
584     left: 30px;
585     
586     .shadow(0px, 0px)
587 }
588 .wwto .contact-photo { width: 25px; height: 25px; }
589
590
591 #pause {
592  position: fixed;
593  bottom: 5px;
594  right: 5px;
595 }
596
597
598 .contact-photo-wrapper { position: relative; }
599 .contact-photo { 
600         width: 48px; height: 48px;
601         img { width: 48px; height: 48px; }
602         overflow: hidden;
603         display: block;
604  }              
605 .contact-photo-menu-button {
606         display: none;
607         position: absolute;
608         left: -2px;
609         top: 31px;
610 }
611
612 .contact-wrapper {
613         float: left;
614         width: 300px;
615         height: 90px;
616         padding-right: 10px;
617         margin: 0 10px 10px 0px;
618         .contact-photo-wrapper { 
619                 float: left; 
620                 margin-right: 10px;
621         }
622         .contact-photo { 
623                 width: 80px; height: 80px;
624                 img { width: 80px; height: 80px; }
625         }
626         .contact-photo-menu-button {
627                 left: 0px;
628                 top: 63px;
629         }       
630 }
631 .directory-item {
632         float: left;
633         width: 200px;
634         height: 200px;
635         .contact-photo { 
636                 width: 175px; height: 175px;
637                 img { width: 175px; height: 175px; }
638         }
639 }
640 .contact-name { font-weight: bold; padding-top: 15px; }
641 .contact-details { 
642         color: @Grey3; white-space: nowrap;
643         overflow: hidden;
644         text-overflow: ellipsis;
645 }
646
647 /* editor */
648 .jothidden { display: none; }
649 #jot {
650
651         width: 100%;
652         margin: 0px 2em 20px 0px;
653         
654         
655         .profile-jot-text {
656                 height: 1em; width: 99%; font-size: 10px;
657                 color: @CommentBoxEmptyColor;
658                 border: 1px solid @CommentBoxEmptyBorderColor;
659                 padding:0.3em;
660         }
661
662         #jot-tools {
663                 margin: 0px; padding: 0px;
664                 height: 40px; overflow: none;
665                 width: 800px;
666                 background-color: @JotToolsBackgroundColor;
667                 border-bottom: 2px solid @JotToolsBorderColor;
668                 li {
669                         list-style: none;
670                         float: left;
671                         width: 80px;
672                         height: 40px;
673                         border-bottom: 2px solid @JotToolsBorderColor;
674                         a {
675                                 display: block;
676                                 color: @JotToolsText;
677                                 width: 100%;
678                                 height:40px;
679                                 text-align: center;
680                                 line-height: 40px;
681                                 overflow: hidden;
682                         }
683                 }
684                 li:hover {
685                         background-color: @JotToolsOverBackgroundColor;
686                         border-bottom: 2px solid @JotToolsOverBorderColor;
687                 }
688                 li.perms {
689                         float: right;
690                         width: 40px;
691                         a.unlock {
692                                 width: 30px;
693                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
694                                 background-color: @JotPermissionUnlockBackgroundColor;
695                         }
696                         a.lock {
697                                 width: 30px;
698                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
699                                 background-color: @JotPermissionLockBackgroundColor;
700                         }
701                         
702                 }
703                 li.submit {
704                         float: right;
705                         background-color: @JotSubmitBackgroundColor;
706                         border-bottom: 2px solid @JotSubmitBackgroundColor;
707                         border-right: 1px solid @Grey4;
708                         border-left: 1px solid @Grey4;
709                         input {
710                                 border: 0px; margin: 0px; padding: 0px;
711                                 background-color: @JotSubmitBackgroundColor;
712                                 color: @JotSubmitText;
713                                 width: 80px; height: 40px;
714                                 line-height: 40px;
715                         }
716                         input:hover {
717                                 background-color: @JotSubmitOverBackgroundColor;
718                                 color: @JotSubmitOverText;
719                         }
720                 }
721                 li.loading {
722                         float: right;
723                         background-color: @JotLoadingBackgroundColor;
724                         width:  20px;
725                         vertical-align: center;
726                         text-align: center;
727                         img { margin-top: 10px; }
728                         border-top: 2px solid @JotToolsBorderColor;
729                         height: 38px;
730                 }
731         }
732
733         #jot-title {
734                 border: 0px;
735                 margin: 0px;
736                 height: 20px;
737                 width: 700px;
738                 font-weight: bold;
739                 border: 1px solid @BodyBackground;
740
741                 &:-webkit-input-placeholder {
742                         font-weight: normal;
743                 }
744
745                 &:-moz-placeholder {
746                         font-weight: normal;
747                 }               
748         
749                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
750                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
751         }
752         
753         #character-counter {
754                 width: 80px;
755                 float: right;
756                 text-align: right;
757                 height: 20px;
758                 line-height: 20px;
759                 padding-right: 20px;
760         }
761
762 }
763
764
765 /** buttons **/
766 /*input[type="submit"] {
767         border: 0px;
768     background-color: @ButtonBackgroundColor;
769     color: @ButtonColor;
770     padding: 0px 10px;
771         .rounded(5px);
772     height: 18px;
773 }*/
774
775
776 /** acl **/
777 #photo-edit-perms-select,
778 #photos-upload-permissions-wrapper,
779 #profile-jot-acl-wrapper{
780         display:block!important;
781 }
782
783
784
785 #acl-wrapper {
786         width: 690px;
787         float:left;
788 }
789 #acl-search {
790         float:right;
791         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
792         padding-right:20px;
793 }
794 #acl-showall {
795         float: left;
796         display: block;
797         width: auto;
798         height: 18px;
799         background-color: #cccccc;
800         background-image: url("../../../images/show_all_off.png");
801         background-position: 7px 7px;
802         background-repeat: no-repeat;
803         padding: 7px 5px 0px 30px;
804         color: #999999;
805         .rounded(5px);
806 }
807 #acl-showall.selected {
808         color: #000000;
809         background-color: #ff9900;
810         background-image: url("../../../images/show_all_on.png");
811 }
812
813 #acl-list {
814         height: 210px;
815         border: 1px solid #cccccc;
816         clear: both;
817         margin-top: 30px;
818         overflow: auto;
819 }
820 #acl-list-content {
821         
822 }
823 .acl-list-item {
824         display: block;
825         width: 150px;
826         height: 30px;
827         border: 1px solid #cccccc;
828         margin: 5px;
829         float: left;
830 }
831 .acl-list-item img{
832         width:22px;
833         height: 22px;
834         float: left;
835         margin: 4px;
836 }
837 .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;}
838 .acl-list-item a { 
839         font-size: 8px;
840         display: block;
841         width: 40px;
842         height: 10px;
843         float: left;
844         color: #999999;
845         background-color: #cccccc;
846         background-position: 3px 3px;
847         background-repeat: no-repeat;
848         margin-right: 5px;
849         -webkit-border-radius: 2px ;
850         -moz-border-radius: 2px;
851         border-radius: 2px;
852         padding-left: 15px;
853 }
854 #acl-wrapper a:hover {
855         text-decoration: none;
856         color:#000000;
857 }
858 .acl-button-show { background-image: url("../../../images/show_off.png"); }
859 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
860
861 .acl-button-show.selected {
862         color: #000000;
863         background-color: #9ade00;
864         background-image: url("../../../images/show_on.png");
865 }
866 .acl-button-hide.selected {
867         color: #000000;
868         background-color: #ff4141;
869         background-image: url("../../../images/hide_on.png");
870 }
871 .acl-list-item.groupshow { border-color: #9ade00; }
872 .acl-list-item.grouphide { border-color: #ff4141; }
873 /** /acl **/
874
875 /** tab buttons **/
876 ul.tabs {
877     list-style-type: none;
878     padding-bottom: 10px;
879
880     li {
881         float: left;
882         margin-left: 20px;
883         
884         .active {
885                         border-bottom: 1px solid @LinkVisited;
886         }
887     }
888     
889 }
890
891
892 /**
893  * Form fields
894  */
895 .field {
896         margin-bottom: 10px;
897         padding-bottom: 10px;
898         overflow: auto;
899         width: 100%;
900
901
902         label {
903                 float: left;
904                 width: 200px;
905         }
906
907         input,
908         textarea {
909                 width: 400px;
910         }
911         textarea { height: 100px; }
912         .field_help {
913                 display: block;
914                 margin-left: 200px;
915                 color: #666666;
916                 
917         }
918
919
920         .onoff {
921                 float: left;
922                 width: 80px;
923         }
924         .onoff a {
925                 display: block;
926                 border:1px solid #666666;
927                 background-image:url("../../../images/onoff.jpg");
928                 background-repeat: no-repeat;
929                 padding: 4px 2px 2px 2px;
930                 height: 16px;
931                 text-decoration: none;
932         }
933         .onoff .off {
934                 border-color:#666666;
935                 padding-left: 40px;
936                 background-position: left center;
937                 background-color: #cccccc;
938                 color: #666666;
939                 text-align: right;
940         }
941         .onoff .on {
942                 border-color:#204A87;
943                 padding-right: 40px;
944                 background-position: right center;
945                 background-color: #D7E3F1;
946                 color: #204A87;
947                 text-align: left;
948         }
949         .hidden { display: none!important; }
950
951         &.radio .field_help { margin-left: 0px; }
952 }
953
954 #profile-edit-links li {
955         list-style: none;
956         margin-top: 10px;
957 }
958
959 #profile-edit-default-desc {
960         color: #FF0000;
961         border: 1px solid #FF8888;
962         background-color: #FFEEEE;
963         padding: 7px;
964 }
965 #profile-edit-profile-name-label,
966 #profile-edit-name-label,
967 #profile-edit-pdesc-label,
968 #profile-edit-gender-label,
969 #profile-edit-dob-label,
970 #profile-edit-address-label,
971 #profile-edit-locality-label,
972 #profile-edit-region-label,
973 #profile-edit-postal-code-label,
974 #profile-edit-country-name-label,
975 #profile-edit-marital-label,
976 #profile-edit-with-label,
977 #profile-edit-sexual-label,
978 #profile-edit-politic-label,
979 #profile-edit-religion-label,
980 #profile-edit-pubkeywords-label,
981 #profile-edit-prvkeywords-label,
982 #profile-edit-gender-select,
983 #profile-edit-homepage-label {
984         float: left;
985         width: 175px;
986         padding-top: 7px;
987 }
988 #profile-edit-profile-name,
989 #profile-edit-name,
990 #gender-select, 
991 #profile-edit-pdesc,
992 #profile-edit-gender,
993 #profile-edit-dob,
994 #profile-edit-address,
995 #profile-edit-locality,
996 #profile-edit-region,
997 #profile-edit-postal-code,
998 #profile-edit-country-name,
999 #profile-edit-marital,
1000 #profile-edit-with,
1001 #profile-edit-sexual,
1002 #profile-edit-politic,
1003 #profile-edit-religion,
1004 #profile-edit-pubkeywords,
1005 #profile-edit-prvkeywords,
1006 #profile-edit-homepage {
1007     margin-top: 5px;
1008 }
1009
1010 /* oauth */
1011 .oauthapp {
1012         height: auto; overflow: auto;
1013         border-bottom: 2px solid #cccccc;
1014         padding-bottom: 1em;
1015         margin-bottom: 1em;     
1016 }
1017 .oauthapp img {
1018         float: left;
1019         width: 48px; height: 48px;
1020         margin: 10px;
1021 }
1022 .oauthapp img.noicon {
1023         background-image: url("../../../images/icons/48/plugin.png");
1024         background-position: center center;
1025         background-repeat: no-repeat;
1026 }
1027 .oauthapp a {
1028         float: left;
1029 }
1030
1031 /* contacts */
1032 .contact-entry-wrapper {
1033         width: 50px; float: left;
1034 }
1035
1036 /* photo */
1037 .lframe {
1038         float: left;
1039         margin: 0px 10px 10px 0px;
1040 }
1041
1042 /* profile match wrapper */
1043 .profile-match-wrapper {
1044         float: left;
1045         width: 90px;
1046         height: 90px;
1047         margin-bottom: 20px;
1048         .contact-photo { 
1049                 width: 80px; height: 80px;
1050                 img { width: 80px; height: 80px; }
1051         }
1052         .contact-photo-menu-button {
1053                 left: 0px;
1054                 top: 63px;
1055         }       
1056 }
1057
1058
1059 /* page footer */
1060 footer { height: 100px; display: table-row; }
1061
1062 .pager {
1063     margin-top: 25px;
1064     clear: both;
1065 }
1066