]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/quattro.less
contactedit-actions-button: adjust the themes and template polishing
[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 0 0 0;
10         display:table;
11 }
12 h4 { font-size: 1.1em }
13
14 .shadow(@x: 0, @y: 5px){
15         -webkit-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
16         -moz-box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
17         box-shadow:@x @y 10px rgba(0, 0, 0, 0.7);
18 }
19
20 .rounded(@tr: 5px, @tl: 5px, @bl: 5px, @br: 5px){
21         -moz-border-radius: @arguments;
22         -webkit-border-radius: @arguments;
23         border-radius: @arguments;
24 }
25 .roundbottom (@radius: 5px){ .rounded(0, 0, @radius, @radius); }
26 .roundtop (@radius: 5px){ .rounded(@radius, @radius, 0, 0); }
27
28 .opaque(@v: 0.5){
29         opacity: @v;
30         .transition();
31 }
32
33 .transition(@d: 0.2s){
34         -webkit-transition: all @d ease-in-out;
35         -moz-transition: all @d ease-in-out;
36         -o-transition: all @d ease-in-out;
37         -ms-transition: all @d ease-in-out;
38         transition: all @d ease-in-out;
39 }
40
41
42 a, a:link { color: @Link; text-decoration: none; }
43 a:visited { color: @LinkVisited; text-decoration: none; }
44 a:hover {color: @LinkHover; text-decoration: underline; }
45
46 .left { float: left; }
47 .right { float: right; }
48 .hidden { display: none; }
49 .clear { clear: both; }
50
51 .fakelink { color: @Link; text-decoration: none; cursor:pointer; }
52 .fakelink:hover { color: @LinkHover; text-decoration: underline; }
53
54 blockquote {
55         background:@BlockquoteBackgroundColor;
56         padding: 1em;
57         margin-left: 1em;
58         border-left: 1em solid @BlockquoteBorderColor;
59
60 }
61
62 code {
63         font-family: Courier, monospace;
64         white-space: pre;
65         display: block;
66         overflow: auto;
67         border: 1px solid #444;
68         background: #EEE;
69         color: #444;
70         padding: 10px;
71         margin-top: 20px;
72 }
73
74 #panel {
75         position: absolute;
76         width: 10em;
77         background: @MenuBg;
78         color: @Menu;
79         margin: 0;
80         padding: 1em;
81         list-style: none;
82         border: 3px solid @MenuBorder;
83         z-index: 100000;
84
85         .shadow();
86 }
87
88
89
90 /* tool */
91
92 .tool {
93         height: auto; overflow: auto;
94         .label { float: left;}
95         .action { float: right; }
96         > img { float: left; }
97 }
98
99
100
101
102 /* popup notifications */
103 #jGrowl.top-right {
104         top: 30px;
105         right: 15px;
106 }
107 div.jGrowl div.notice {
108         background: @NoticeBackgroundColor url("../../../images/icons/48/notice.png") no-repeat 5px center;
109         color:  @NoticeColor;
110         padding-left: 58px;
111 }
112 div.jGrowl div.info {
113         background: @InfoBackgroundColor url("../../../images/icons/48/info.png") no-repeat 5px center;
114         color:  @InfoColor;
115         padding-left: 58px;
116 }
117
118 /* notifications page */
119 .notif-item {
120         padding: 0.5em;
121         &:nth-child(even) { background-color: @NotificationsPageListEvenBackground; }
122         &:nth-child(odd) { background-color: @NotificationsPageListOddBackground; }
123         .notif-image { width: 16px; }
124 }
125
126
127 /* header */
128 header {
129         position: fixed; left: 43%; right: 43%; top: 0;
130         margin: 0; padding: 0;
131         /*width: 100%; height: 12px; */
132         z-index: 110;
133         color: @Grey1;
134         #site-location {
135                 display: none;
136         }
137
138         #banner {
139                 overflow: hidden;
140                 text-align: center;
141                 width: 100%;
142                 a, a:active, a:visited, a:link, a:hover { color: @Grey1; text-decoration: none; outline: none; vertical-align: bottom; }
143                 #logo-img { height: 22px; margin-top:5px;}
144                 #logo-text { font-size: 22px }
145         }
146 }
147 /* nav */
148 nav {
149         width: 100%; height: 32px;
150         position: fixed; left: 0; top: 0;
151         padding: 0;
152         background-color: @NavbarBackground;
153         color: @Grey1;
154         z-index: 100;
155         .shadow(0px, 0);
156
157                 a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none;  }
158
159                 ul {
160                         margin: 0;
161                         padding: 0 20px;
162                         li {
163                                 list-style: none;
164                                 margin: 0; padding: 0;
165                                 float: left;
166                                 .menu-popup{ left: 0; right: auto; }
167                         }
168
169                 }
170
171                 .nav-menu-icon {
172                         position: relative;
173                         height: 22px;
174                         padding: 5px;
175                         margin: 0 10px;
176                         .roundtop();
177
178                         &.selected {
179                                 background-color: @NavbarSelectedBg;
180                         }
181
182                                 img { width: 22px; height: 22px; }
183                                 .nav-notify { top: 3px; }
184                 }
185
186                 .nav-menu {
187                         position: relative;
188                         height: 16px;
189                         padding: 5px;
190                         margin: 3px 15px 0;
191                         font-size: 14px;
192                         border-bottom: 3px solid @NavbarBackground;
193                         &.selected {
194                                 border-bottom: 3px solid @NavbarSelectedBorder;
195                         }
196
197                 }
198
199                 .nav-notify {
200                         display: none;
201                         position: absolute;
202                         background-color: @NavbarNotifBg;
203                         .rounded();
204                         font-size: 10px;
205                         padding: 1px 3px;
206                         top: 0;
207                         right: -10px;
208                         min-width: 15px;
209                         text-align: right;
210
211                                 &.show{ display: block; }
212                 }
213
214
215                 #nav-help-link,
216                 #nav-search-link,
217                 #nav-directory-link,
218                 #nav-apps-link,
219                 #nav-site-linkmenu {
220                         float: right;
221                         .menu-popup{ right: 0; left: auto; }
222                 }
223
224                 #nav-notifications-linkmenu.on .icon.s22.notify,
225                 #nav-notifications-linkmenu.selected .icon.s22.notify   { background-image: url("../../../images/icons/22/notify_on.png") }
226                 #nav-introductions-link.on .icon.s22.intro,
227                 #nav-introductions-link.selected .icon.s22.intro        { background-image: url("icons/contacts_on.png") }
228                 #nav-messages-link.on .icon.s22.mail,
229                 #nav-messages-link.selected .icon.s22.mail              { background-image: url("icons/messages_on.png") }
230                 #nav-apps-link.selected { background-color: @NavbarSelectedBg; }
231 }
232
233
234 ul.menu-popup {
235         position: absolute;
236         display: none;
237         width: 10em;
238         background: @MenuBg;
239         color: @Menu;
240         margin: 0;
241         padding: 0;
242         list-style: none;
243         border: 3px solid @MenuBorder;
244         z-index: 100000;
245
246         .shadow();
247
248                 a { display: block; color: @MenuItem; padding: 5px 10px; text-decoration: none;}
249                 a:hover { background-color: @MenuItemHoverBg; }
250                 .menu-sep  { border-top: 1px solid @MenuItemSeparator; }
251                 li { float: none;  overflow: auto; height: auto; display: block; }
252                 li img { float: left; width: 16px; height: 16px; padding-right: 5px;}
253                 .empty {
254                         padding: 5px;
255                         text-align: center;
256                         color: @MenuEmpty;
257                 }
258                 .toolbar {
259                         background-color:  @MenuEmpty;
260                         height: auto; overflow: auto;
261                         a { float: right; }
262                         a:hover { background-color: @MenuBg; }
263                 }
264
265 }
266
267 /* autocomplete popup */
268 .autocomplete,
269 .acpopup {
270         max-height:150px;
271         background-color:@MenuBg;
272         color: @Menu;
273         border:1px solid @MenuBorder;
274         overflow:auto;
275         z-index:100000;
276         .shadow();
277 }
278 .autocomplete > div,
279 .acpopupitem {
280         color: @MenuItem; padding: 4px;
281         clear:left;
282         overflow: auto;
283         height: auto;
284         img {
285                 float: left;
286                 margin-right: 4px;
287                 width: 16px !important;
288                 height: 16px !important;
289         }
290         &.selected{
291                 background-color: @MenuItemHoverBg;
292         }
293 }
294
295
296 #nav-notifications-menu {
297         width: 400px; max-height: 550px;
298         overflow: auto;
299         img { float: left; margin-right: 5px; }
300         .contactname { font-weight: bold; }
301         .notif-when { font-size: 10px; color: @MenuItemDetail; display: block; }
302 }
303
304 /* Contact-Header for the Network Stream */
305 #viewcontact_wrapper-network {
306         width: 100%;
307         min-height: 100px;
308         background-color: #eff0f1;
309         border-bottom: 1px solid #cccccc;
310         #contact-entry-wrapper-network {
311                 float: none;
312                 width: auto;
313                 height: auto;
314                 padding: 10px;
315                 #contact-entry-accounttype-network { font-size: 22px; }
316                 #contact-entry-name-network { font-size: 24.5px; font-weight: normal; }
317                 .contact-details { font-size: 12px; }
318         }
319 }
320
321
322 /* aside 230px*/
323 aside {
324         display: table-cell;
325         vertical-align: top;
326         width: 200px;
327         padding:0px 10px 0 20px;
328         border-right: 1px solid @AsideBorder;
329
330         .profile-edit-side-div { display: none; }
331
332         .vcard {
333                 .fn { font-size: 16px; font-weight: bold; margin-bottom: 5px; }
334                 .title { margin-bottom: 5px; }
335                 .p-addr { margin-bottom: 5px; }
336                 .account-type { font-size: 14px; margin-bottom: 13px; }
337                 dl { height: auto; overflow: auto; }
338                 dt {float: left; margin-left: 0; width: 35%; text-align: right; color: @VCardLabelColor; }
339                 dd {float: left; margin-left: 4px; width: 60%;}
340
341         }
342
343         #profile-extra-links {
344                 ul { padding: 0; margin: 0; }
345                 li { padding: 0.2em 0; margin: 0; list-style: none; }
346         }
347
348         #wallmessage-link {
349                 display: block;
350                 .rounded();
351                 color: @AsideConnect;
352                 background: @AsideConnectBg url('../../../images/connect-bg.png') no-repeat left center;
353                 font-weight: bold;
354                 text-transform:uppercase;
355                 padding: 4px 2px 2px 35px;
356                 margin-top: 3px;
357
358                 &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
359         }
360         #dfrn-request-link {
361                 display: block;
362                 .rounded();
363                 color: @AsideConnect;
364                 background: @AsideConnectBg url('icons/connect-bg.png') no-repeat left center;
365                 font-weight: bold;
366                 text-transform:uppercase;
367                 padding: 4px 2px 2px 35px;
368
369                 &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
370         }
371         #subscribe-feed-link {
372                 display: block;
373                 .rounded();
374                 color: @AsideConnect;
375                 background: @AsideConnectBg url('icons/rss-bg.png') no-repeat left center;
376                 font-weight: bold;
377                 text-transform:uppercase;
378                 padding: 4px 2px 2px 35px;
379
380                 &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; }
381         }
382
383         #profiles-menu { width: 20em; }
384
385         .posted-date-selector-months { margin-left: 10px; }
386 }
387
388 #contact-block {
389         overflow: auto; height: auto;
390         .contact-block-h4 { float: left; margin: 5px 0; }
391         .allcontact-link { float: right; margin: 5px 0; }
392         .contact-block-content {
393                 clear: both;
394                 overflow: hidden;
395                 height: auto;
396         }
397         /*.contact-block-div { width:60px; height: 60px; }*/
398         .contact-block-link {
399                 float: left;
400                 margin: 0 2px 2px 0;
401                 img { width: 48px; height: 48px; }
402         }
403 }
404
405 /* group member */
406 #contact-edit-drop-link,
407 .mail-list-delete-wrapper,
408 .group-delete-wrapper {
409         float: right;
410         margin-right: 50px;
411         .drophide {
412                 background-image: url('../../../images/icons/22/delete.png');
413                 display: block; width: 22px; height: 22px;
414                 opacity: 0.3;
415                 position: relative;
416                 top: -50px;
417         }
418         .drop {
419                 background-image: url('../../../images/icons/22/delete.png');
420                 display: block; width: 22px; height: 22px;
421                 position: relative;
422                 top: -50px;
423         }
424 }
425 /*
426 #group-members {
427         margin-top: 20px;
428         padding: 10px;
429         height: 250px;
430         overflow: auto;
431         border: 1px solid #ddd;
432 }
433 #group-members-end {
434         clear: both;
435 }
436 #group-all-contacts {
437         padding: 10px;
438         height: 450px;
439         overflow: auto;
440         border: 1px solid #ddd;
441 }
442 #group-all-contacts-end {
443         clear: both;
444         margin-bottom: 10px;
445 }
446 .contact-block-div {
447         float: left;
448         width: 60px;
449         height: 60px;
450 }*/
451
452 /* widget */
453 .widget {
454         margin-bottom: 2em;
455
456         h3 { padding: 0; margin: 2px;}
457         .action { .opaque(0.1); }
458         input.action { .opaque(0.5); }
459         &:hover .title .action { .opaque(1); }
460         .tool:hover .action { .opaque(1); }
461         .tool:hover .action.ticked { .opaque(1); }
462
463         ul { padding: 0;}
464         ul li {padding-left: 16px; min-height: 16px; list-style: none; }
465
466         .tool.selected {
467                 background: url('../../../images/selected.png') no-repeat left center;
468         }
469
470         /*.action .s10 { width: 10px; overflow: hidden; padding: 0;}
471         .action .s16 { width: 16px; overflow: hidden; padding: 0;}*/
472
473         .notify {
474                 display: none;
475                 background-color: #19AEFF;
476                 border-radius: 5px;
477                 font-size: 10px;
478                 padding: 1px 3px;
479                 min-width: 15px;
480                 text-align: right;
481                 float: right;
482                 color: rgb(255, 255, 255);
483                 margin-right: 10px;
484
485                 &.on { display: block; }
486         }
487 }
488
489 /* widget: search */
490 #add-search-popup {
491         width: 200px;
492         top: 18px;
493 }
494
495
496 /* section 800px */
497 section {
498         display: table-cell;
499         vertical-align: top;
500         width: 770px;
501         padding:0px 20px 0 10px;
502 }
503
504 .sparkle {
505         cursor: url('icons/lock.cur'), pointer;
506 }
507
508 /* wall item */
509 .tread-wrapper {
510         background-color: @ThreadBackgroundColor;
511         position: relative;
512         padding: 10px;
513         margin-bottom: 20px;
514         width: 750px;
515         border-bottom: 1px solid @ThreadBottomBorderColor;
516 }
517 .wall-item-decor { position: absolute; left: 97%; top: -10px;  width: 16px;}
518 .unstarred { display: none; }
519
520 .wall-item-container {
521         display: table;
522         width: 750px;
523
524         .wall-item-item,
525         .wall-item-bottom { display: table-row; }
526
527         .wall-item-bottom { .opaque(0.5); }
528         &:hover .wall-item-bottom { .opaque(1); }
529         .wall-item-info {
530                 display: table-cell;
531                 vertical-align: top;
532                 text-align: left;
533                 width: 60px;
534
535         }
536         .wall-item-location {
537                 word-wrap: break-word;
538                 width: 50px;
539         }
540         .wall-item-content {
541                 display: table-cell;
542                 font-size: 12px;
543                 max-width: 720px;
544                 word-wrap: break-word;
545         }
546         .wall-item-content img { max-width: 700px; }
547         .wall-item-links,
548         .wall-item-actions {
549                 display: table-cell;
550                 vertical-align: middle;
551
552                 .icon {
553                         .opaque(0.5);
554                 }
555                 .icon:hover  {
556                         .opaque(1.0);
557                 }
558         }
559
560         .wall-item-ago { padding-right: 40px; }
561         .wall-item-name { font-weight: bold; }
562
563         .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; }
564         .wall-item-actions-events { float: left; margin-top: 0.5em;
565                 a { margin-right: 3em; }
566          }
567         .wall-item-actions-social { float: left; margin-top: 0.5em;
568                 a { margin-right: 3em; }
569          }
570         .wall-item-actions-tools { float: right; width: 15%;
571                 a { float: right; }
572                 input { float: right; }
573         }
574
575 }
576
577
578 .wall-item-container.comment {
579         .contact-photo-wrapper { margin-left: 16px; }
580         .contact-photo {
581                 width: 32px; height: 32px;
582         }
583
584         .contact-photo-menu-button {
585                 top: 15px !important;
586                 left: 0 !important;
587         }
588         .wall-item-links { padding-left: 12px; }
589
590         .commentbox {
591                 height: 0;
592                 overflow: hidden;
593                 .wall-item-comment-wrapper {
594                         border-top: 1px solid @CommentBoxEmptyBorderColor;
595                         height: 0; overflow: hidden;
596                 }
597                 .transition();
598         }
599
600         &:hover .commentbox {
601                 height:auto; overflow: visible;
602                 .wall-item-comment-wrapper {
603                         border-top: 0;
604                         height:auto;overflow: visible;
605                 }
606                 .transition();
607         }
608 }
609
610 /* 'tag' item type */
611 .wall-item-container.item-tag {
612         .wall-item-content {
613                 .opaque(0.5);
614         }
615         .contact-photo-wrapper { margin-left: 32px; }
616         .contact-photo {
617                 width: 16px; height: 16px;
618         }
619         .contact-photo-menu-button {
620                 top: 15px !important;
621                 left: 15px !important;
622         }
623 }
624
625
626 .wall-item-comment-wrapper {
627         margin: 1em 2em 1em 60px;
628         .comment-edit-photo { display: none; }
629
630         textarea {
631                 height: 1em; width: 100%; font-size: 10px;
632                 color: @CommentBoxEmptyColor;
633                 border: 1px solid @CommentBoxEmptyBorderColor;
634                 padding:0.3em;
635         }
636         .comment-edit-text-full {
637                 height: 4em;
638                 color: @CommentBoxFullColor;
639                 border: 1px solid @CommentBoxFullBorderColor;
640         }
641
642         &.photo {
643                 margin: 1em 2em 1em 0;
644         }
645 }
646
647 .threaded .wall-item-comment-wrapper { margin-left: 0; }
648
649 .comment-edit-preview {
650         width: 710px;
651         border: 1px solid @Grey5;
652         margin-top: 10px;
653         background-color: @JotPreviewBackgroundColor;
654
655         .contact-photo { width: 32px; height: 32px; margin-left: 16px;
656                 /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
657         }
658         .contact-photo-menu-button {
659                 top: 15px !important;
660                 left: 15px !important;
661         }
662         .wall-item-links { padding-left: 12px; }
663
664         .wall-item-container { width: 90%; }
665         .tread-wrapper {
666                 width: 90%; padding: 0; margin: 10px 0;
667                 background-color: @JotPreviewBackgroundColor;
668                 border-bottom: 0;
669         }
670         .wall-item-conv { display: none; }
671 }
672
673 .shiny { border-right:10px solid @ShinyBorderColor; }
674 #jot-preview-content .tread-wrapper { background-color: @JotPreviewBackgroundColor; }
675
676 .hide-comments-outer {margin-bottom: 0.8em; }
677
678 .wall-item-tags { padding-top: 5px; }
679 .tag {
680         background: url("icons/tag.png") no-repeat center right;
681         color: @TagColor;
682         padding-right: 8px;
683         padding-left: 3px;
684         a { color: @TagColor;   }
685 }
686 .mention {
687         background: url("icons/men.png") no-repeat 1px center;
688         color: @MentionColor;
689         padding-right: 3px;
690         padding-left: 18px;
691         a { color: @MentionColor;       }
692 }
693 .folder {
694         background: url("icons/folder.png") no-repeat 1px center;
695         color: @MentionColor;
696         padding-right: 3px;
697         padding-left: 15px;
698         a { color: @MentionColor;       }
699 }
700 .category {
701         background: url("icons/category.png") no-repeat 1px center;
702         color: @MentionColor;
703         padding-right: 3px;
704         padding-left: 15px;
705         a { color: @MentionColor;       }
706 }
707 /*.filesavetags {
708     padding: 3px 0 3px 0;
709     opacity: 0.5;
710 }*/
711
712 .wwto {
713         position: absolute !important;
714         background: #FFFFFF;
715         border: 2px solid @Metalic3;
716         height: 25px;
717         width: 25px;
718         overflow: hidden;
719         padding: 1px;
720         top: 40px;
721         left: 30px;
722
723         .shadow(0px, 0);
724 }
725 .wwto .contact-photo { width: 25px; height: 25px; }
726
727 /* reshare e embed */
728 .wall-item-container .wall-item-content .type-link img,
729 .type-link img {
730         max-width: 160px;
731         max-height: 160px;
732         float: left;
733         margin-right: 10px;
734
735             &.attachment-image {
736                     max-width: 650px;
737                     max-height: inital;
738                     float: none;
739                     margin-right: 0;
740             }
741
742 }
743 .type-link {
744         blockquote {
745             margin: 1em 0;
746             max-height: 160px;
747             overflow: hidden;
748             padding-left: 1em;
749         }
750         .oembed {}
751 }
752
753 .type-video blockquote { padding-left: 1em; }
754
755 .shared_header {
756         height: 32px;
757         color: #999;
758         border-top: 1px solid @ThreadBottomBorderColor;
759         padding-top: 5px;
760         margin-top: 5px;
761
762         img {
763             -webkit-border-radius: 4px;
764             -moz-border-radius: 4px;
765             border-radius: 4px;
766             float: left;
767         }
768
769         span { margin-left: 9px; }
770 }
771
772
773 blockquote.shared_content {
774         margin-left: 32px;
775         color: #000;
776         border: none;
777 }
778
779
780 .oembed.video {
781         > a.embed_video {
782                 display: block;
783                 float: left;
784         position: relative;
785                 > div {
786             position: absolute; top: 0px; left: 0px;
787                         background:
788                                 rgba(255, 255, 255, 0.36)
789                                 url(../../../images/icons/48/play.png)
790                                 no-repeat center center
791                                 !important;
792                 }
793         }
794 }
795
796
797 /* threaded comments */
798 .children {
799         margin-top: 1em;
800         .hide-comments-outer { margin-left:60px; }
801
802         .wwto { display: none; }
803
804         .comment-edit-preview { width: 660px;
805                 .wall-item-container { width: 610px; }
806          }
807
808         & .children {
809
810                 margin-left: 40px;
811                 .wall-item-container { width: 710px; }
812                 .comment-edit-preview { width: 620px;
813                         .wall-item-container { width: 620px; }
814                  }
815
816                 & .children {
817                         .wall-item-container { width: 670px; }
818                         .comment-edit-preview { width: 580px;
819                                 .wall-item-container { width: 580px; }
820                         }
821
822                         & .children {
823                                 .wall-item-container { width: 630px; }
824                                 .comment-edit-preview { width: 540px;
825                                         .wall-item-container { width: 540px; }
826                                 }
827
828                                 & .children {
829                                         .wall-item-container { width: 590px; }
830                                         .comment-edit-preview { width: 500px;
831                                                 .wall-item-container { width: 500px; }
832                                         }
833
834                                         .children {
835                                                 margin-left: 0;
836                                                 .hide-comments-outer { margin-left: 0; }
837                                         }
838                                 }
839                         }
840                 }
841         }
842 }
843 /*.threaded .hide-comments-outer { margin-left: 20px; }*/
844
845 span[id^="showmore-teaser"]{
846         background: url("showmore-bg.jpg") no-repeat center bottom;
847 }
848 span[id^="showmore-wrap"] {
849         border-top: 1px solid #999999;
850         color: #999999;
851         display: block;
852         text-align: center;
853         background-color: @ThreadBackgroundColor;
854 }
855
856
857 #pause {
858         position: fixed;
859         bottom: 5px;
860         right: 5px;
861 }
862
863
864 .contact-photo-wrapper { position: relative; }
865 .contact-select {       position: absolute; top:64px; left:64px; display:none; }
866 .contact-select:checked,
867 .contact-photo:hover .contact-select {  display:block; }
868 #contacts-actions {
869         position: absolute;
870         left: 800px;
871         width: 200px;
872         background-color: @MenuBg;
873         border: 2px solid @MenuBorder;
874         .batch-action {
875                 display: block;
876                 width: 100%;
877                 background-color: @MenuBg;
878                 border: 0;
879                 color: @MenuItem;
880                 text-align: left;
881                 padding: 5px 10px;
882                 font-size: 11px;
883         }
884         .batch-action:hover {
885                 background-color: @MenuItemHoverBg;
886         }
887         display: none;
888 }
889 @media (max-width: 1000px) {
890         #contacts-actions { left: 40px; }
891 }
892
893 .contact-photo {
894         width: 48px; height: 48px;
895         img { width: 48px; height: 48px; }
896         overflow: hidden;
897         display: block;
898  }
899 .contact-photo-menu-button {
900         display: none;
901         position: absolute;
902         left: -2px;
903         top: 31px;
904 }
905
906 .contact-wrapper {
907         float: left;
908         width: 300px;
909         height: 90px;
910         padding-right: 10px;
911         margin: 0 10px 10px 0;
912         .contact-photo-wrapper {
913                 float: left;
914                 margin-right: 10px;
915         }
916         .contact-photo {
917                 width: 80px; height: 80px;
918                 img { width: 80px; height: 80px; }
919         }
920         .contact-photo-menu-button {
921                 left: 0;
922                 top: 63px;
923         }
924         .drop {
925                 background-image: url('../../../images/icons/22/delete.png');
926                 display: block; width: 22px; height: 22px;
927                 position: relative;
928                 top: 10px;
929                 left: -10px;
930                 z-index: 99;
931         }
932         .drophide {
933                 background-image: url('../../../images/icons/22/delete.png');
934                 display: block; width: 22px; height: 22px;
935                 opacity: 0.3;
936                 position: relative;
937                 top: 10px;
938                 left: -10px;
939                 z-index: 99;
940         }
941         .contact-entry-connect {
942                 padding-top: 5px;
943                 font-weight: bold;
944         }
945 }
946 .directory-item {
947         float: left;
948         width: 200px;
949         height: 200px;
950         .contact-photo {
951                 width: 175px; height: 175px;
952                 img { width: 175px; height: 175px; }
953         }
954 }
955 .contact-name { font-weight: bold; /* padding-top: 15px; */}
956 .contact-details {
957         color: @Grey3; white-space: nowrap;
958         overflow: hidden;
959         text-overflow: ellipsis;
960 }
961
962 #contact-edit-status-wrapper { border-color: @JotToolsOverBackgroundColor;}
963 /* editor */
964 .jothidden { display: none; }
965 #jot {
966
967         width: 100%;
968         margin: 0 2em 20px 0;
969
970         .profile-jot-text {
971                 height: 1em; width: 99%; font-size: 10px;
972                 color: @CommentBoxEmptyColor;
973                 border: 1px solid @CommentBoxEmptyBorderColor;
974                 padding:0.3em;
975         }
976
977         #jot-tools {
978                 margin: 0; padding: 0;
979                 height: 40px; overflow: none;
980                 width: 770px;
981                 background-color: @JotToolsBackgroundColor;
982                 border-bottom: 2px solid @JotToolsBorderColor;
983                 li {
984                         list-style: none;
985                         float: left;
986                         width: 80px;
987                         height: 40px;
988                         border-bottom: 2px solid @JotToolsBorderColor;
989                         a {
990                                 display: block;
991                                 color: @JotToolsText;
992                                 width: 100%;
993                                 height:40px;
994                                 text-align: center;
995                                 line-height: 40px;
996                                 overflow: hidden;
997                         }
998                 }
999                 li:hover {
1000                         background-color: @JotToolsOverBackgroundColor;
1001                         border-bottom: 2px solid @JotToolsOverBorderColor;
1002                 }
1003                 li.perms {
1004                         float: right;
1005                         width: 40px;
1006                         a.unlock {
1007                                 width: 30px;
1008                                 border-left: 10px solid @JotPermissionUnlockBackgroundColor;
1009                                 background-color: @JotPermissionUnlockBackgroundColor;
1010                         }
1011                         a.lock {
1012                                 width: 30px;
1013                                 border-left: 10px solid @JotPermissionLockBackgroundColor;
1014                                 background-color: @JotPermissionLockBackgroundColor;
1015                         }
1016
1017                 }
1018                 li.submit {
1019                         float: right;
1020                         background-color: @JotSubmitBackgroundColor;
1021                         border-bottom: 2px solid @JotSubmitBackgroundColor;
1022                         border-right: 1px solid @Grey4;
1023                         border-left: 1px solid @Grey4;
1024                         input {
1025                                 border: 0; margin: 0; padding: 0;
1026                                 background-color: @JotSubmitBackgroundColor;
1027                                 color: @JotSubmitText;
1028                                 width: 80px; height: 40px;
1029                                 line-height: 40px;
1030                         }
1031                         input:hover {
1032                                 background-color: @JotSubmitOverBackgroundColor;
1033                                 color: @JotSubmitOverText;
1034                         }
1035                 }
1036                 li.loading {
1037                         float: right;
1038                         background-color: @JotLoadingBackgroundColor;
1039                         width:  20px;
1040                         vertical-align: center;
1041                         text-align: center;
1042                         img { margin-top: 10px; }
1043                         border-top: 2px solid @JotToolsBorderColor;
1044                         height: 38px;
1045                 }
1046         }
1047
1048         #jot-title {
1049                 border: 0;
1050                 margin: 0;
1051                 height: 20px;
1052                 width: 500px;
1053                 font-weight: bold;
1054                 border: 1px solid @BodyBackground;
1055
1056                 &:-webkit-input-placeholder {
1057                         font-weight: normal;
1058                 }
1059
1060                 &:-moz-placeholder {
1061                         font-weight: normal;
1062                 }
1063
1064                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
1065                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
1066         }
1067
1068         #character-counter {
1069                 width: 40px;
1070                 float: right;
1071                 text-align: right;
1072                 height: 20px;
1073                 line-height: 20px;
1074                 padding-right: 20px;
1075         }
1076
1077         #jot-category {
1078                 border: 0;
1079                 margin: 0;
1080                 height: 20px;
1081                 width: 200px;
1082                 border: 1px solid @BodyBackground;
1083                 &:hover { border: 1px solid @CommentBoxEmptyBorderColor }
1084                 &:focus { border: 1px solid @CommentBoxEmptyBorderColor }
1085         }
1086 }
1087
1088
1089 /** buttons **/
1090 /*input[type="submit"] {
1091         border: 0;
1092     background-color: @ButtonBackgroundColor;
1093     color: @ButtonColor;
1094     padding: 0 10px;
1095         .rounded(5px);
1096     height: 18px;
1097 }*/
1098
1099 a.actionbutton {
1100         border: 1px solid @Grey3;
1101         background-color: @Grey2;
1102         color: @Grey5;
1103         font-size: 8pt;
1104         padding: 2pt;
1105         .rounded();
1106
1107         i.icon {
1108                 display: inline-block;
1109                 vertical-align: baseline;
1110                 padding: 0;
1111         }
1112
1113         &:hover {
1114                 text-decoration: none;
1115                 background-color: @Grey1;
1116         }
1117 }
1118 h2 > .actionbutton { float: right; }
1119
1120
1121 /** acl **/
1122 #photo-edit-perms-select,
1123 #photos-upload-permissions-wrapper,
1124 #profile-jot-acl-wrapper{
1125         display:block!important;
1126 }
1127
1128
1129
1130 #acl-wrapper {
1131         width: 690px;
1132         float:left;
1133 }
1134 #acl-search {
1135         float:right;
1136         background: #ffffff url("../../../images/search_18.png") no-repeat right center;
1137         padding-right:20px;
1138 }
1139 #acl-showall {
1140         float: left;
1141         display: block;
1142         width: auto;
1143         height: 18px;
1144         background-color: #cccccc;
1145         background-image: url("../../../images/show_all_off.png");
1146         background-position: 7px 7px;
1147         background-repeat: no-repeat;
1148         padding: 7px 5px 0 30px;
1149         color: #999999;
1150         .rounded(5px);
1151 }
1152 #acl-showall.selected {
1153         color: #000000;
1154         background-color: #ff9900;
1155         background-image: url("../../../images/show_all_on.png");
1156 }
1157
1158 #acl-list {
1159         height: 210px;
1160         border: 1px solid #cccccc;
1161         clear: both;
1162         margin-top: 30px;
1163         overflow: auto;
1164 }
1165 #acl-list-content {
1166
1167 }
1168 .acl-list-item {
1169         display: block;
1170         width: 150px;
1171         height: 30px;
1172         border: 1px solid #cccccc;
1173         margin: 5px;
1174         float: left;
1175 }
1176 .acl-list-item img{
1177         width:22px;
1178         height: 22px;
1179         float: left;
1180         margin: 4px;
1181 }
1182 .acl-list-item p { height: 12px; font-size: 10px; margin: 0; padding: 2px 0 1px; overflow: hidden;}
1183 .acl-list-item a {
1184         font-size: 8px;
1185         display: block;
1186         width: 40px;
1187         height: 10px;
1188         float: left;
1189         color: #999999;
1190         background-color: #cccccc;
1191         background-position: 3px 3px;
1192         background-repeat: no-repeat;
1193         margin-right: 5px;
1194         -webkit-border-radius: 2px ;
1195         -moz-border-radius: 2px;
1196         border-radius: 2px;
1197         padding-left: 15px;
1198 }
1199 #acl-wrapper a:hover {
1200         text-decoration: none;
1201         color:#000000;
1202 }
1203 .acl-button-show { background-image: url("../../../images/show_off.png"); }
1204 .acl-button-hide { background-image: url("../../../images/hide_off.png"); }
1205
1206 .acl-button-show.selected {
1207         color: #000000;
1208         background-color: #9ade00;
1209         background-image: url("../../../images/show_on.png");
1210 }
1211 .acl-button-hide.selected {
1212         color: #000000;
1213         background-color: #ff4141;
1214         background-image: url("../../../images/hide_on.png");
1215 }
1216 .acl-list-item.groupshow { border-color: #9ade00; }
1217 .acl-list-item.grouphide { border-color: #ff4141; }
1218 /** /acl **/
1219
1220 /** tab buttons **/
1221 ul.tabs {
1222     list-style-type: none;
1223     padding-bottom: 10px;
1224
1225     li {
1226         float: left;
1227         margin-left: 20px;
1228
1229         .active {
1230                         border-bottom: 1px solid @LinkVisited;
1231         }
1232     }
1233
1234 }
1235
1236
1237 /** group editor **/
1238 #group-edit-desc { margin-top: 1em; color: @FieldHelpColor; }
1239 #group-update-wrapper{
1240         height: auto; overflow: auto;
1241         #group {
1242                 width:300px;
1243                 float:left;
1244                 margin-right:20px;
1245         }
1246         #contacts {
1247                 width:300px;
1248                 float:left;
1249         }
1250         #group-separator { display: none; }
1251         .contact_list {
1252                 height: 300px;
1253                 border: 1px solid @MenuBorder;
1254                 overflow: auto;
1255                 .contact-block-div  {
1256                         width: 50px; height: 50px;
1257                         float: left;
1258                 }
1259         }
1260 }
1261
1262 /**
1263  * Form fields
1264  */
1265 .field {
1266         margin-bottom: 10px;
1267         padding-bottom: 10px;
1268         overflow: auto;
1269         width: 100%;
1270
1271
1272         label {
1273                 float: left;
1274                 width: 200px;
1275         }
1276
1277         input,
1278         textarea {
1279                 width: 400px;
1280         }
1281         input[type="checkbox"], input[type="radio"]{
1282                 width: auto;
1283         }
1284
1285         textarea { height: 100px; }
1286         .field_help {
1287                 display: block;
1288                 margin-left: 200px;
1289                 color: @FieldHelpColor;
1290         }
1291
1292
1293         .onoff {
1294                 float: left;
1295                 width: 80px;
1296         }
1297         .onoff a {
1298                 display: block;
1299                 border:1px solid #666666;
1300                 background-image:url("../../../images/onoff.jpg");
1301                 background-repeat: no-repeat;
1302                 padding: 4px 2px 2px 2px;
1303                 height: 16px;
1304                 text-decoration: none;
1305         }
1306         .onoff .off {
1307                 border-color:#666666;
1308                 padding-left: 40px;
1309                 background-position: left center;
1310                 background-color: #cccccc;
1311                 color: #666666;
1312                 text-align: right;
1313         }
1314         .onoff .on {
1315                 border-color:#204A87;
1316                 padding-right: 40px;
1317                 background-position: right center;
1318                 background-color: #D7E3F1;
1319                 color: #204A87;
1320                 text-align: left;
1321         }
1322         .hidden { display: none!important; }
1323
1324         &.radio .field_help { margin-left: 0; }
1325 }
1326
1327
1328 #profile-edit-links li {
1329         list-style: none;
1330         margin-top: 10px;
1331 }
1332
1333 #profile-edit-default-desc {
1334         color: #FF0000;
1335         border: 1px solid #FF8888;
1336         background-color: #FFEEEE;
1337         padding: 7px;
1338 }
1339 #profile-edit-profile-name-label,
1340 #profile-edit-name-label,
1341 #profile-edit-pdesc-label,
1342 #profile-edit-gender-label,
1343 #profile-edit-dob-label,
1344 #profile-edit-address-label,
1345 #profile-edit-locality-label,
1346 #profile-edit-region-label,
1347 #profile-edit-postal-code-label,
1348 #profile-edit-country-name-label,
1349 #profile-edit-marital-label,
1350 #profile-edit-with-label,
1351 #profile-edit-sexual-label,
1352 #profile-edit-politic-label,
1353 #profile-edit-religion-label,
1354 #profile-edit-pubkeywords-label,
1355 #profile-edit-prvkeywords-label,
1356 #profile-edit-gender-select,
1357 #profile-edit-homepage-label {
1358         float: left;
1359         width: 175px;
1360         padding-top: 7px;
1361 }
1362 #profile-edit-profile-name,
1363 #profile-edit-name,
1364 #gender-select,
1365 #profile-edit-pdesc,
1366 #profile-edit-gender,
1367 #profile-edit-dob,
1368 #profile-edit-address,
1369 #profile-edit-locality,
1370 #profile-edit-region,
1371 #profile-edit-postal-code,
1372 #profile-edit-country-name,
1373 #profile-edit-marital,
1374 #profile-edit-with,
1375 #profile-edit-sexual,
1376 #profile-edit-politic,
1377 #profile-edit-religion,
1378 #profile-edit-pubkeywords,
1379 #profile-edit-prvkeywords,
1380 #profile-edit-homepage {
1381         margin-top: 5px;
1382 }
1383
1384 /* oauth */
1385 .oauthapp {
1386         height: auto; overflow: auto;
1387         border-bottom: 2px solid #cccccc;
1388         padding-bottom: 1em;
1389         margin-bottom: 1em;
1390 }
1391 .oauthapp img {
1392         float: left;
1393         width: 48px; height: 48px;
1394         margin: 10px;
1395 }
1396 .oauthapp img.noicon {
1397         background-image: url("../../../images/icons/48/plugin.png");
1398         background-position: center center;
1399         background-repeat: no-repeat;
1400 }
1401 .oauthapp a {
1402         float: left;
1403 }
1404
1405 /* contacts */
1406 .contact-entry-wrapper {
1407         width: 50px; float: left;
1408 }
1409
1410 /* manage page */
1411 .identity-match-photo {
1412         position: relative;
1413         .manage-notify {
1414                 background-color: #19AEFF;
1415                 border-radius: 5px;
1416                 font-size: 10px;
1417                 padding: 1px 3px;
1418                 min-width: 15px;
1419                 text-align: right;
1420                 position: absolute;
1421                 right: 10px;
1422                 top: -5px;
1423                 color: rgb(255, 255, 255);
1424         }
1425 }
1426
1427
1428 /* videos page */
1429 .videos {
1430         .video-top-wrapper {
1431                 width: 200px; float: left;
1432                 margin: 0 10px 10px 0;
1433                 position: relative;
1434
1435                 .video-js {
1436                         width: 200px!important;
1437                         height: 132px!important;
1438                 }
1439
1440                 .video-delete {
1441                         position: absolute;
1442                         opacity: 0;
1443                         right: 0;
1444                         top: 0;
1445                         transition: opacity 0.5s;
1446                 }
1447
1448                 &:hover .video-delete {
1449                         opacity: 1;
1450                 }
1451         }
1452 }
1453
1454 /* photo albums */
1455 @photosize: 150px;
1456
1457 #photo-edit-link-wrap { margin-bottom: 10px; }
1458
1459 #album-edit-link {
1460         border-right: 1px solid @MenuBorder;
1461         float: left;
1462         padding-right: 5px;
1463         margin-right: 5px;
1464 }
1465 #photo-edit-link,
1466 #album-edit-link a {
1467         background: url("../../../images/icons/16/edit.png") no-repeat left center;
1468         padding-left: 18px;
1469 }
1470 #photo-toprofile-link {
1471         background: url("../../../images/icons/16/user.png") no-repeat left center;
1472         padding-left: 18px;
1473 }
1474
1475 #photo-top-upload-link,
1476 .photos-upload-link { margin: 1em 0; display: block; }
1477 .photos-upload-link a,
1478 #photo-top-upload-link {
1479         background: url("../../../images/icons/16/add.png") no-repeat left center;
1480         padding-left: 18px;
1481 }
1482
1483
1484 .photo-top-image-wrapper,
1485 .photo-album-image-wrapper {
1486         float: left;
1487         margin: 0 10px 10px 0;
1488         width:@photosize; height: @photosize;
1489         position: relative;
1490         overflow: hidden;
1491
1492         img { width: @photosize; }
1493
1494         .photo-top-album-name,
1495         .caption{
1496                 position: absolute;
1497                 color: @Menu;
1498                 background-color: @MenuBg;
1499
1500                 width: 100%;
1501                 .shadow(0px, 5px);
1502                 .transition(0.5s);
1503                 bottom: -@photosize;
1504         }
1505
1506         &:hover .photo-top-album-name,
1507         &:hover .caption {
1508                 bottom: 0;
1509                 .shadow(0px, 0);
1510                 .transition(0.5s);
1511         }
1512 }
1513
1514 #photo-photo {
1515         display: block; width: 660px;
1516         padding: 50px; margin-bottom: 0;
1517         text-align: center;
1518         background-color: @Grey3;
1519         img { max-width: 560px; }
1520 }
1521 #photo-album-title {
1522         background: url("../../../images/icons/22/image.png") no-repeat top left;
1523         padding-left: 23px;
1524         min-height: 22px;
1525         padding-top: 6px;
1526         /* a { display: block;}*/
1527 }
1528
1529 #photo-caption {
1530         display: block; width: 660px;
1531         min-height: 55px;
1532         background-color:  @Grey2;
1533         padding:0 50px 0 50px;
1534 }
1535 #photo-next-link > a > div {
1536         background: url("icons/next.png") no-repeat center center;
1537         float: right;
1538         width: 50px; height: 50px;
1539 }
1540 #photo-prev-link > a > div {
1541         background: url("icons/prev.png") no-repeat center center;
1542         float: left;
1543         width: 50px; height: 50px;
1544 }
1545 #photo-like-div {
1546         display: block; width: 660px;
1547         height: 30px;
1548         background-color:  @Grey2;
1549         padding:0 50px 0 50px;
1550         .icon {float: left;}
1551         .like-rotator {float: right;}
1552 }
1553
1554 #photo_edit_form {
1555         padding: 1em;
1556 }
1557
1558 /* profile match wrapper */
1559 .profile-match-wrapper {
1560         float: left;
1561         width: 110px;
1562         height: 110px;
1563         margin-bottom: 20px;
1564         .drop {
1565             background-image: url('../../../images/icons/22/delete.png');
1566             display: block; width: 22px; height: 22px;
1567             position: relative;
1568             top: 10px;
1569             left: -10px;
1570         }
1571         .drophide {
1572             background-image: url('../../../images/icons/22/delete.png');
1573             display: block; width: 22px; height: 22px;
1574             opacity: 0.3;
1575             position: relative;
1576             top: 10px;
1577             left: -10px;
1578         }
1579         .contact-photo {
1580                 width: 80px; height: 80px;
1581                 img { width: 80px; height: 80px; }
1582         }
1583         .contact-photo-menu-button {
1584                 left: 0;
1585                 top: 63px;
1586         }
1587 }
1588
1589 /* messages */
1590 #message-new {
1591         background: @MessageNewBackgroundColor;
1592         border: 1px solid @MessageNewBorderColor;
1593         width: 150px;
1594         a {
1595                 color: @MessageNewColor;
1596                 text-align: center;
1597                 display: block;
1598                 font-weight: bold;
1599                 padding: 1em 0;
1600         }
1601 }
1602
1603 .mail-list-wrapper {
1604         background-color: @MailListBackgroundColor;
1605         margin-bottom: 5px;
1606         width: 100%; height: auto; overflow: hidden;
1607
1608         span { display: block; float: left; width: 20%; overflow: hidden;}
1609
1610         .mail-subject {
1611                 width: 30%;
1612                 padding:4px 0 0 4px;
1613                 a { display: block; }
1614                 &.unseen a { font-weight: bold; }
1615         }
1616         .mail-date { padding: 4px 4px 0 4px; }
1617         .mail-from { padding: 4px 4px 0 4px; }
1618         .mail-count { padding: 4px 4px 0 4px; text-align: right;}
1619
1620         .mail-delete { float: right; }
1621 }
1622
1623 #message-preview {
1624         margin-top: 1em;
1625         box-sizing: border-box;
1626         * {  box-sizing: border-box;    white-space: nowrap;}
1627         .mail-list-wrapper {
1628                 .mail-subject {
1629                         width: 100%;
1630                 }
1631                 .mail-date  { font-size: 0.8em; width: 25%; text-align: right}
1632                 .mail-from  { font-size: 0.8em; width: 75%;}
1633                 .mail-count { font-size: 0.8em; width: 100%;}
1634                 .mail-delete { display: none;}
1635
1636                 & .mail-date, & .mail-from, & .mail-count { .opaque(0.5); }
1637                 &:hover .mail-date, &:hover .mail-from, &:hover .mail-count { .opaque(1); }
1638         }
1639 }
1640
1641
1642 #mail-display-subject {
1643         background-color: @MailDisplaySubjectBackgroundColor;
1644         color: @MailDisplaySubjectColor;
1645         margin-bottom: 10px;
1646         width: 100%; height: auto; overflow: hidden;
1647         span { float: left; overflow: hidden; padding: 4px 0 0 10px;}
1648         .mail-delete { float: right;  .opaque(0.5);}
1649         &:hover .mail-delete { .opaque(1); }
1650
1651 }
1652
1653 /* theme screenshot */
1654 .screenshot, #theme-preview {
1655         position: absolute;
1656         width:202px;
1657         left: 70%;
1658         top: 50px;
1659         img { width: 200px; height: 150px; }
1660 }
1661
1662 /* page footer */
1663 footer { height: 100px; display: table-row; }
1664
1665 .pager {
1666         margin-top: 25px;
1667         clear: both;
1668 }
1669
1670 /**
1671  * ADMIN
1672  */
1673 #pending-update {
1674         float:right;
1675         color: #ffffff;
1676         font-weight: bold;
1677         background-color: #FF0000;
1678         padding: 0em 0.3em;
1679
1680 }
1681 #adminpage {
1682     dl {
1683         clear: left;
1684         margin-bottom: 2px;
1685         padding-bottom: 2px;
1686         border-bottom: 1px solid black;
1687     }
1688     dt {
1689         width: 200px;
1690         float: left;
1691         font-weight: bold;
1692     }
1693     dd {
1694         margin-left: 200px;
1695     }
1696     h3 {
1697         border-bottom: 1px solid #cccccc;
1698     }
1699     .field label {
1700         font-weight: bold;
1701     }
1702     .submit {
1703         clear:left;
1704         text-align: right;
1705     }
1706     #pluginslist {
1707         margin: 0; padding: 0;
1708     }
1709     .plugin {
1710         list-style: none;
1711         display: block;
1712         border: 1px solid #888888;
1713         padding: 1em;
1714         margin-bottom: 5px;
1715         clear: left;
1716         desc {
1717             margin-left: 2.5em;
1718         }
1719     }
1720     .toggleplugin {
1721         float:left;
1722         margin-right: 1em;
1723     }
1724     table {
1725         width:100%;
1726         border-bottom: 1px solid #000000;
1727         margin: 5px 0;
1728         th {
1729             text-align: left;
1730         }
1731         td .icon {
1732             float: left;
1733         }
1734         tr:hover {
1735             background-color: #bbc7d7;
1736         }
1737     }
1738     table#users img {
1739             width: 16px; height: 16px;
1740     }
1741     .selectall { text-align: right; }
1742 }
1743
1744 /* edit buttons for comments */
1745
1746 .icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
1747 .comment-edit-bb {
1748         list-style: none;
1749         display: none;
1750         margin: 0;
1751         padding: 0;
1752         width: 75%;
1753 }
1754 .comment-edit-bb > li {
1755         display: inline-block;
1756         margin: 10px 10px 0 0;
1757         visibility: none;
1758 }
1759
1760 .editicon {
1761         display: inline-block;
1762         width: 16px;
1763         height: 16px;
1764         background-image: url(icons/bbedit.png);
1765         text-decoration: none;
1766         :hover {background-color: #ccc;}
1767 }
1768 .boldbb { background-position: 0 0; }
1769 .boldbb:hover { background-position: 0 -16px; }
1770 .italicbb { background-position: -16px 0; }
1771 .italicbb:hover { background-position: -16px -16px; }
1772 .underlinebb { background-position: -32px 0; }
1773 .underlinebb:hover { background-position: -32px -16px; }
1774 .quotebb { background-position: -48px 0; }
1775 .quotebb:hover { background-position: -48px -16px; }
1776 .codebb { background-position: -64px 0; }
1777 .codebb:hover { background-position: -64px -16px; }
1778 .imagebb { background-position: -80px 0; }
1779 .imagebb:hover { background-position: -80px -16px; }
1780 .urlbb { background-position: -96px 0; }
1781 .urlbb:hover { background-position: -96px -16px; }
1782 .videobb { background-position: -112px 0; }
1783 .videobb:hover { background-position: -112px -16px; }
1784
1785
1786 /** range input css **/
1787 /* slider root element */
1788 .slider {
1789         height:2px;
1790         position:relative;
1791         cursor:pointer;
1792         border:1px solid #333;
1793         width:200px;
1794         margin:10px 0 10px 0;
1795             float: left;
1796 }
1797
1798 /* progress bar (enabled with progress: true) */
1799 .progress {
1800         height:9px;
1801         background-color:#C5FF00;
1802         display:none;
1803         opacity:0.6;
1804 }
1805
1806 /* drag handle */
1807 .handle {
1808         background-color:#ccc;
1809         height:16px;
1810         width:8px;
1811         top:-8px;
1812         position:absolute;
1813         display:block;
1814         margin-top:1px;
1815         border:1px solid #000;
1816         cursor:move;
1817             .roundbottom();
1818             .shadow();
1819 }
1820
1821 /* the input field */
1822 .range {
1823         width: 20px!important;
1824         font-size: 8pt;
1825         margin-left: 10px;
1826         border: 0;
1827         color: @FieldHelpColor;
1828 }
1829
1830 /* buttons for the event view */
1831 .plink-event-link {
1832         float: left;
1833         margin-left: 2px;
1834 }
1835
1836 /* upload/select popup */
1837 .fbrowser {
1838         overflow: auto;
1839         position: absolute;
1840         top: 0;
1841         width: 100%;
1842         height: 100%;
1843 }
1844 .fbrowser .path {
1845         background-color: @NavbarBackground;
1846         a {     padding: 5px; margin: 0 2px; display: inline-block; }
1847         a, a:active, a:visited, a:link, a:hover { color: @Banner; text-decoration: none; outline: none;  }
1848 }
1849 .fbrowser .folders ul { list-style: url("icons/folder.png"); padding-left: 22px;}
1850 .fbrowser .list { padding: 10px; }
1851 .fbrowser.image .photo-album-image-wrapper { width: 48px; height: 48px; }
1852 .fbrowser.image a img { width: auto; height: 48px; }
1853 .fbrowser.image a p { display: none;}
1854 .fbrowser.file .photo-album-image-wrapper { float:none;  white-space: nowrap; width: 100%; height: auto; }
1855 .fbrowser.file img { display: inline; width: 16px; height: 16px}
1856 .fbrowser.file p  { display: inline; white-space: nowrap; }
1857
1858 .fbrowser .upload { clear: both; padding-top: 1em;}