]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.css.scss
Use the asset pipeline to load the sprite
[rails.git] / app / assets / stylesheets / common.css.scss
1 /* Styles common to large and small screens */
2
3 /* Default rules for the body of every page */
4
5 body {
6   font-family: 'Helvetica Neue',Arial,sans-serif;
7   font-size: 14px;
8   line-height: 20px;
9   color: #222;
10   background-color: #fff;
11   margin: 0px;
12   padding: 0px;
13 }
14
15 body.slim {
16   background-color: #f0f0f0;
17 }
18
19 /* Rules for links */
20
21 a {
22   color: #00f;
23   text-decoration: none;
24 }
25
26 a:hover {
27   text-decoration: underline;
28 }
29
30 /* Rules for horizontal lines */
31
32 hr {
33   border: none;
34   background-color: #ccc;
35   color: #ccc;
36   height: 1px;
37 }
38
39 /* Default rules for headings */
40
41 h2 {
42   margin: 5px 0;
43   font-size: 25px;
44   line-height: 30px;
45 }
46
47 /* Rules for the whole left sidebar, including the logo */
48
49 #left {
50   position: absolute;
51   top: 30px;
52   bottom: 0;
53   width: 185px;
54   font-size: 11px;
55   line-height: 12px;
56 }
57
58 /* Rules for the OpenStreetMap logo in the top left corner */
59
60 #logo {
61   display: block;
62   width: 170px;
63   min-width: 170px;
64   padding: 5px;
65   text-align: center;
66   margin: auto;
67 }
68
69 #logo img {
70   border: 0px;
71 }
72
73 #logo h1 {
74   font-size: 18px;
75   line-height: 20px;
76   text-align: center;
77   margin: 0px;
78 }
79
80 #logo h2 {
81   font-size: 10px;
82   line-height: 15px;
83   margin: 0px;
84 }
85
86 /* Rules for the site name */
87
88 #small-title {
89   display: none;
90 }
91
92 #small-title img {
93   border: 0px;
94 }
95
96 /* Rules for the introductory text displayed in the left sidebar to new users */
97
98 .sidebar-copy {
99   padding: 5px 10px;
100 }
101
102 .sidebar-copy p {
103   margin: 5px 0;
104 }
105
106 .sidebar-copy.intro {
107   margin-top: -1px;
108   border-top: 1px solid #ccc;
109 }
110
111 /*
112  * Rules for alert boxes shown in the left sidebar when important
113  * information needs to be conveyed such as when the site is
114  * undergoing maintenance.
115  */
116
117 .sidebar-alert {
118   padding: 4px 5px 4px 5px;
119   border-top: 1px solid #ccc;
120   margin-top: 4px;
121   margin-bottom: -4px;
122   background: #e00;
123   font-size: 13px;
124   font-weight: bold;
125   line-height: 17px;
126
127   p {
128     margin: 5px;
129   }
130 }
131
132 /*
133  * Rules for notice boxes shown in the left sidebar when important, but
134  * non-critical information needs to be conveyed such as notices about
135  * donation drives.
136  */
137
138 .sidebar-notice {
139   padding: 4px 5px 4px 5px;
140   border-top: 1px solid #ccc;
141   margin-top: 4px;
142   margin-bottom: -4px;
143   background: #ea0;
144   font-size: 13px;
145   line-height: 17px;
146
147   p {
148     margin: 5px;
149   }
150 }
151
152 /* Rules for the menu displayed in the left sidebar */
153
154 .left_menu {
155   margin: 0;
156   padding: 5px 10px;
157   line-height: 15px;
158   font-size: 12px;
159   list-style-type: none;
160   border-bottom: 1px solid #ccc;
161   border-top: 1px solid #ccc;
162 }
163
164 .left_menu ul {
165   padding: 0;
166   margin: 0;
167 }
168
169 .left_menu li {
170   list-style-type: none;
171   padding: 0;
172   margin: 0;
173 }
174
175 .left_menu h4 {
176   padding: 5px 0 5px 0;
177   font-size: 12px;
178   margin: 0;
179 }
180
181 .left_menu li:last-child h4 {
182   padding-top: 0;
183 }
184
185 /* Rules for SOTM advert */
186
187 #sotm {
188   width: 165px;
189   margin: 10px;
190   padding: 0px;
191   border: 0px;
192   background: #fff;
193 }
194
195 #sotm img {
196   width: 165px;
197 }
198
199 /*
200  * Rules for "optional boxes" which appear in the left sidebar on
201  * certain pages. Current users are the seach box on the main page
202  * and the tag cloud on the traces pages.
203  */
204
205 .optionalbox {
206   padding: 5px 10px;
207   margin: 5px 0;
208 }
209
210 .optionalbox h1 {
211   font-size: 14px;
212   font-weight: bold;
213   line-height: 20px;
214   margin: 0px;
215   vertical-align: bottom;
216 }
217
218 /* Rules for the search box */
219
220 .whereami {
221 }
222
223 #search_field form {
224   width: 165px;
225   margin: 0px;
226   padding: 0px;
227 }
228
229 #search_field {
230   position:relative;
231 }
232
233 #search_field input[type="text"] {
234   width: 165px;
235   font-size: 14px;
236   line-height: 15px;
237   height: 25px;
238   box-shadow: inset #DDD 0px 1px 3px;
239   box-sizing: border-box;
240   -webkit-box-sizing: border-box;
241   -moz-box-sizing: border-box;
242   -ms-box-sizing: border-box;
243 }
244
245 #search_field input[type="text"]:focus {
246   outline: none;
247   border: 1px solid #000;
248 }
249
250 #search_field input[type="submit"] {
251   width: 15px;
252   height: 15px;
253   border: 0px;
254   text-indent: -1000px;
255   overflow: hidden;
256   text-transform: capitalize;
257   padding-left: 0px;
258   padding-right: 0px;
259   background: image-url("sprite.png");
260   position: absolute;
261   top: 5px;
262   cursor: pointer;
263 }
264
265 .search_help {
266   margin: 5px 0 0 0;
267 }
268
269 .deemphasize {
270   color: #999;
271 }
272
273 .deemphasize a {
274   color: #7092FF;
275 }
276
277 /* Rules for donation request box */
278
279 .donate {
280   display: block;
281   position: relative;
282   width: 153px;
283   margin: 10px 10px 0px 10px;
284   padding: 5px;
285   border: 1px solid #AED1A0;
286   background: #cbeea7;
287   line-height: 20px;
288   text-align: center;
289   font-size: 14px;
290   border-radius: 2px;
291   -moz-border-radius: 2px;
292   color: #222;
293 }
294
295 .donate:hover {
296   background: #9ed485;
297   text-decoration: none;
298 }
299
300 .donate p {
301   text-indent: 20px;
302   margin: 0;
303 }
304
305 .donate .donate-icon {
306   width: 15px;
307   height: 15px;
308   border: 0px;
309   padding-left: 0px;
310   padding-right: 0px;
311   background: image-url("sprite.png") 0 -30px no-repeat;
312   position: absolute;
313   top: 8px;
314 }
315
316 /* Rules for Creative Commons logo button */
317
318 #cclogo {
319   margin-top: 10px;
320   margin-bottom: 10px;
321 }
322
323 /* Rules for tabbed navigation bar */
324
325 #top-bar {
326   position: absolute;
327   top: 0;
328   height: 29px;
329   border-bottom: 1px solid #ccc;
330   background: white;
331 }
332
333 #tabnav {
334   padding: 0;
335   margin: 0;
336   overflow:hidden;
337 }
338
339 #tabnav li {
340   margin: 0px;
341   padding: 0px;
342   display: inline;
343   list-style-type: none;
344 }
345
346 #tabnav a, #tabnav a:link, #tabnav a:visited {
347   background: #fff;
348   font-size: 14px;
349   line-height: 19px;
350   font-weight: bold;
351   padding: 5px 10px;
352   text-decoration: none;
353   color: #333;
354   -webkit-transition: color 200ms ease-in;
355   -moz-transition: color 200ms ease-in;
356   -o-transition: color 200ms ease-in;
357   transition: color 200ms ease-in;
358 }
359
360 body.site-index #tabnav a#viewanchor,
361 body.site-edit #tabnav a#editanchor,
362 body.changeset-list #tabnav a#historyanchor,
363 body.site-export #tabnav a#exportanchor {
364   border-bottom: 1px solid #aaa;
365   background: #9ed485;
366   color: #000;
367 }
368
369 #tabnav a:link:hover, #tabnav a:visited:hover {
370   text-decoration:underline;
371 }
372
373 #tabnav a:link.disabled,
374 #tabnav a:visited.disabled,
375 #tabnav a:link:hover.disabled,
376 #tabnav a:visited:hover.disabled {
377   color: #ccc;
378   cursor: default;
379 }
380
381 #tabnav a:link.disabled:hover,
382 #tabnav a:visited.disabled:hover,
383 #tabnav a:link:hover.disabled:hover,
384 #tabnav a:visited:hover.disabled:hover {
385   text-decoration: none;
386 }
387
388 .count-number {
389   padding: 2px 5px;
390   border-radius: 3px;
391   background: #eee;
392   margin: 0 2px;
393   font-size: 11px;
394   color: #333;
395 }
396
397 /* Rules for greeting bar in the top right corner */
398
399 #greeting {
400   height: 28px;
401   margin: 0px;
402   font-size: 13px;
403   line-height: 28px;
404 }
405
406 .greeting-bar-unread {
407   font-weight: bold;
408 }
409
410 /* Rules for the message shown in place of the map when javascript is disabled */
411
412 #noscript {
413   z-index: 20000000;
414   position: absolute;
415   top: 15px;
416 }
417
418 /* Rules for OpenLayers maps */
419
420 #map {
421   margin: 0px;
422   border: 0px;
423   padding: 0px;
424 }
425
426 .olControlAttribution {
427   bottom: 15px !important;
428   left: 0px !important;
429   right: 0px !important;
430   text-align: center;
431 }
432
433 #permalink {
434   z-index: 10000;
435   position: absolute;
436   bottom: 0px;
437   right: 0px;
438   padding: 5px;
439   background:#fff;
440   text-align: right;
441   font-size: 12px;
442 }
443
444 #permalink a {
445   padding: 5px;
446 }
447
448 .site-index #map .SimpleLayerSwitcher,
449 .site-index #map .olControlSimplePanZoom,
450 .site-export #map .SimpleLayerSwitcher,
451 .site-export #map .olControlSimplePanZoom {
452   top: 40px !important;
453 }
454
455 /* Rules for edit menu */
456
457 .menuicon {
458   padding: 5px;
459
460   &:hover {
461     background: #eee;
462     text-decoration: none !important;
463   }
464 }
465
466 .menu {
467   display: none;
468   z-index: 10000;
469   position: absolute;
470   background-color: #ffffff;
471   border: 1px solid #cccccc;
472   border-top: 0px;
473 }
474
475 .menu ul {
476   margin: 0px;
477   padding: 0px;
478 }
479
480 .menu li {
481   padding: 2px 5px;
482   margin: 0px;
483   list-style-type: none;
484   border-top: 1px solid #eee;
485   white-space: nowrap;
486 }
487
488 /* Rules for attribution text under the main map shown on printouts */
489
490 #attribution {
491   display: none;
492 }
493
494 .attribution_notice {
495   text-align: center;
496 }
497
498 /* Rules for the popout map sidebar */
499
500 #sidebar {
501   display: none;
502   position: absolute;
503   margin: 30px 0px 0px 0px;
504   padding: 0px;
505   width: 30%;
506   top: 0px;
507   bottom: 0px;
508 }
509
510 #sidebar #sidebar_content {
511   overflow: auto;
512   position: absolute;
513   font-size: 13px;
514   line-height: 15px;
515   top: 29px;
516   bottom: 0px;
517   left: 0px;
518   right: 0px;
519 }
520
521 #sidebar .sidebar_title {
522   margin: 0px;
523   padding: 3px 6px 4px 6px;
524   height: 29px;
525   font-size: 14px;
526   line-height: 15px;
527   background: #ccc;
528 }
529
530 /* Rules for the map key which appears in the popout sidebar */
531
532 #mapkey h3 {
533   font-size: 110%;
534   font-weight: normal;
535   text-align: center;
536 }
537
538 #mapkey .mapkey-table {
539   padding-left: 5px;
540   padding-right: 5px;
541 }
542
543 #mapkey .mapkey-table-key img {
544   display: block;
545   margin-left: auto;
546   margin-right: auto;
547 }
548
549 #mapkey .mapkey-table-value {
550   font-size: 90%;
551 }
552
553 /* Rules for search results which appear in the popout sidebar */
554
555 .search_searching {
556   margin-top: 5px;
557   margin-bottom: 5px;
558 }
559
560 .search_results_heading {
561   margin: 0px;
562   padding: 2px 5px;
563   border-bottom: 1px solid #ccc;
564   font-weight: bold;
565 }
566
567 .search_results_entry {
568   margin: 0px;
569   padding: 2px 5px;
570 }
571
572 .search_results_error {
573   margin: 0px;
574   padding: 2px 6px 0px;
575   color: #f00;
576 }
577
578 /* Rules for data browser information which appears in the popout sidebar */
579
580 .browse_heading {
581   margin: 0px;
582   padding: 3px 6px;
583   border: 1px solid #ccc;
584   background: #ddd;
585 }
586
587 .browse_details {
588   margin: 0px;
589   padding: 0px 6px;
590 }
591
592 /* Rules for export information which appears in the popout sidebar */
593
594 .export_heading {
595   margin: 0px;
596   padding: 2px 5px;
597   border-bottom: 1px solid #ccc;
598   font-weight: bold;
599 }
600
601 .export_bounds {
602   width: 100%;
603   text-align: center;
604 }
605
606 .export_bound {
607   margin: 5px;
608 }
609
610 .export_details {
611   padding: 2px 6px;
612 }
613
614 #export_osm {
615   display: none;
616 }
617
618 #export_mapnik {
619   display: none;
620 }
621
622 #export_osmarender {
623   display: none;
624 }
625
626 .export_hint {
627   padding: 0px 12px;
628   font-style: italic;
629 }
630
631 .export_buttons {
632   width: 100%;
633   text-align: center;
634 }
635
636 /* Rules for the main content area */
637
638 #content {
639   padding: 20px;
640   margin: 30px 0px 0px 0px;
641 }
642
643 .site-edit #content,
644 .site-index #content,
645 .site-export #content {
646   position: fixed;
647   margin-top: 0px;
648   left: 0px;
649   right: 0px;
650   top: 0px;
651   bottom: 0px;
652   padding: 0px;
653 }
654
655 .site-edit #content {
656   top: 30px;
657 }
658
659 #slim_container {
660   width: 100%;
661 }
662
663 #slim_container_content {
664   max-width: 50em;
665   background-color: #FFFFFF;
666   margin: 10px auto;
667   padding: 3px;
668   border-radius: 25px;
669   -moz-border-radius: 25px;
670   border: 1px solid #e6e6e6;
671 }
672
673 #slim_content {
674   margin: 10px;
675   margin-top: 90px;
676   max-width: 50em;
677 }
678
679 #slim_header {
680   margin: 10px;
681   position: absolute;
682   top: 0px;
683 }
684
685 #slim_header img {
686   vertical-align: middle;
687   margin-bottom: 5px;
688 }
689
690 /* Rules for text content pages */
691
692 .wide-table {
693   width: 100%;
694 }
695
696 /* Rules for the home page */
697
698 .site-index #map {
699   position: absolute;
700   top: 0px;
701   bottom: 0px;
702   left: 0px;
703   right: 0px;
704 }
705
706 .site-export #map {
707   position: absolute;
708   top: 0px;
709   bottom: 0px;
710   left: 0px;
711   right: 0px;
712 }
713
714 /* Rules for the edit page */
715
716 .site-edit #map {
717   position: absolute;
718   top: 0px;
719   bottom: 0px;
720   left: 0px;
721   right: 0px;
722   overflow: hidden;
723 }
724
725 /* Rules for the changeset list shown by the history tab etc */
726
727 #changeset_list_container {
728   position: relative;
729 }
730
731 #changeset_list {
732   width: 50%;
733   font-size: small;
734   border-collapse: collapse;
735   border-width: 0px;
736   margin-top: 1px;
737   margin-bottom: 1px;
738 }
739
740 #changeset_list td {
741   vertical-align: top;
742   padding: 3px;
743 }
744
745 #changeset_list .date {
746   white-space: nowrap;
747 }
748
749 #changeset_list .user {
750   white-space: nowrap;
751 }
752
753 #changeset_list .area {
754   white-space: nowrap;
755 }
756
757 #changeset_list .selected {
758   background-color: rgb(255, 255, 160);
759   background-color: rgba(255, 255, 85, 0.5);
760 }
761
762 #changeset_list_map {
763   position: absolute;
764   top: 0px;
765   bottom: 0px;
766   width: 49%;
767   min-height: 400px;
768   border: solid 1px black;
769 }
770
771 /* Rules for the data browser */
772
773 #browse_navigation {
774   width: 250px;
775   text-align: center;
776 }
777
778 table.browse_details th {
779   white-space: nowrap;
780 }
781
782 #browse_map {
783   width: 250px;
784 }
785
786 #browse_map #small_map {
787   width: 250px;
788   height: 300px;
789   border: solid 1px black;
790 }
791
792 #browse_map .geolink {
793   display: none;
794 }
795
796 /* Rules for the trace list shown by the traces tab etc */
797
798 #trace_list {
799   font-size: small;
800   border-collapse: collapse;
801   border-width: 0px;
802 }
803
804 #trace_list .trace_summary {
805   font-size: 12px;
806   color: gray;
807 }
808
809 #trace_list .trace_pending {
810   color: red;
811 }
812
813 #trace_list .trace_public {
814   color: green;
815 }
816
817 #trace_list .trace_identifiable {
818   color: green;
819 }
820
821 #trace_list .trace_trackable {
822   color: red;
823 }
824
825 #trace_list .trace_private {
826   color: red;
827 }
828
829 /* Rules for the user list */
830
831 #user_list {
832   width: 100%;
833   font-size: small;
834 }
835
836 #user_list tr {
837   vertical-align: middle;
838 }
839
840 #user_list p {
841   margin-top: 0px;
842   margin-bottom: 0px;
843 }
844
845 #user_list_actions {
846   margin-top: 10px;
847 }
848
849 /* Rules for the new diary entry page */
850
851 .diary_entry div#map {
852   position: relative;
853   width: 90%;
854   height: 400px;
855   border: 1px solid #ccc;
856   display: none;
857 }
858
859 /* Rules for the login page */
860
861 #login_wrapper div {
862   margin: 5px;
863   padding: 15px;
864   border-radius: 15px;
865   -moz-border-radius: 15px;
866 }
867
868 #login_login {
869   background-color: #f5f5ff;
870   border: 1px solid #f3f3ff;
871   border-radius: 15px;
872   -moz-border-radius: 15px;
873 }
874
875 #login_login h1 {
876   margin-top: 5px;
877 }
878
879 table#login_openid_buttons {
880   padding-bottom: 10px;
881 }
882
883 #login_openid_buttons td {
884   padding-left: 10px;
885   padding-right: 10px;
886   padding-top: 5px;
887   padding-bottom: 5px;
888 }
889
890 #login_openid_buttons img {
891   border: 0;
892 }
893
894 #login_signup form.button-to div {
895   margin: 0px;
896   padding: 0px;
897 }
898
899 /* Rules for the account confirmation page */
900
901 div#contributorTerms {
902   border: 1px solid black;
903   padding: 4px;
904   overflow: auto;
905   width: 95%;
906   height: 400px;
907 }
908
909 div#slim_content div#contributorTerms {
910   width: auto;
911 }
912
913 div#contributorTerms p#first {
914   margin-top: 0px;
915 }
916
917 div#contributorTerms p#last {
918   margin-bottom: 0px;
919 }
920
921 div#contributorTerms ol {
922   margin-bottom: 0px;
923 }
924
925 div#contributorTerms img {
926   display: block;
927   margin-left: auto;
928   margin-right: auto;
929   margin-top: 10%;
930 }
931
932 form#termsForm {
933   width: 95%;
934   margin-bottom: 3em;
935 }
936
937 div#slim_content form#termsForm {
938   width: auto;
939 }
940
941 p#contributorGuidance {
942   background-color: #f5f5ff;
943   border: 1px solid #f3f3ff;
944   border-radius: 15px;
945   -moz-border-radius: 15px;
946   padding: 10px;
947 }
948
949 /* Rules for the account settings page */
950
951 #accountForm {
952   margin-top: 20px;
953 }
954
955 #accountForm td {
956   padding-bottom: 10px;
957 }
958
959 #accountForm .user_map {
960   position: relative;
961   width: 500px;
962   height: 400px;
963   border: 1px solid #ccc;
964 }
965
966 #accountForm td.accountImage {
967   img {
968     vertical-align: top;
969     margin-top: 3px;
970   }
971
972   table {
973     display: inline-block;
974
975     td {
976       padding-bottom: 0px;
977     }
978   }
979 }
980
981 .nohome .location {
982   display: none;
983 }
984
985 #homerow .message {
986   display: none;
987 }
988
989 .nohome .message {
990   display: inline !important;
991 }
992
993 #accountForm input[type=submit] {
994   margin-top: 15px;
995 }
996
997 /* Rules for the user view */
998
999 .user-view .user_map {
1000   position: relative;
1001   width: 400px;
1002   height: 400px;
1003   border: 1px solid #ccc;
1004 }
1005
1006 .user-view .user_map p#no_home_location {
1007   position: absolute;
1008   top: 0px;
1009   bottom: 0px;
1010   width: 90%;
1011   height: 30%;
1012   margin: auto 5%
1013 }
1014
1015 /* Rules for the user map */
1016
1017 .user_map .olControlSimplePanZoom {
1018   display: none;
1019 }
1020
1021 .user_map .olControlZoom {
1022   display: block;
1023 }
1024
1025 /* Rules for user popups on maps */
1026
1027 .user_popup p {
1028   padding-top: 3px;
1029   padding-bottom: 3px;
1030   margin-top: 0px;
1031   margin-bottom: 0px;
1032   margin-left: 55px;
1033   margin-right: 2px;
1034 }
1035
1036 .user_popup img.user_thumbnail {
1037   float: left;
1038 }
1039
1040 /* Rules for message in/out box page */
1041
1042 .messages {
1043   width: 100%;
1044   border-collapse: collapse;
1045   border-spacing: 0px;
1046   border-width: 0px;
1047 }
1048
1049 .messages tbody tr {
1050   border-top: 1px solid #ccc;
1051 }
1052
1053 .messages .inbox-row {
1054   background: #eee;
1055 }
1056
1057 .messages tr td,
1058 .messages tr th {
1059   padding: 0px 5px;
1060 }
1061
1062 .inbox-row .inbox-mark-read {
1063   display: none;
1064 }
1065
1066 .info-line {
1067   border-bottom: 1px solid #ccc;
1068   padding: 5px 0px 4px 0px;
1069 }
1070
1071 .info-line form,
1072 .info-line form div {
1073   display: inline;
1074 }
1075
1076 .info-line .user_thumbnail_tiny {
1077   vertical-align: middle;
1078 }
1079
1080 .right {
1081   float: right;
1082 }
1083
1084 .inbox-row-unread .inbox-mark-unread {
1085   display: none;
1086 }
1087
1088 /* Rules for "flash" notice boxes shown at the top of the content area */
1089
1090 #error {
1091   border: 1px solid red;
1092   padding: 7px;
1093   background-color: #fff0f0;
1094   margin-bottom: 20px;
1095   border-radius: 5px;
1096   -moz-border-radius: 5px;
1097 }
1098
1099 #warning {
1100   border: 1px solid orange;
1101   padding: 7px;
1102   background-color: #fff6f0;
1103   margin-bottom: 20px;
1104   border-radius: 5px;
1105   -moz-border-radius: 5px;
1106 }
1107
1108 #notice {
1109   border: 1px solid green;
1110   padding: 7px;
1111   background-color: #f0fff0;
1112   margin-bottom: 20px;
1113   border-radius: 5px;
1114   -moz-border-radius: 5px;
1115 }
1116
1117 /* Rules for highlighting fields with rails validation errors */
1118
1119 .field_with_errors {
1120   padding: 2px;
1121   background-color: red;
1122   display: table;
1123 }
1124
1125 /* Rules for rails validation error boxes */
1126
1127 #errorExplanation {
1128   width: 400px;
1129   border: 2px solid red;
1130   padding: 7px;
1131   padding-bottom: 12px;
1132   margin-bottom: 20px;
1133   background-color: #f0f0f0;
1134 }
1135
1136 #errorExplanation h2 {
1137   font-weight: bold;
1138   font-size: 12px;
1139   margin: -7px;
1140   background-color: #c00;
1141   color: #fff;
1142 }
1143
1144 #errorExplanation p {
1145   color: #333;
1146   margin-bottom: 0px;
1147   padding: 5px;
1148 }
1149
1150 #errorExplanation ul li {
1151   font-size: 12px;
1152   list-style: square;
1153 }
1154
1155 /* Rules for forms */
1156
1157 .fieldName {
1158   vertical-align: top;
1159   font-weight: bold;
1160   font-size: 12px;
1161   line-height: 20px;
1162 }
1163
1164 .minorNote {
1165   font-size: 0.8em;
1166 }
1167
1168 input[type="text"],
1169 input[type="email"],
1170 input[type="url"],
1171 input[type="password"],
1172 textarea {
1173   border: 1px solid #ccc;
1174 }
1175
1176 /* Rules for user images */
1177
1178 img.user_image {
1179   max-width: 100px;
1180   max-height: 100px;
1181   border: 1px solid #ccc;
1182 }
1183
1184 img.user_thumbnail {
1185   max-width: 50px;
1186   max-height: 100px;
1187   border: 1px solid #ccc;
1188 }
1189
1190 img.user_thumbnail_tiny {
1191   max-width: 25px;
1192   max-height: 25px;
1193   border: 1px solid #ccc;
1194 }
1195
1196 /* Rule for "nowrap" class that can be applied to anything to stop wrapping */
1197
1198 .nowrap {
1199   white-space: nowrap;
1200 }
1201
1202 /* Rules for geo microformats */
1203
1204 abbr.geo {
1205   border-bottom: none;
1206 }
1207
1208 /* Rules for RSS buttons */
1209
1210 .rsssmall {
1211   position: relative;
1212   top: 4px;
1213 }
1214
1215 /* Rules for doing distinct colour of alternate table rows */
1216
1217 .table0 {
1218   background: #f6f6f6;
1219 }
1220
1221 .table1 {
1222   background: #fff;
1223 }
1224
1225 /* Rules for OpenID logo */
1226
1227 .openid_logo {
1228   vertical-align: text-bottom;
1229   border: 0;
1230 }
1231
1232 /* Rules for rich text editors */
1233
1234 .richtext_container {
1235   white-space: nowrap;
1236
1237   .richtext_content {
1238     display: inline-block;
1239     vertical-align: top;
1240
1241     .richtext_preview {
1242       display: inline-block;
1243       margin-top: 1px;
1244       margin-bottom: 1px;
1245       border: 4px solid #eee;
1246       background-color: #eee;
1247       white-space: normal;
1248
1249       &.loading {
1250         background-image: image-url("loading.gif");
1251         background-repeat: no-repeat;
1252         background-position: center;
1253       }
1254
1255       > :first-child {
1256         margin-top: 0px;
1257       }
1258     }
1259   }
1260
1261   .richtext_help {
1262     display: inline-block;
1263     vertical-align: top;
1264     background-color: #ddd;
1265     padding: 5px 10px 10px 10px;
1266     font-size: 12px;
1267
1268     p {
1269       margin: 0px;
1270     }
1271
1272     th {
1273       vertical-align: top;
1274     }
1275
1276     td {
1277       font-family: fixed;
1278       line-height: 16px;
1279       padding: 0px !important;
1280     }
1281
1282     input.richtext_doedit {
1283       margin-top: 5px !important;
1284     }
1285
1286     input.richtext_dopreview {
1287       margin-top: 5px !important;
1288     }
1289   }
1290 }