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