]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
merged
[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: 790px; 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
574 .wwto { 
575         position: absolute !important; 
576         width: 25px; height: 25px; 
577     background: #FFFFFF;
578     border: 2px solid @Metalic3;
579     height: 25px;
580     width: 25px;
581     overflow: hidden;
582     padding: 1px;
583     position: absolute !important;
584     top: 40px;
585     left: 30px;
586     
587     .shadow(0px, 0px)
588 }
589 .wwto .contact-photo { width: 25px; height: 25px; }
590
591
592 #pause {
593  position: fixed;
594  bottom: 5px;
595  right: 5px;
596 }
597
598
599 .contact-photo-wrapper { position: relative; }
600 .contact-photo { 
601         width: 48px; height: 48px;
602         img { width: 48px; height: 48px; }
603         overflow: hidden;
604         display: block;
605  }              
606 .contact-photo-menu-button {
607         display: none;
608         position: absolute;
609         left: -2px;
610         top: 31px;
611 }
612
613 .contact-wrapper {
614         float: left;
615         width: 300px;
616         height: 90px;
617         padding-right: 10px;
618         margin: 0 10px 10px 0px;
619         .contact-photo-wrapper { 
620                 float: left; 
621                 margin-right: 10px;
622         }
623         .contact-photo { 
624                 width: 80px; height: 80px;
625                 img { width: 80px; height: 80px; }
626         }
627         .contact-photo-menu-button {
628                 left: 0px;
629                 top: 63px;
630         }       
631 }
632 .directory-item {
633         float: left;
634         width: 200px;
635         height: 200px;
636         .contact-photo { 
637                 width: 175px; height: 175px;
638                 img { width: 175px; height: 175px; }
639         }
640 }
641 .contact-name { font-weight: bold; padding-top: 15px; }
642 .contact-details { 
643         color: @Grey3; white-space: nowrap;
644         overflow: hidden;
645         text-overflow: ellipsis;
646 }
647
648 /* editor */
649 .jothidden { display: none; }
650 #jot {
651
652         width: 100%;
653         margin: 0px 2em 20px 0px;
654         
655         
656         .profile-jot-text {
657                 height: 1em; width: 99%; font-size: 10px;
658                 color: @CommentBoxEmptyColor;
659                 border: 1px solid @CommentBoxEmptyBorderColor;
660                 padding:0.3em;
661         }
662
663         #jot-tools {
664                 margin: 0px; padding: 0px;
665                 height: 40px; overflow: none;
666                 width: 800px;
667                 background-color: @JotToolsBackgroundColor;
668                 border-bottom: 2px solid @JotToolsBorderColor;
669                 li {
670                         list-style: none;
671                         float: left;
672                         width: 80px;
673                         height: 40px;
674                         border-bottom: 2px solid @JotToolsBorderColor;
675                         a {
676                                 display: block;
677                                 color: @JotToolsText;
678                                 width: 100%;
679                                 height:40px;
680                                 text-align: center;
681                                 line-height: 40px;
682                                 overflow: hidden;
683                         }
684                 }
685                 li:hover {
686                         background-color: @JotToolsOverBackgroundColor;
687                         border-bottom: 2px solid @JotToolsOverBorderColor;
688                 }
689                 li.perms {
690                         float: right;
691                         width: 40px;
692                         a.unlock {
693                                 width: 30px;
694                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
695                                 background-color: @JotPermissionUnlockBackgroundColor;
696                         }
697                         a.lock {
698                                 width: 30px;
699                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
700                                 background-color: @JotPermissionLockBackgroundColor;
701                         }
702                         
703                 }
704                 li.submit {
705                         float: right;
706                         background-color: @JotSubmitBackgroundColor;
707                         border-bottom: 2px solid @JotSubmitBackgroundColor;
708                         border-right: 1px solid @Grey4;
709                         border-left: 1px solid @Grey4;
710                         input {
711                                 border: 0px; margin: 0px; padding: 0px;
712                                 background-color: @JotSubmitBackgroundColor;
713                                 color: @JotSubmitText;
714                                 width: 80px; height: 40px;
715                                 line-height: 40px;
716                         }
717                         input:hover {
718                                 background-color: @JotSubmitOverBackgroundColor;
719                                 color: @JotSubmitOverText;
720                         }
721                 }
722                 li.loading {
723                         float: right;
724                         background-color: @JotLoadingBackgroundColor;
725                         width:  20px;
726                         vertical-align: center;
727                         text-align: center;
728                         img { margin-top: 10px; }
729                         border-top: 2px solid @JotToolsBorderColor;
730                         height: 38px;
731                 }
732         }
733
734         #jot-title {
735                 border: 0px;
736                 margin: 0px;
737                 height: 20px;
738                 width: 700px;
739                 font-weight: bold;
740                 border: 1px solid @BodyBackground;
741
742                 &:-webkit-input-placeholder {
743                         font-weight: normal;
744                 }
745
746                 &:-moz-placeholder {
747                         font-weight: normal;
748                 }               
749         
750                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
751                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
752         }
753         
754         #character-counter {
755                 width: 80px;
756                 float: right;
757                 text-align: right;
758                 height: 20px;
759                 line-height: 20px;
760                 padding-right: 20px;
761         }
762
763 }
764
765
766 /** buttons **/
767 /*input[type="submit"] {
768         border: 0px;
769     background-color: @ButtonBackgroundColor;
770     color: @ButtonColor;
771     padding: 0px 10px;
772         .rounded(5px);
773     height: 18px;
774 }*/
775
776
777 /** acl **/
778 #photo-edit-perms-select,
779 #photos-upload-permissions-wrapper,
780 #profile-jot-acl-wrapper{
781         display:block!important;
782 }
783
784
785
786 #acl-wrapper {
787         width: 690px;
788         float:left;
789 }
790 #acl-search {
791         float:right;
792         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
793         padding-right:20px;
794 }
795 #acl-showall {
796         float: left;
797         display: block;
798         width: auto;
799         height: 18px;
800         background-color: #cccccc;
801         background-image: url("../../../images/show_all_off.png");
802         background-position: 7px 7px;
803         background-repeat: no-repeat;
804         padding: 7px 5px 0px 30px;
805         color: #999999;
806         .rounded(5px);
807 }
808 #acl-showall.selected {
809         color: #000000;
810         background-color: #ff9900;
811         background-image: url("../../../images/show_all_on.png");
812 }
813
814 #acl-list {
815         height: 210px;
816         border: 1px solid #cccccc;
817         clear: both;
818         margin-top: 30px;
819         overflow: auto;
820 }
821 #acl-list-content {
822         
823 }
824 .acl-list-item {
825         display: block;
826         width: 150px;
827         height: 30px;
828         border: 1px solid #cccccc;
829         margin: 5px;
830         float: left;
831 }
832 .acl-list-item img{
833         width:22px;
834         height: 22px;
835         float: left;
836         margin: 4px;
837 }
838 .acl-list-item p { height: 12px; font-size: 10px; margin: 0px; padding: 2px 0px 1px; overflow: hidden;}
839 .acl-list-item a { 
840         font-size: 8px;
841         display: block;
842         width: 40px;
843         height: 10px;
844         float: left;
845         color: #999999;
846         background-color: #cccccc;
847         background-position: 3px 3px;
848         background-repeat: no-repeat;
849         margin-right: 5px;
850         -webkit-border-radius: 2px ;
851         -moz-border-radius: 2px;
852         border-radius: 2px;
853         padding-left: 15px;
854 }
855 #acl-wrapper a:hover {
856         text-decoration: none;
857         color:#000000;
858 }
859 .acl-button-show { background-image: url("../../../images/show_off.png"); }
860 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
861
862 .acl-button-show.selected {
863         color: #000000;
864         background-color: #9ade00;
865         background-image: url("../../../images/show_on.png");
866 }
867 .acl-button-hide.selected {
868         color: #000000;
869         background-color: #ff4141;
870         background-image: url("../../../images/hide_on.png");
871 }
872 .acl-list-item.groupshow { border-color: #9ade00; }
873 .acl-list-item.grouphide { border-color: #ff4141; }
874 /** /acl **/
875
876 /** tab buttons **/
877 ul.tabs {
878     list-style-type: none;
879     padding-bottom: 10px;
880
881     li {
882         float: left;
883         margin-left: 20px;
884         
885         .active {
886                         border-bottom: 1px solid @LinkVisited;
887         }
888     }
889     
890 }
891
892
893 /** group editor **/
894 #group-edit-desc { margin-top: 1em; color: @FieldHelpColor; }
895 #group-update-wrapper{
896         height: auto; overflow: auto;
897         #group {
898                 width:300px; 
899                 float:left;
900                 margin-right:20px;
901         }
902         #contacts {
903                 width:300px;
904                 float:left;
905         }
906         #group-separator { display: none; }
907         .contact_list {
908                 height: 300px;
909                 border: 1px solid @MenuBorder;
910                 overflow: auto;
911                 .contact-block-div  {
912                         width: 50px; height: 50px;
913                         float: left;
914                 }
915         }
916 }
917
918 /**
919  * Form fields
920  */
921 .field {
922         margin-bottom: 10px;
923         padding-bottom: 10px;
924         overflow: auto;
925         width: 100%;
926
927
928         label {
929                 float: left;
930                 width: 200px;
931         }
932
933         input,
934         textarea {
935                 width: 400px;
936         }
937         textarea { height: 100px; }
938         .field_help {
939                 display: block;
940                 margin-left: 200px;
941                 color: @FieldHelpColor;
942                 
943         }
944
945
946         .onoff {
947                 float: left;
948                 width: 80px;
949         }
950         .onoff a {
951                 display: block;
952                 border:1px solid #666666;
953                 background-image:url("../../../images/onoff.jpg");
954                 background-repeat: no-repeat;
955                 padding: 4px 2px 2px 2px;
956                 height: 16px;
957                 text-decoration: none;
958         }
959         .onoff .off {
960                 border-color:#666666;
961                 padding-left: 40px;
962                 background-position: left center;
963                 background-color: #cccccc;
964                 color: #666666;
965                 text-align: right;
966         }
967         .onoff .on {
968                 border-color:#204A87;
969                 padding-right: 40px;
970                 background-position: right center;
971                 background-color: #D7E3F1;
972                 color: #204A87;
973                 text-align: left;
974         }
975         .hidden { display: none!important; }
976
977         &.radio .field_help { margin-left: 0px; }
978 }
979
980 #profile-edit-links li {
981         list-style: none;
982         margin-top: 10px;
983 }
984
985 #profile-edit-default-desc {
986         color: #FF0000;
987         border: 1px solid #FF8888;
988         background-color: #FFEEEE;
989         padding: 7px;
990 }
991 #profile-edit-profile-name-label,
992 #profile-edit-name-label,
993 #profile-edit-pdesc-label,
994 #profile-edit-gender-label,
995 #profile-edit-dob-label,
996 #profile-edit-address-label,
997 #profile-edit-locality-label,
998 #profile-edit-region-label,
999 #profile-edit-postal-code-label,
1000 #profile-edit-country-name-label,
1001 #profile-edit-marital-label,
1002 #profile-edit-with-label,
1003 #profile-edit-sexual-label,
1004 #profile-edit-politic-label,
1005 #profile-edit-religion-label,
1006 #profile-edit-pubkeywords-label,
1007 #profile-edit-prvkeywords-label,
1008 #profile-edit-gender-select,
1009 #profile-edit-homepage-label {
1010         float: left;
1011         width: 175px;
1012         padding-top: 7px;
1013 }
1014 #profile-edit-profile-name,
1015 #profile-edit-name,
1016 #gender-select, 
1017 #profile-edit-pdesc,
1018 #profile-edit-gender,
1019 #profile-edit-dob,
1020 #profile-edit-address,
1021 #profile-edit-locality,
1022 #profile-edit-region,
1023 #profile-edit-postal-code,
1024 #profile-edit-country-name,
1025 #profile-edit-marital,
1026 #profile-edit-with,
1027 #profile-edit-sexual,
1028 #profile-edit-politic,
1029 #profile-edit-religion,
1030 #profile-edit-pubkeywords,
1031 #profile-edit-prvkeywords,
1032 #profile-edit-homepage {
1033     margin-top: 5px;
1034 }
1035
1036 /* oauth */
1037 .oauthapp {
1038         height: auto; overflow: auto;
1039         border-bottom: 2px solid #cccccc;
1040         padding-bottom: 1em;
1041         margin-bottom: 1em;     
1042 }
1043 .oauthapp img {
1044         float: left;
1045         width: 48px; height: 48px;
1046         margin: 10px;
1047 }
1048 .oauthapp img.noicon {
1049         background-image: url("../../../images/icons/48/plugin.png");
1050         background-position: center center;
1051         background-repeat: no-repeat;
1052 }
1053 .oauthapp a {
1054         float: left;
1055 }
1056
1057 /* contacts */
1058 .contact-entry-wrapper {
1059         width: 50px; float: left;
1060 }
1061
1062 /* photo */
1063 .lframe {
1064         float: left;
1065         margin: 0px 10px 10px 0px;
1066 }
1067
1068 /* profile match wrapper */
1069 .profile-match-wrapper {
1070         float: left;
1071         width: 90px;
1072         height: 90px;
1073         margin-bottom: 20px;
1074         .contact-photo { 
1075                 width: 80px; height: 80px;
1076                 img { width: 80px; height: 80px; }
1077         }
1078         .contact-photo-menu-button {
1079                 left: 0px;
1080                 top: 63px;
1081         }       
1082 }
1083
1084
1085 /* page footer */
1086 footer { height: 100px; display: table-row; }
1087
1088 .pager {
1089     margin-top: 25px;
1090     clear: both;
1091 }
1092