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