]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Merge pull request #2464 from hikemaniac/fix-comment-textarea
[rails.git] / app / assets / stylesheets / common.scss
1 @import "parameters";
2 @import "bootstrap-custom";
3
4 /* Styles common to large and small screens */
5
6 /* Minimal CSS reset */
7
8 html, body, ul, ol, li, form, fieldset, legend, h1, h2, h3, h4, h5, h6, p, input {
9   margin: 0;
10   padding: 0;
11   border: 0;
12   font-size:100%;
13 }
14
15 fieldset,img { border: 0; }
16
17 legend { color: #000; }
18
19 sup {
20   vertical-align: super;
21   font-size: smaller;
22 }
23
24 sub {
25   vertical-align: sub;
26   font-size: smaller;
27 }
28
29 table {
30   border-collapse: collapse;
31   border-spacing: 0;
32 }
33
34 li { list-style: none; }
35
36 input,
37 select,
38 textarea,
39 body { font: #{$typeheight}/#{$lineheight} "Helvetica Neue",Arial,sans-serif; }
40
41 abbr, acronym {
42   text-decoration: underline dotted;
43   cursor: help;
44 }
45
46 strong {
47   font-weight: bold;
48 }
49
50 /* Micro Clearfix | Details: http://nicolasgallagher.com/micro-clearfix-hack/ */
51
52 .clearfix:before,
53 .clearfix:after {
54     content: " ";
55     display: table;
56 }
57
58 .clearfix:after {
59     clear: both;
60 }
61
62 /* Basic grid */
63
64 .col0    { float:left; width:04.1666%; }
65 .col1    { float:left; width:08.3333%; }
66 .col2    { float:left; width:16.6666%; }
67 .col3    { float:left; width:25.0000%; }
68 .col4    { float:left; width:33.3333%; }
69 .col5    { float:left; width:41.6666%; }
70 .col6    { float:left; width:50.0000%; }
71 .col7    { float:left; width:58.3333%; }
72 .col8    { float:left; width:66.6666%; }
73 .col9    { float:left; width:75.0000%; }
74 .col10   { float:left; width:83.3333%; }
75 .col11   { float:left; width:91.6666%; }
76 .col12   { width:100%; }
77
78 .margin0  { margin-left:04.1666%; }
79 .margin1  { margin-left:08.3333%; }
80 .margin2  { margin-left:16.6666%; }
81 .margin3  { margin-left:25.0000%; }
82 .margin4  { margin-left:33.3333%; }
83 .margin5  { margin-left:41.6666%; }
84 .margin6  { margin-left:50.0000%; }
85 .margin7  { margin-left:58.3333%; }
86 .margin8  { margin-left:66.6666%; }
87 .margin9  { margin-left:75.0000%; }
88 .margin10 { margin-left:83.3333%; }
89 .margin11 { margin-left:91.6666%; }
90 .margin12 { margin-left:100.0000%; }
91
92 .fillL { background-color: white; }
93
94 /* Default rules for the body of every page */
95
96 * {
97   box-sizing: border-box;
98 }
99
100 body {
101   font-family: 'Helvetica Neue',Arial,sans-serif;
102   font-size: $typeheight;
103   line-height: 1.6666;
104   color: #222;
105   background-color: #fff;
106   margin: 0px;
107   padding: 0px;
108   text-align: left;
109   height: 100%;
110 }
111
112 p > img {
113   width: auto;
114   max-width: 100%;
115 }
116
117 small, aside {
118   font-size: 12px;
119 }
120
121 #container { position: relative; }
122
123 .column-1 {
124   width: 50%;
125   margin: 0 0 $lineheight/2 0;
126 }
127
128 .small_icon {
129   vertical-align: middle;
130   margin-right: $lineheight/4;
131 }
132
133 .red { color: $red; }
134
135 .piwik { border: 0; }
136
137 [dir=rtl] { /* no-r2 */ text-align: right; }
138
139 [dir=ltr] { /* no-r2 */ text-align: left; }
140
141 /* Rules for icons */
142
143 .icon {
144   display: inline-block;
145   vertical-align: top;
146   width: 20px;
147   height: 20px;
148   background: transparent image-url("sprite.png") no-repeat 0 0;
149   background-image: image-url("sprite.svg");
150   text-indent: -9999px;
151   overflow: hidden;
152 }
153
154 .icon.search      { /* no-r2 */ background-position: 0 0; }
155 .icon.donate      { /* no-r2 */ background-position: -20px 0; }
156 .icon.zoomin      { /* no-r2 */ background-position: -40px 0; }
157 .icon.zoomout     { /* no-r2 */ background-position: -60px 0; }
158 .icon.geolocate   { /* no-r2 */ background-position: -80px 0; }
159 .active .icon.geolocate   { /* no-r2 */ background-position: -80px -20px; }
160 .icon.layers      { /* no-r2 */ background-position: -100px 0; }
161 .icon.key         { /* no-r2 */ background-position: -120px 0; }
162 .icon.share       { /* no-r2 */ background-position: -140px 0; }
163 .icon.clipboard   { /* no-r2 */ background-position: -160px 0; }
164 .icon.link        { /* no-r2 */ background-position: -180px 0; }
165 .icon.close       { /* no-r2 */ background-position: -200px 0; }
166 .close-wrap:hover .icon.close,
167 .icon.close:hover { /* no-r2 */ background-position: -200px -20px; }
168 .icon.check       { /* no-r2 */ background-position: -220px 0; }
169 .icon.note        { /* no-r2 */ background-position: -240px 0; }
170 .icon.note.grey   { /* no-r2 */ background-position: -240px -20px; }
171 .icon.query       { /* no-r2 */ background-position: -260px 0; }
172
173 /* Rules for links */
174
175 a {
176   color: #24d;
177   text-decoration: none;
178   -webkit-appearance: none;
179   outline: 0;
180   &:hover {
181     text-decoration: underline;
182   }
183 }
184
185 /* Rules for horizontal lines */
186
187 hr {
188   border: none;
189   background-color: $grey;
190   color: $grey;
191   height: 1px;
192 }
193
194 /* General styles for tables */
195
196 table {
197   width: 100%;
198   margin-bottom: $lineheight;
199   th, td {
200     text-align: left;
201     padding: $lineheight/4;
202     line-height: $lineheight;
203   }
204   th {
205     font-weight: 600;
206     vertical-align: top;
207   }
208   td {
209     vertical-align: middle;
210   }
211 }
212
213 /* Utility for de-emphasizing content */
214
215 .deemphasize {
216   color: $darkgrey;
217   a {
218     color: $blue;
219   }
220 }
221
222 /* Rules for the header */
223
224 #menu-icon {
225   display: none !important;
226   float: right;
227   background: image-url("menu-icon.png") no-repeat;
228   background-size: 30px 30px;
229   display: block;
230   width: 30px;
231   height: 30px;
232   margin: 14px 10px 0 0;
233   opacity: 0.6;
234 }
235
236 header {
237   height: $headerHeight;
238   position: relative;
239   z-index: 1001;
240   font-size: 14px;
241
242   h1, nav, nav > ul, nav > ul > li, .dropdown {
243     display: inline-block;
244   }
245
246   > * {
247     height: 100%;
248     padding: $lineheight/2;
249   }
250
251   h1, nav.primary {
252     float: left;
253   }
254
255   a, a:hover {
256     text-decoration: none;
257   }
258
259   img.logo {
260     width: 30px;
261     height: 30px;
262     margin-top: -2px;
263     vertical-align: middle;
264   }
265
266   h1 {
267     font-size: 18px;
268     font-weight: 600;
269     line-height: 1.2;
270     margin: 0;
271     padding-top: 15px;
272
273     a {
274       color: #000;
275     }
276
277     a:hover {
278       color: #000;
279     }
280   }
281 }
282
283 nav.primary {
284   > ul {
285     $border: 1px solid $green;
286
287     border: $border;
288     border-radius: $border-radius;
289
290     > li {
291       border-right: $border;
292       float: left;
293       &:last-child {
294         border-right: 0;
295       }
296       > a:hover { background: lighten($green, 30%); }
297       &.current > a:hover { background: $green; }
298       &.disabled > a:hover { background: lighten($green, 38%); }
299       &.dropdown {
300         > a.tab { border-right: 1px solid lighten($green, 30%); }
301         &.current > a.tab { border-right: 1px solid lighten($green, 10%); }
302       }
303     }
304   }
305
306   a.tab,
307   .dropdown-toggle {
308     display: inline-block;
309     font-weight: 500;
310     color: $green;
311     padding: 5px 15px;
312   }
313
314   .dropdown-toggle {
315     padding: 5px 6px;
316   }
317
318   .caret {
319     border-top-color: $green;
320     margin-top: 10px;
321   }
322
323   .disabled a {
324     color: $grey;
325     cursor: default;
326
327     .caret {
328       border-top-color: $grey;
329     }
330   }
331
332   > ul li.current {
333     background-color: $green;
334
335     .tab {
336       color: #fff;
337     }
338
339     .caret {
340       border-top-color: #fff;
341     }
342   }
343 }
344
345 nav.secondary {
346   position: absolute;
347   right: 0;
348
349   > ul {
350     vertical-align: middle;
351     a, .dropdown-toggle {
352       display: inline-block;
353       text-decoration: none;
354       color: $darkgrey;
355       padding: 5px;
356
357       &:hover { color: darken($darkgrey, 25%); }
358     }
359   }
360
361   > ul li.current a {
362     color: darken($darkgrey, 25%);
363   }
364
365   .user-menu {
366     $border: 1px solid $grey;
367     border: $border;
368     border-radius: $border-radius;
369     margin-left: 10px;
370
371     > li {
372       border-right: $border;
373       float: left;
374       &:last-child {
375         border-right: 0;
376
377         > a {
378           border-radius: 0 $border-radius $border-radius 0;
379         }
380       }
381       &:first-child > a { border-radius: $border-radius 0 0 $border-radius; }
382       &:hover a { background: lighten($darkgrey, 30%); }
383     }
384
385     a {
386       padding: 5px 15px;
387
388     }
389
390     &.logged-in > a {
391       padding: 0;
392       > .user-button {
393         line-height: 1.8;
394         padding: 5px 10px 3px 6px;
395         display: inline-block;
396         color: $darkgrey;
397       }
398       &:hover > .user-button { color: darken($darkgrey, 5%); }
399     }
400   }
401
402   .caret {
403     border-top-color: $grey;
404     margin-top: 9px;
405   }
406
407   img.user_thumbnail_tiny {
408     border: 0;
409     vertical-align: top;
410     margin-top: 0px;
411     margin: 4px 0 0 4px;
412     border-radius: 2px;
413   }
414
415   #inboxanchor {
416     display: inline-block;
417     vertical-align: top;
418     height: 25px;
419     margin: 3px 0 3px 3px;
420     background-color: lighten($grey, 10%);
421     line-height: 20px;
422     border-radius: 2;
423   }
424
425   .dropdown-menu {
426     left: auto;
427     right: -1px;
428     border-radius: 3px 0 3px 3px;
429
430     .count-number {
431       float: right;
432       padding: 0 5px;
433       margin: 0;
434     }
435   }
436 }
437
438 #compact-secondary-nav {
439   display: none;
440   ul li a {
441     width: 100%;
442     color: #333;
443     &:hover { color: #fff; }
444   }
445 }
446
447 body.compact {
448   #compact-secondary-nav {
449     display: inline-block;
450   }
451   .compact-hide {
452     display: none;
453   }
454 }
455
456 /* Utility for styling notification numbers */
457
458 .count-number {
459   padding: 2px $lineheight/4;
460   border-radius: 2px;
461   background: lighten($green, 30%);
462   margin: 0 2px;
463   font-size: 11px;
464   color: #333;
465 }
466
467 /* Rules for the message shown in place of the map when javascript is disabled */
468
469 #noscript {
470   z-index: 20000000;
471   margin-left: 400px;
472   margin-top: 50px;
473 }
474
475 /* Rules for Leaflet maps */
476
477 .leaflet-control .control-button {
478   display: block;
479   height: 40px;
480   width: 40px;
481   background-color: #333;
482   background-color: rgba(0,0,0,.6);
483   border-radius: 4px 0 0 4px;
484   margin-bottom: 10px;
485   outline: none;
486
487   &:hover {
488     background-color: black;
489   }
490
491   &.disabled,
492   &.leaflet-disabled {
493     background-color: #333;
494     background-color: rgba(0,0,0,.5);
495     cursor: default;
496   }
497
498   &.active {
499     background-color: $vibrant-green;
500   }
501
502   .icon {
503     margin: 10px;
504   }
505 }
506
507 .leaflet-control .zoomin,
508 .control-layers .control-button {
509   margin-bottom: 0px;
510   border-radius: 4px 0 0 0;
511 }
512
513 .leaflet-control .zoomout,
514 .control-key .control-button {
515   margin-bottom: 0;
516   border-radius: 0;
517 }
518
519 .control-locate .control-button,
520 .control-share .control-button {
521   border-radius: 0 0 0 4px;
522 }
523
524 /* Rules for the sidebar and main map area */
525
526 .map-layout {
527   #content {
528     overflow: hidden;
529     position: absolute;
530     top: $headerHeight;
531     bottom: 0;
532     width: 100%;
533   }
534
535   #sidebar, #map {
536     position: relative;
537     height: 100%;
538     overflow-x: hidden;
539     overflow-y: auto;
540   }
541
542   #sidebar {
543     float: left;
544     width: $sidebarWidth;
545     background: #fff;
546     font-size: 12px;
547
548     #sidebar_loader {
549       display: none;
550     }
551
552     > div {
553       position: relative;
554       float: left;
555       clear: both;
556       width: 100%;
557     }
558
559     h2 {
560       padding: $lineheight $lineheight $lineheight/2;
561     }
562
563     h3, h4 {
564       margin-top: $lineheight;
565       margin-bottom: $lineheight/2;
566       font-size: 13px;
567     }
568
569     .close-wrap {
570       cursor: pointer;
571       position: absolute;
572       top: 0;
573       right: 0;
574       width: 60px;
575       height: 60px;
576
577       .icon.close {
578         pointer-events: none;
579         position: absolute;
580         right: 20px;
581         top: 20px;
582       }
583     }
584
585     .icon.close {
586       float: right;
587       cursor: pointer;
588     }
589
590     .flash {
591       padding: 15px;
592
593       picture {
594         margin-right: -25px;
595       }
596
597       div.message {
598         margin-left: 30px;
599       }
600     }
601   }
602
603   .overlay-sidebar #sidebar {
604     position: absolute;
605     z-index: 1000;
606     height: auto;
607     overflow: hidden;
608
609     #banner {
610       display: block;
611     }
612
613     .welcome {
614       display: none;
615
616       &.visible {
617         display: block;
618       }
619     }
620
621     #sidebar_content {
622       display: none;
623     }
624   }
625
626   .welcome {
627     display: none;
628     padding-bottom: 5px;
629
630     p {
631       padding: $lineheight/2 $lineheight $lineheight;
632       font-size: 110%;
633       font-weight: 300;
634     }
635
636     .button {
637       width: 50%;
638       float: left;
639       margin: 0;
640       border-radius: 0;
641       font-weight: normal;
642       padding: .6em;
643
644       &.learn-more {
645         border-right: 1px solid #fff;
646       }
647     }
648   }
649
650   #banner {
651     display: none;
652
653     img {
654       display: block;
655       width: $sidebarWidth;
656     }
657   }
658
659   #map {
660     height: 100%;
661     overflow: hidden;
662
663     &.query-active {
664       cursor: help;
665     }
666
667     &.query-disabled {
668       cursor: not-allowed;
669     }
670
671     .leaflet-marker-draggable {
672       cursor: move;
673     }
674   }
675
676   #map-ui {
677     display: none;
678     position: relative;
679     float: right;
680     width: 250px;
681     height: 100%;
682     background: white;
683     overflow: auto;
684
685     .section {
686       border-bottom: 1px solid $grey;
687       padding: 10px 20px;
688     }
689
690     a.close-button {
691       float: right;
692       padding:5px;
693       font-size:20px;
694       line-height:10px;
695       color:#222;
696       border:1px solid $grey;
697     }
698
699     .tooltip {
700       opacity: 1;
701       border: 1px solid $grey;
702       .tooltip-arrow {
703         border-top-color: $grey;
704       }
705     }
706   }
707 }
708
709 .layers-ui,
710 .share-ui {
711   li:last-child {
712     margin-bottom: 0;
713   }
714 }
715
716 .layers-ui {
717   .base-layers {
718     .leaflet-container {
719       width: 100%;
720       height: 50px;
721       cursor: pointer;
722     }
723
724     li  {
725       overflow: hidden;
726       border-radius: 3px;
727       border: 2px solid #fff;
728       margin-bottom: 8px;
729       position: relative;
730       transition: border-color 0.08s ease-in;
731
732       label {
733         position: absolute;
734         top: 0;
735         left: 0;
736         padding: 2px 6px;
737         border-bottom-right-radius: 3px;
738         cursor: pointer;
739         font-weight: 600;
740         font-size: 16px;
741         text-stroke: 2px #fff;
742         background: rgba(255,255,255,.9);
743         z-index: 1000;
744         input[type="radio"] {
745           display: none;
746         }
747       }
748
749       &.active { border-color: darken($green, 10%); }
750       &:hover {
751         border-color: $grey;
752         &.active { border-color: darken($green, 20%); }
753       }
754     }
755   }
756
757   .overlay-layers {
758     p {
759       font-size: 13px;
760       margin-bottom: 8px;
761     }
762     li.disabled { color: $darkgrey; }
763   }
764 }
765
766 .share-ui {
767   .share-tabs {
768     margin-bottom: 10px;
769
770     a {
771       color: #fff;
772       text-decoration: none;
773       background-color: $lightblue;
774       padding: 5px 10px;
775       border-right: 1px solid #fff;
776     }
777
778     a:first-child {
779       border-right: 1px solid #fff;
780       border-radius: 4px 0 0 4px;
781     }
782
783     a:last-child {
784       border-radius: 0 4px 4px 0;
785     }
786
787     a.active {
788       background-color: $blue;
789     }
790   }
791
792   .share-tab {
793     display: none;
794   }
795
796   .share-link {
797     input[type=text],
798     textarea {
799       width: 100%;
800       font-family: monospace;
801       font-size: small;
802       line-height: 1.3;
803     }
804   }
805
806   .share-image {
807     label {
808       margin-right: 10px;
809     }
810   }
811
812   #embed_html {
813     resize: vertical;
814   }
815
816   #mapnik_scale {
817     width: 100px;
818   }
819 }
820
821 .leaflet-top {
822   top: $lineheight/2 !important;
823   .leaflet-control {
824     margin-right: 0px !important;
825     margin-top: 0px !important;
826   }
827 }
828
829 .leaflet-popup-scrolled {
830   padding-right: $lineheight;
831   border-bottom: 0px !important;
832   border-top: 0px !important;
833 }
834
835 .leaflet-popup-content-wrapper {
836   border-radius: 4px !important;
837 }
838
839 /* Rules for attribution text under the main map shown on printouts */
840
841 #attribution {
842   display: none;
843
844   table {
845     width: 100%
846   }
847 }
848
849 .attribution_license,
850 .attribution_project {
851   text-align: left;
852 }
853
854 .attribution_notice {
855   text-align: center;
856 }
857
858 .donate-attr { color: darken($green, 10%) !important; }
859
860 /* Rules for the sidebar */
861
862 .sidebar_heading {
863   position: relative;
864   padding: $lineheight/2 $lineheight;
865   // background: $offwhite;
866   // border-bottom: 1px solid $grey;
867   > .close {
868     float: right;
869     margin-top: 2px;
870     cursor: pointer;
871   }
872 }
873
874 #browse_status {
875   p {
876     padding: $lineheight;
877   }
878
879   input {
880     display: block;
881     margin-left: auto;
882     margin-right: auto;
883   }
884 }
885
886 #sidebar {
887   #sidebar_loader,
888   .search_more {
889     width: 100%;
890     margin: $lineheight auto;
891   }
892
893   .loader,
894   .load_more {
895     text-align: center;
896     margin: auto;
897     width: 40px;
898     display: block;
899   }
900 }
901
902 /* Rules for the search and direction forms */
903
904 header .search_forms,
905 .directions_form {
906   display: none;
907 }
908
909 .search_form,
910 .directions_form {
911   position: relative;
912   padding: $lineheight/2;
913   background-color: $lightgrey;
914
915   .query_wrapper {
916     position: relative;
917     overflow: hidden;
918     border-radius: 2px 0 0 2px;
919   }
920
921   input[type=text] {
922     width: 100%;
923     height: 30px;
924     transition: 300ms linear;
925   }
926
927   input[type=text].overflow {
928     border-right: none;
929   }
930
931   input:focus {
932     outline: none;
933     box-shadow: 0px 0px 7px $vibrant-green;
934   }
935
936   input[type=submit].float {
937     float: right;
938     width: auto;
939     min-width: 0;
940     border-radius: 0 2px 2px 0;
941   }
942
943   input.error {
944     background-color: rgba($red, 0.4);
945   }
946
947   select {
948     /* this next line is to polyfill the vertical alignment of text within a select element,
949      * which is different between firefox and chrome. */
950     padding: 0.3em 0;
951   }
952
953   .query_options {
954     text-align: right;
955     font-size: 10px;
956     color: $blue;
957   }
958
959   .describe_location {
960     position: absolute;
961     top: 6px;
962     right: 6px;
963     font-size: 10px;
964     color: $blue;
965   }
966
967   .switch_link {
968     float: right;
969     width: auto;
970     min-width: 0;
971     margin-left: 6px;
972   }
973
974   img.button {
975     display: block;
976     width: 20px;
977     height: 20px;
978   }
979
980   span.force_width {
981     width: 100%;
982     padding-right: 25px;
983     display: block;
984   }
985
986   select.routing_engines {
987     min-height: 30px;
988     margin: 0px 0px 5px 25px;
989   }
990
991   input.routing_go {
992     min-width: 100px;
993     float: right;
994   }
995
996   div.header {
997     width: 100%;
998     height: 30px;
999   }
1000
1001   div.line {
1002     width: 100%;
1003     margin: 0px 0px 5px 0px;
1004   }
1005
1006   div.loader_copy {
1007     display: none;
1008
1009     img {
1010       vertical-align: middle;
1011     }
1012   }
1013
1014   a.reverse_directions {
1015     cursor: pointer;
1016     margin: 0px 0px 5px 25px;
1017   }
1018 }
1019
1020 /* Rules for the map key which appears in the popout sidebar */
1021
1022 #mapkey {
1023  .mapkey-table-key img {
1024     display: block;
1025     margin-left: auto;
1026     margin-right: auto;
1027   }
1028   td {
1029     padding: 0 $lineheight/4 $lineheight/4 $lineheight/4;
1030   }
1031 }
1032
1033 /* Rules for search sidebar */
1034
1035 #sidebar .search_results_entry {
1036   ul li {
1037     border-bottom: $keyline;
1038     cursor: pointer;
1039     &:first-child { border-top: $keyline; }
1040     &.selected { background: $list-highlight; }
1041   }
1042
1043   .search_more .loader {
1044     display: none;
1045     width: 100%;
1046   }
1047 }
1048
1049 .search_results_error {
1050   color: #f00;
1051   padding: 10px 20px;
1052 }
1053
1054 /* Rules for routing */
1055
1056 #sidebar_content>table {
1057     padding: 5px 20px 10px 15px;
1058     width: 100%;
1059     border-collapse: separate;
1060 }
1061
1062 div.direction {
1063   background-image: image-url('routing-sprite.png');
1064   width: 20px;
1065   height: 20px;
1066   background-repeat: no-repeat;
1067 }
1068 @for $i from 0 through 25 {
1069 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
1070 }
1071
1072 p#routing_summary {
1073     padding: 0 $lineheight $lineheight/4;
1074 }
1075
1076 td.instruction, td.distance {
1077     padding-top: $lineheight/5;
1078     padding-bottom: $lineheight/5;
1079     border-bottom: 1px solid $grey;
1080 }
1081 td.distance {
1082     color: $darkgrey;
1083     text-align: right;
1084     font-size: x-small;
1085 }
1086 tr.turn {
1087     cursor: pointer;
1088 }
1089 tr.turn:hover {
1090     background: $list-highlight;
1091 }
1092 .routing_engines, #route_from, #route_to { margin-left: 25px; }
1093 .routing_marker { width: 15px; position: absolute; cursor: move; }
1094
1095 /* Rules for entity history */
1096
1097 #sidebar_content {
1098   .browse_details {
1099     position: relative;
1100     border-bottom: $keyline;
1101   }
1102 }
1103
1104 .browse_status {
1105   display: none;
1106 }
1107
1108 /* Rules for the history sidebar */
1109
1110 #sidebar .changesets {
1111   li {
1112     padding: 15px 20px;
1113     border-bottom: 1px solid $grey;
1114     cursor: pointer;
1115
1116     &.selected { background: $list-highlight; }
1117     /* color is derived from changeset bbox fillColor in history.js */
1118   }
1119
1120   h4 {
1121     margin: 0;
1122     a {
1123       color: #000;
1124     }
1125   }
1126
1127   .comments {
1128     float: right;
1129     color: $darkgrey;
1130   }
1131
1132   .comments-0 {
1133     opacity: 0.5;
1134   }
1135
1136   .changeset_more .loader {
1137     display: none;
1138     width: 100%;
1139   }
1140 }
1141
1142 /* Rules for the browse sidebar */
1143
1144 #sidebar_content {
1145   .browse-section {
1146     padding: $lineheight/2 $lineheight;
1147     border-bottom: 1px solid $grey;
1148
1149     h4:first-child {
1150       margin-top: 0;
1151       word-wrap: break-word;
1152     }
1153   }
1154
1155   .browse-section:last-of-type {
1156     border-bottom: none;
1157   }
1158
1159   .paginate {
1160     float: right;
1161     padding: 1px 6px;
1162     border: 1px solid $lightgrey;
1163     border-radius: 3px;
1164   }
1165
1166   .paginate ul {
1167     padding-left: 20px;
1168   }
1169
1170   .browse-field {
1171     margin-bottom: 10px;
1172
1173     h4 {
1174       padding: 5px 0 5px 10px;
1175       font-size: 12px;
1176       border: 1px solid $grey;
1177       border-radius: 4px 4px 0 0;
1178       background-color: #F6F6F6;
1179     }
1180
1181     p {
1182       padding: 7px 10px;
1183       font-size: 12px;
1184       background-color: #FFF;
1185       border: 1px solid $grey;
1186       border-top: 0;
1187       border-radius: 0 0 4px 4px;
1188     }
1189   }
1190
1191   .browse-tag-list {
1192     background-color: #F6F6F6;
1193     border: 1px solid $grey;
1194     border-radius: 3px;
1195     font-size: 12px;
1196     table-layout: fixed;
1197     border-collapse: separate;
1198
1199     th, td {
1200       border-bottom: 1px solid $grey;
1201     }
1202
1203     tr:last-child th, tr:last-child td {
1204       border-bottom: 0;
1205     }
1206
1207     .browse-tag-k,
1208     .browse-tag-v {
1209       width: 50%;
1210       padding: 6px 10px;
1211       word-wrap: break-word;
1212       white-space: pre-wrap;
1213     }
1214
1215     .browse-tag-k {
1216       font-weight: 500;
1217       background-color: #F6F6F6;
1218     }
1219
1220     .browse-tag-v {
1221       border-left: 1px solid $grey;
1222       background-color: #fff;
1223     }
1224
1225     .colour-preview-box {
1226       float: right;
1227       width: 12px;
1228       height: 12px;
1229       margin: 4px 0px;
1230       border: 1px solid rgba(0, 0, 0, .1);
1231       // add color via inline css on element: background-color: <tag value>;
1232     }
1233   }
1234
1235   .warning {
1236     margin: 0 0 $lineheight/2 0;
1237     padding: 0 $lineheight/2;
1238   }
1239
1240   .note-comments li, .changeset-comments li {
1241     margin: $lineheight/2 0;
1242
1243     p {
1244       margin: 10px 6px 0 6px;
1245       line-height: 1.5;
1246     }
1247   }
1248
1249   .comments-header {
1250     float: left;
1251   }
1252
1253   .subscribe-buttons {
1254     float: left;
1255     margin: 18px 10px 10px;
1256     min-width: 80px;
1257   }
1258
1259   .subscribe-buttons input {
1260     font-size: 90%;
1261     line-height: 15px;
1262     min-height: 20px;
1263   }
1264
1265   span.action-button:hover {
1266     cursor: pointer;
1267     text-decoration: underline;
1268   }
1269
1270   .note-description {
1271     overflow: hidden;
1272     margin: 0 0 10px 10px;
1273   }
1274
1275   .query-intro p {
1276     padding: $lineheight $lineheight $lineheight/2;
1277   }
1278
1279   .query-results {
1280     display: none;
1281
1282     h3 {
1283       padding: $lineheight $lineheight $lineheight/2;
1284       margin: 0;
1285     }
1286
1287     ul {
1288       li {
1289         padding: 15px 20px;
1290         border-bottom: 1px solid $grey;
1291
1292         &.query-result {
1293           cursor: pointer;
1294         }
1295
1296         &.selected {
1297           background: $list-highlight;
1298         }
1299       }
1300     }
1301   }
1302 }
1303
1304 /* Rules for export sidebar */
1305
1306 .export_form {
1307   padding: $lineheight;
1308
1309   .export_area_inputs,
1310   .export_button {
1311     text-align: center;
1312   }
1313
1314   .export_area_inputs {
1315     margin-bottom: $lineheight/2;
1316     input[type="text"] {
1317       width: 80px;
1318       text-align: center;
1319       margin-bottom: 5px;
1320     }
1321   }
1322
1323   .export_boxy {
1324     background: $lightgrey;
1325     border: 1px solid $grey;
1326     border-radius: 3px;
1327
1328     #maxlat { margin-top: -1px; }
1329     #minlon {
1330       float: left;
1331       /* no-r2 */ margin-left: -1px;
1332     }
1333     #maxlon {
1334       float: right;
1335       /* no-r2 */ margin-right: -1px;
1336     }
1337     #minlat { margin-bottom: 0; }
1338   }
1339
1340   .export_bound {
1341     margin: $lineheight/4;
1342   }
1343
1344   .export_button {
1345     margin-top: $lineheight;
1346     margin-bottom: $lineheight;
1347   }
1348
1349   dl {
1350     padding-left: $lineheight/2;
1351     dd {
1352       margin-left: 0;
1353       margin-bottom: 10px;
1354     }
1355   }
1356 }
1357
1358 /* Rules for the routing sidebar */
1359
1360 #sidebar_content {
1361   #routing_credit {
1362     text-align: center;
1363     padding: 0.5em;
1364   }
1365 }
1366
1367 /* Rules for edit pages */
1368
1369 .site-edit {
1370   #content {
1371     position: absolute;
1372     top: $headerHeight;
1373     bottom: 0;
1374     width: 100%;
1375   }
1376
1377   #map {
1378     height: 100%;
1379     overflow: hidden;
1380   }
1381 }
1382
1383 /* Rules for non-map content pages */
1384
1385 .content-heading {
1386   background: $lightgrey;
1387
1388   h1 { font-size: 22px; }
1389 }
1390
1391 .content-body {
1392   h1, h2, h3, p, ul, ol {
1393     margin-bottom: $lineheight;
1394   }
1395
1396   h1, h2, h3 {
1397     margin-top: $lineheight/2;
1398   }
1399 }
1400
1401 .content-inner {
1402   position: relative;
1403   max-width: 900px;
1404   margin: auto;
1405   padding: $lineheight;
1406 }
1407
1408 /* Overrides for pages that use new layout conventions */
1409
1410 .users-new,
1411 .users-create,
1412 .users-terms {
1413   .content-body .content-inner {
1414     padding: 0;
1415
1416     .message {
1417       margin-top: 80px;
1418       padding: 20px;
1419     }
1420   }
1421 }
1422
1423 .users-new,
1424 .users-create,
1425 .users-terms,
1426 .users-confirm {
1427   .content-heading .content-inner {
1428     height: 200px;
1429   }
1430 }
1431
1432 .header-illustration {
1433   background-position: 0 0;
1434   background-repeat: no-repeat;
1435   position: absolute;
1436   height: 200px;
1437   width: 100%;
1438   left: 0;
1439   bottom: 0;
1440
1441   &.new-user-main {
1442     background-image: image-url("sign-up-illustration.png");
1443   }
1444
1445   &.confirm-main {
1446     background-image: image-url("confirm-illustration.png");
1447   }
1448
1449   &.new-user-terms {
1450     background-image: image-url("terms-illustration.png");
1451   }
1452
1453   &.new-user-arm {
1454     height: 110px;
1455     width: 130px;
1456     left: 260px;
1457     top: 160px;
1458     background-image: image-url("sign-up-illustration-arm.png");
1459     z-index: 100;
1460   }
1461 }
1462
1463 [dir=rtl] .header-illustration {
1464   transform: scaleX(-1);
1465 }
1466
1467 #content.maximised {
1468   top: 0;
1469   left: 0;
1470   right: 0;
1471   bottom: 0;
1472   border: 0;
1473   z-index: 2000;
1474 }
1475
1476 /* Rules for small maps in content areas */
1477
1478 .content_map {
1479   position: relative;
1480   width: 45%;
1481   height: 400px;
1482   border: 1px solid $grey;
1483   margin-bottom: $lineheight;
1484   float: right;
1485 }
1486
1487 /* Rules for the trace list shown by the traces tab etc */
1488
1489 #trace_list {
1490   font-size: $lineheight/2;
1491   border-width: 0px;
1492   text-align: right;
1493
1494   .trace_summary {
1495     font-size: 12px;
1496     color: gray;
1497   }
1498
1499   .trace_pending {
1500     color: red;
1501   }
1502
1503   .trace_public {
1504     color: green;
1505   }
1506
1507   .trace_identifiable {
1508     color: green;
1509   }
1510
1511   .trace_trackable {
1512     color: red;
1513   }
1514
1515   .trace_private {
1516     color: red;
1517   }
1518 }
1519
1520 /* Rules for the trace view */
1521
1522 .trace-show {
1523   .trace_pending {
1524     color: red;
1525   }
1526
1527   .geo {
1528     display: inline;
1529   }
1530 }
1531
1532 /* Rules for the new trace form */
1533
1534 #new_trace {
1535   input[type=text] {
1536     width: 50%;
1537     width: calc(100% - 150px);
1538     max-width: 500px;
1539   }
1540 }
1541
1542 /* Rules for the edit trace form */
1543
1544 .edit_trace {
1545   .form-row p {
1546     margin-bottom: 0px;
1547   }
1548
1549   input[type=text] {
1550     width: 50%;
1551     width: calc(100% - 150px);
1552     max-width: 500px;
1553   }
1554 }
1555
1556 /* Rules for the user profile page */
1557
1558 #userinformation {
1559
1560   min-height: 100px;
1561   .userinformation-inner {
1562     float: left;
1563   }
1564   h2 {
1565     margin-top: 0;
1566   }
1567   .user-description {
1568     width: 100%;
1569     clear: both;
1570   }
1571   .deemphasize {
1572     margin: 0;
1573   }
1574 }
1575
1576 .admin-user-info small {
1577   margin-bottom: $lineheight/2;
1578   display: inline;
1579   margin-right: $lineheight;
1580 }
1581
1582 .activity-block {
1583   clear: left;
1584   border-bottom: 1px solid $grey;
1585   padding-bottom: $lineheight;
1586   float: left;
1587   h3 {
1588     margin-bottom: $lineheight/2;
1589   }
1590 }
1591
1592 .contact-activity {
1593   margin-top: $lineheight;
1594   width: 100%;
1595 }
1596
1597 .activity-details p {
1598   margin-left: 70px;
1599   margin-bottom: 0;
1600 }
1601
1602 #friends-container .contact-activity ul {
1603   margin-left: 70px;
1604 }
1605
1606 .users-show {
1607   // Silly exception; remove when user page is redesigned.
1608   .content-inner {
1609     max-width: none;
1610   }
1611   p#no_home_location {
1612     margin: $lineheight;
1613   }
1614   .user_thumbnail {
1615     margin-top: $lineheight/4;
1616     float: left;
1617   }
1618 }
1619
1620 /* Rules for the user map */
1621
1622 .content_map .leaflet-popup-content {
1623   margin: $lineheight/2;
1624   min-height: 50px;
1625 }
1626
1627 /* Rules for user popups on maps */
1628
1629 .user_popup {
1630   min-width: 200px;
1631   p {
1632     padding: 0 0 5px 0;
1633     margin-top: 0 0 0 60px;
1634     font-size: 12px;
1635   }
1636   img.user_thumbnail {
1637     float: left;
1638     margin: 0 $lineheight/2 0 0;
1639   }
1640 }
1641
1642 /* Rules for the user list */
1643
1644 #user_list {
1645   font-size: $lineheight/2;
1646   width: 100%;
1647
1648   tr {
1649     vertical-align: middle;
1650   }
1651
1652   p {
1653     margin-top: 0px;
1654     margin-bottom: 0px;
1655   }
1656 }
1657
1658 #user_list_actions {
1659   float: right;
1660   margin-top: $lineheight/2;
1661 }
1662
1663 /* Rules for the diary list page */
1664
1665 .diary_post {
1666   position: relative;
1667   padding-top: $lineheight;
1668   padding-bottom: $lineheight/2;
1669   border-top: 1px solid $grey;
1670
1671   &:first-of-type {
1672     margin-top: $lineheight/2;
1673   }
1674
1675   &.deemphasize {
1676     background-color: #fee;
1677   }
1678
1679   .post_heading {
1680     margin-bottom: $lineheight;
1681
1682     h2 {
1683       margin-top: 0;
1684       margin-bottom: $lineheight/2;
1685       font-size: 24px;
1686     }
1687   }
1688
1689   img.user_thumbnail {
1690     float: left;
1691   }
1692
1693   small.deemphasize {
1694     float: left;
1695     display: block;
1696   }
1697 }
1698
1699 .pagination {
1700   padding-top: $lineheight;
1701 }
1702
1703 /* Rules for the diary entry page */
1704
1705 .diary_entries {
1706   #map {
1707     position: relative;
1708     width: 90%;
1709     height: 400px;
1710     border: 1px solid $grey;
1711     display: none;
1712     margin-bottom: $lineheight;
1713   }
1714   #newcomment {
1715     border-top: 1px solid $grey;
1716     padding-top: $lineheight;
1717     margin-top: $lineheight/2;
1718   }
1719   .comments {
1720     max-width: 740px;
1721   }
1722   .diary-comment {
1723     border-top: 1px dashed $grey;
1724     padding-top: $lineheight/2;
1725     padding-bottom: $lineheight/2;
1726     &:first-child {
1727       margin-top: $lineheight/2;
1728       padding-top: $lineheight;
1729       border-top: 1px solid $grey;
1730     }
1731     &.deemphasize {
1732       background-color: #fee;
1733     }
1734     p {
1735       margin-bottom: $lineheight/2;
1736     }
1737     .comment-heading {
1738       margin-bottom: 0;
1739       margin-top: 0;
1740     }
1741   }
1742 }
1743
1744 .diary_entries-show img.user_thumbnail {
1745   float: left;
1746 }
1747
1748
1749 .diary-subscribe-buttons {
1750   position:relative;
1751   top: -30px;
1752   left: 130px;
1753 }
1754
1755 /* Rules for the log in page */
1756
1757 #login_auth_buttons {
1758   margin-bottom: 0;
1759 }
1760
1761 #login_auth_buttons li {
1762   float: left;
1763   padding: $lineheight/4 $lineheight/2;
1764 }
1765
1766 /* Rules for the account confirmation page */
1767
1768 .users-terms {
1769   .legale {
1770     border: 1px solid $grey;
1771     padding: $lineheight;
1772     margin-bottom: $lineheight;
1773     overflow: auto;
1774     height: 20em;
1775
1776     li {
1777       list-style: inherit;
1778     }
1779
1780     ol ol {
1781       list-style-type: lower-alpha;
1782     }
1783   }
1784
1785   #decline {
1786     background: $lightblue;
1787     &:hover {
1788       background: darken($lightblue, $hovercolor);
1789     }
1790   }
1791 }
1792
1793 /* Rules for the account settings page */
1794
1795 #accountForm .user_map {
1796   position: relative;
1797   width: 500px;
1798   height: 400px;
1799   border: 1px solid $grey;
1800 }
1801
1802 #accountForm .user_image {
1803   margin-bottom: 0;
1804 }
1805
1806 #accountForm #user_image {
1807   margin-left: 20px;
1808 }
1809
1810 #accountForm ul.accountImage-options {
1811   margin-left: 120px;
1812 }
1813
1814 .nohome .location {
1815   display: none;
1816 }
1817
1818 #homerow .message {
1819   display: none;
1820 }
1821
1822 .nohome .message {
1823   display: inline !important;
1824 }
1825
1826 .content_map.settings_map {
1827   width: 50%;
1828   float: none;
1829 }
1830
1831 /* Rules for the oauth settings page */
1832
1833 .oauth_clients .buttons .oauth-edit {
1834   border-radius: 2px 0 0 2px;
1835 }
1836
1837 .oauth_clients .buttons .oauth-delete {
1838   border-radius: 0 2px 2px 0;
1839 }
1840
1841 /* Rules for the oauth authorization page */
1842
1843 .oauth-authorize ul {
1844   list-style: none;
1845 }
1846
1847 /* Rules for messages pages */
1848
1849 .messages {
1850   width: 100%;
1851   border: 1px solid $grey;
1852
1853   input[type="submit"] {
1854     margin: auto;
1855   }
1856   tbody tr {
1857     border-top: 1px solid $grey;
1858   }
1859
1860   .inbox-row {
1861     background: $offwhite;
1862   }
1863
1864   .inbox-row-unread {
1865     background:#CBEEA7;
1866   }
1867
1868   .right {
1869     float: right;
1870   }
1871
1872   tr td,
1873   tr th {
1874     padding: $lineheight/4;
1875   }
1876   p:last-child,
1877   h2:last-child,
1878   h3:last-child,
1879   ol:last-child,
1880   ul:last-child {
1881     margin-bottom:0;
1882   }
1883   tr td {
1884     height: 30px;
1885     border-right: 1px solid $lightgrey;
1886   }
1887 }
1888
1889 .inbox-row .inbox-mark-read {
1890   display: none;
1891 }
1892
1893 .info-line {
1894   margin-bottom: $lineheight;
1895   padding: $lineheight/4 0px 4px 0px;
1896   border-bottom: 1px solid $grey;
1897
1898   form, form div {
1899     display: inline;
1900   }
1901 }
1902
1903 .info-line .user_thumbnail_tiny {
1904   vertical-align: middle;
1905 }
1906
1907 .inbox-sent {
1908   white-space: nowrap;
1909 }
1910
1911 .inbox-mark-unread,
1912 .inbox-mark-read,
1913 .inbox-delete {
1914   width: 1%;
1915 }
1916
1917 .inbox-row-unread .inbox-mark-unread {
1918   display: none;
1919 }
1920
1921 .messages-show .message-buttons {
1922   margin-top: $lineheight;
1923   margin-bottom: $lineheight * 1.5;
1924   padding-top: $lineheight;
1925   border-top: 1px solid $lightgrey;
1926 }
1927
1928 .messages-show .buttons .mark-unread-button {
1929   border-radius: 0;
1930 }
1931
1932 /* Rules for "flash" notice boxes shown at the top of the content area */
1933
1934 .flash {
1935   padding: $lineheight;
1936
1937   &.error {
1938     background-color: #ff7070;
1939   }
1940
1941   &.warning {
1942     background-color: #ffe0cc;
1943   }
1944
1945   &.notice {
1946     background-color: #CBEEA7;
1947   }
1948
1949   div.message {
1950     display: inline-block;
1951     margin-left: $lineheight / 2;
1952     vertical-align: middle;
1953
1954     p {
1955       margin-top: $lineheight * 0.5;
1956       margin-bottom: $lineheight * 0.5;
1957
1958       &:first-child {
1959         margin-top: 0px;
1960       }
1961
1962       &:last-child {
1963         margin-bottom: 0px;
1964       }
1965     }
1966   }
1967 }
1968
1969 /* Rules for highlighting fields with rails validation errors */
1970
1971 .formError {
1972   display: inline-block;
1973   padding: 5px 10px;
1974   margin-top: 5px;
1975   border-radius: 4px;
1976   font-size: 12px;
1977   color: #fff;
1978   background-color: #ff7070;
1979 }
1980
1981 /* Rules for rails validation error boxes */
1982
1983 #errorExplanation {
1984   width: 400px;
1985   border: 2px solid #ff7070;
1986   padding: 0 $lineheight/2;
1987   margin-bottom: $lineheight;
1988   background-color: #f0f0f0;
1989
1990   h2 {
1991     margin: 0 -10px 10px -10px;
1992     padding: $lineheight/4 $lineheight/4 $lineheight/4 15px;
1993     font-weight: bold;
1994     font-size: 12px;
1995     background-color: #c00;
1996     color: #fff;
1997     text-align: left;
1998   }
1999
2000   p {
2001     color: #333;
2002     margin-bottom: 0px;
2003     padding: $lineheight/4;
2004   }
2005
2006   ul {
2007     padding-left: $lineheight;
2008
2009     li {
2010       font-size: 12px;
2011       list-style: disc;
2012     }
2013   }
2014 }
2015
2016 /* Rules for forms */
2017
2018 .standard-form {
2019   fieldset {
2020     margin-bottom: $lineheight;
2021   }
2022   label.standard-label {
2023     display: block;
2024     margin-bottom: $lineheight/4;
2025     font-size: $typeheight;
2026     font-weight: bold;
2027     line-height: 1.5;
2028   }
2029   label.standard-label.secondary {
2030     display: inline-block;
2031     font-weight: normal;
2032   }
2033   .form-help {
2034     font-weight: normal;
2035   }
2036   .form-column {
2037     float: left;
2038     margin-right: 20px;
2039   }
2040   .form-divider {
2041     margin-top: $lineheight;
2042     padding-top: $lineheight;
2043     border-top: 1px solid $lightgrey;
2044   }
2045   .horizontal-list .form-row {
2046     float: left;
2047     padding-right: 10px;
2048   }
2049   .form-row {
2050     margin-bottom: $lineheight/2;
2051   }
2052   .form-list {
2053     margin-bottom: 0;
2054   }
2055   .form-list li {
2056     margin-bottom: 5px;
2057    }
2058   input[type="checkbox"],
2059   input[type="radio"] {
2060     float: left;
2061     margin-top: 5px;
2062   }
2063 }
2064
2065 #remember_me_openid {
2066   display: block;
2067 }
2068
2069 select {
2070   padding: 2px;
2071 }
2072
2073 input[type="checkbox"],
2074 input[type="radio"] {
2075     margin-right: 5px;
2076 }
2077
2078 input[type="text"],
2079 input[type="email"],
2080 input[type="url"],
2081 input[type="password"],
2082 textarea {
2083   color: #222;
2084   background-color: #fff;
2085   border: 1px solid $grey;
2086   border-radius: 3px;
2087   padding: 2px 5px;
2088   margin: 0;
2089   width: 200px;
2090
2091   &.field_with_errors {
2092     border: 2px solid #ff7070;
2093   }
2094 }
2095
2096 textarea {
2097   padding: 5px;
2098   width: 100%;
2099   min-height: 50px;
2100   resize: vertical;
2101 }
2102
2103 /* Rules for user images */
2104
2105 img.user_image {
2106   max-width: 100px;
2107   max-height: 100px;
2108   border: 1px solid $grey;
2109   margin-bottom: $lineheight;
2110   float: left;
2111   margin-right: $lineheight;
2112 }
2113
2114 img.user_thumbnail {
2115   max-width: 50px;
2116   max-height: 50px;
2117   border: 1px solid $grey;
2118   margin-right: $lineheight;
2119 }
2120
2121 img.user_thumbnail_tiny {
2122   width: auto;
2123   height: auto;
2124   max-width: 25px;
2125   max-height: 25px;
2126   border: 1px solid $grey;
2127 }
2128
2129 /* Rules for geo microformats */
2130
2131 abbr.geo {
2132   border-bottom: none;
2133 }
2134
2135 /* Rules for RSS buttons */
2136
2137 .rsssmall {
2138   position: relative;
2139   top: 3px;
2140 }
2141
2142 /* General styles for action lists / subnavs / pager navs */
2143
2144 ul.secondary-actions {
2145   font-style: normal;
2146   margin-bottom: 0;
2147   margin-left: 0;
2148   &.pager {
2149     display: inline-block;
2150     margin-right: 60px;
2151   }
2152   > li {
2153     display: block;
2154     float: left;
2155     list-style: none;
2156     border-left: 1px solid $grey;
2157     padding-left: $lineheight/2;
2158     margin-right: $lineheight/2;
2159     &:first-child {
2160       border-left: 0;
2161       padding-left: 0;
2162     }
2163     &:last-child {
2164       margin-right: 0px;
2165     }
2166   }
2167 }
2168
2169 div.secondary-actions {
2170   padding: 10px;
2171   text-align: center;
2172 }
2173
2174 /* Utility for managing inner content areas */
2175
2176 .inner22 { padding: $lineheight;}
2177
2178 .inner12 { padding: $lineheight/2 $lineheight;}
2179
2180 .inner11 { padding: $lineheight/2;}
2181
2182 .inner20 { padding: $lineheight 0;}
2183
2184 .inner02 { padding: 0 $lineheight;}
2185
2186 /* Utility for general button styles */
2187
2188 input[type="button"],
2189 input[type="submit"],
2190 input[type="reset"],
2191 a.button {
2192   cursor: pointer;
2193   border: 0;
2194   display: inline-block;
2195   padding: $lineheight/4 $lineheight/2;
2196   min-height: 20px + $lineheight/2;
2197   min-width: 120px;
2198   margin: 0 0 $lineheight/2 0;
2199   color: white;
2200   background: $blue;
2201   text-align: center;
2202   border-radius: 2px;
2203   &:hover {
2204     background: darken($blue, $hovercolor);
2205     text-decoration: none;
2206   }
2207   &.deemphasize {
2208     background: $lightblue;
2209     &:hover {
2210       background: darken($lightblue, $hovercolor);
2211     }
2212   }
2213   &:disabled {
2214     background: $lightgrey;
2215     &:hover {
2216       background: $lightgrey;
2217     }
2218   }
2219   &:last-child {
2220     margin-bottom: 0;
2221   }
2222 }
2223
2224 input[type="button"],
2225 input[type="submit"],
2226 input[type="reset"] {
2227   line-height: normal;
2228 }
2229
2230 a.button {
2231   line-height: 20px;
2232 }
2233
2234 .buttons {
2235   min-width: 200px;
2236   input[type="submit"],
2237   input[type="button"],
2238   input[type="reset"],
2239   .button,
2240   .button_to {
2241     box-sizing: border-box;
2242     float: left;
2243     border-radius: 0;
2244     margin:0;
2245     min-width: 75px;
2246     max-width: 180px;
2247     border-right:1px solid white;
2248     text-overflow: ellipsis;
2249     white-space: nowrap;
2250     overflow: hidden;
2251   }
2252   input:first-child,
2253   .button:first-child,
2254   .button_to:first-child {
2255     border-radius:2px 0 0 2px;
2256   }
2257   input:last-child,
2258   .button:last-child,
2259   .button_to:last-child {
2260     border-radius:0 2px 2px 0;
2261     border-right-width: 0;
2262   }
2263   input:only-child,
2264   .button:only-child,
2265   .button_to:only-child,
2266   *[value="Hide"] + input:last-child,
2267   *[value="Hide"] + .button:last-child,
2268   *[value="Hide"] + .button_to:last-child {
2269     border-radius:2px;
2270     border-right-width: 0;
2271   }
2272     /* if a 3-button set has a hidden middle button */
2273   *[value="Hide"] + input:nth-child(3),
2274   *[value="Hide"] + .button:nth-child(3),
2275   *[value="Hide"] + .button_to:nth-child(3) {
2276     border-radius:0 2px 2px 0;
2277     border-right-width: 0;
2278   }
2279   /* if a 3-button set starts with a hidden button */
2280   *[value="Hide"] + input:nth-child(2):not(:last-child),
2281   *[value="Hide"] + .button:nth-child(2):not(:last-child),
2282   *[value="Hide"] + .button_to:nth-child(2):not(:last-child) {
2283     border-radius:2px 0 0 2px;
2284     border-right-width: 1px;
2285   }
2286 }
2287
2288 /* Rules for doing distinct colour of alternate table rows */
2289
2290 .table0,
2291 .item0 {
2292   background: $offwhite;
2293 }
2294
2295 .table1,
2296 .item1 {
2297   background: #fff;
2298 }
2299
2300 /* Rules for OpenID logo */
2301
2302 .openid_logo {
2303   vertical-align: text-bottom;
2304   border: 0;
2305 }
2306
2307 /* Rules for rich text */
2308
2309 .richtext,
2310 .prose {
2311   h1, h2 {
2312     padding-bottom: $lineheight/2;
2313     border-bottom: 1px dashed $grey;
2314     margin-bottom: $lineheight/2;
2315   }
2316
2317   h1 {
2318     font-size: 24px;
2319   }
2320
2321   h2 {
2322     font-size: 18px;
2323   }
2324
2325   h3 {
2326     font-size: $typeheight;
2327   }
2328
2329   code {
2330     font-size: 13px;
2331     background: $lightgrey;
2332     padding: 2px 3px;
2333   }
2334
2335   pre {
2336     font-size: 13px;
2337     background: $lightgrey;
2338     padding: 2px 3px;
2339     white-space: pre-wrap;
2340
2341     code {
2342       padding: 0;
2343     }
2344   }
2345
2346   img {
2347     padding: $lineheight;
2348     background-color: $offwhite;
2349     display: block;
2350     max-width: 100%;
2351     margin: auto;
2352   }
2353
2354   blockquote {
2355     border-left: $lineheight solid $offwhite;
2356     padding-left: $lineheight;
2357     margin: 0;
2358     color: $darkgrey;
2359   }
2360
2361   ul, ol {
2362     padding-left: $lineheight;
2363     margin-bottom: $lineheight;
2364     margin-left: $lineheight;
2365   }
2366
2367   ul > li {
2368     list-style: disc;
2369   }
2370
2371   ol > li {
2372     list-style: decimal;
2373   }
2374 }
2375
2376 .diary_post .richtext {
2377     margin-top: $lineheight;
2378   }
2379
2380 .comments .richtext {
2381   margin-left: 70px;
2382   margin-top: 0;
2383 }
2384
2385 /* Rules for rich text editors */
2386
2387 input.richtext_title[type="text"] {
2388   width: 50%;
2389   width: calc(100% - 235px);
2390
2391   @media only screen and (max-width:768px) {
2392     width: 100%;
2393   }
2394 }
2395
2396 .richtext_container {
2397   margin-bottom: $lineheight;
2398
2399   .richtext_content {
2400     width: 50%;
2401     width: calc(100% - 235px);
2402     display: inline-block;
2403     vertical-align: top;
2404
2405     @media only screen and (max-width:768px) {
2406       width: 100%;
2407     }
2408
2409     .richtext_preview {
2410       display: inline-block;
2411       padding: $lineheight;
2412       background-color: $offwhite;
2413       overflow-x: auto;
2414
2415       &.loading {
2416         background-image: image-url("loading.gif");
2417         background-repeat: no-repeat;
2418         background-position: center;
2419       }
2420
2421       > :first-child {
2422         margin-top: 0px;
2423       }
2424     }
2425   }
2426
2427   .richtext_help {
2428     display: inline-block;
2429     vertical-align: top;
2430     margin-left: 15px;
2431     background-color: $offwhite;
2432     padding: $lineheight/2;
2433     width: 220px;
2434
2435     ul {
2436       margin-bottom: 0;
2437     }
2438
2439     h4.heading, li {
2440       border-bottom: 1px solid $grey;
2441       margin-bottom: $lineheight/4;
2442       padding-bottom: $lineheight/4;
2443     }
2444
2445     li h4, li span, li p {
2446       display: inline-block;
2447       vertical-align: top;
2448       font-size: 11px;
2449     }
2450
2451     li h4 {
2452       width: 40%;
2453       margin: 0;
2454     }
2455
2456     li span, li p {
2457       width: 50%;
2458       margin-left: $lineheight/2;
2459       margin-bottom: $lineheight/4;
2460       white-space: nowrap;
2461     }
2462   }
2463 }
2464
2465 /* Rules for the user notes list */
2466
2467 .note_list {
2468   tr.creator {
2469     background-color: $lightgrey;
2470   }
2471
2472   td {
2473     padding: 3px;
2474   }
2475
2476   p {
2477     margin-bottom: 0px;
2478   }
2479 }
2480
2481 /* Rules for the iD editor */
2482
2483 .id-embed {
2484   width: 100%;
2485   height: 100%;
2486 }
2487
2488 /* Rules for dropdown menus */
2489
2490 .dropdown {
2491   position: relative;
2492 }
2493
2494 .dropdown-toggle {
2495   *margin-bottom: -3px;
2496 }
2497
2498 .dropdown-toggle:active,
2499 .open .dropdown-toggle {
2500   outline: 0;
2501 }
2502
2503 .caret {
2504   display: inline-block;
2505   width: 0;
2506   height: 0;
2507   vertical-align: top;
2508   border-top: 4px solid #000000;
2509   border-right: 4px solid transparent;
2510   border-left: 4px solid transparent;
2511   content: "";
2512 }
2513
2514 .dropdown .caret {
2515   margin-top: 8px;
2516   margin-left: 2px;
2517 }
2518
2519 .dropdown-menu {
2520   position: absolute;
2521   top: 100%;
2522   left: -1px;
2523   z-index: 1000;
2524   display: none;
2525   float: left;
2526   min-width: 160px;
2527   padding: 5px 0;
2528   margin: 0;
2529   list-style: none;
2530   background-color: #ffffff;
2531   border: 1px solid $grey;
2532   border-radius: 0 3px 3px;
2533   *border-right-width: 2px;
2534   *border-bottom-width: 2px;
2535   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2536   background-clip: padding-box;
2537 }
2538
2539 .dropdown-menu.pull-right {
2540   right: 0;
2541   left: auto;
2542 }
2543
2544 .dropdown-menu .divider {
2545   *width: 100%;
2546   height: 1px;
2547   margin: 9px 1px;
2548   *margin: -5px 0 5px;
2549   overflow: hidden;
2550   background-color: $lightgrey;
2551   border-bottom: 1px solid #ffffff;
2552 }
2553
2554 .dropdown-menu > li > a {
2555   display: block;
2556   padding: 3px 10px;
2557   clear: both;
2558   font-weight: normal;
2559   line-height: 20px;
2560   color: #333333;
2561   white-space: nowrap;
2562 }
2563
2564 .dropdown-menu > li > a:hover,
2565 .dropdown-menu > li > a:focus,
2566 .dropdown-submenu:hover > a,
2567 .dropdown-submenu:focus > a {
2568   color: #ffffff;
2569   text-decoration: none;
2570   background-color: $green;
2571 }
2572
2573 .dropdown-menu > .active > a,
2574 .dropdown-menu > .active > a:hover,
2575 .dropdown-menu > .active > a:focus {
2576   color: #ffffff;
2577   text-decoration: none;
2578   background-color: $green;
2579   outline: 0;
2580 }
2581
2582 .dropdown-menu > .disabled > a,
2583 .dropdown-menu > .disabled > a:hover,
2584 .dropdown-menu > .disabled > a:focus {
2585   color: $darkgrey;
2586 }
2587
2588 .dropdown-menu > .disabled > a:hover,
2589 .dropdown-menu > .disabled > a:focus {
2590   text-decoration: none;
2591   cursor: default;
2592   background-color: transparent;
2593   background-image: none;
2594 }
2595
2596 .open {
2597   *z-index: 1000;
2598 }
2599
2600 .open > .dropdown-menu {
2601   display: block;
2602 }
2603
2604 .dropdown-backdrop {
2605   position: fixed;
2606   top: 0;
2607   right: 0;
2608   bottom: 0;
2609   left: 0;
2610   z-index: 990;
2611 }
2612
2613 /* Rules for the "Welcome" page */
2614 .site-welcome, .site-fixthemap {
2615   .center {
2616     text-align: center;
2617     .sprite {
2618       float: none;
2619       margin: auto;
2620     }
2621   }
2622
2623   .sprite {
2624     background-image: image-url("welcome-sprite.png");
2625     background-size: 500px 250px;
2626     display: block;
2627     float: left;
2628   }
2629
2630   .icon-list {
2631     padding-bottom: 20px;
2632     div {
2633       margin-bottom: 10px;
2634       p {
2635         padding-top: 10px;
2636       }
2637     }
2638   }
2639   .sprite.small {
2640     width: 50px;
2641     height: 50px;
2642   }
2643
2644   .sprite.x {
2645     /* no-r2 */ background-position: -50px 0;
2646   }
2647
2648   .sprite.term {
2649     margin-right: 10px;
2650     vertical-align: middle;
2651   }
2652
2653   .sprite.node {
2654     /* no-r2 */ background-position: -100px 0;
2655   }
2656
2657   .sprite.way {
2658     /* no-r2 */ background-position: -150px 0;
2659   }
2660
2661   .sprite.tag {
2662     /* no-r2 */ background-position: -200px 0;
2663   }
2664
2665   .sprite.editor {
2666     /* no-r2 */ background-position: -250px 0;
2667   }
2668
2669   .sprite.question {
2670     /* no-r2 */ background-position: -300px 0;
2671   }
2672
2673   .sprite.rules {
2674     /* no-r2 */ background-position: -350px 0;
2675   }
2676
2677   .start-mapping {
2678     margin: auto;
2679     cursor: pointer;
2680     border: none;
2681     padding: 20px 40px;
2682     font-size: 30px;
2683     text-decoration: none;
2684   }
2685
2686   .note-box {
2687     margin-top: 20px;
2688     background-color: $offwhite;
2689   }
2690
2691   .icon.note {
2692     background-color: #333;
2693     border-radius: 4px;
2694   }
2695 }
2696
2697 .site-about #content {
2698   background-color: $lightgrey;
2699   background-position: 50% 50%;
2700   background-repeat: no-repeat;
2701   background-size: cover;
2702   background-attachment: fixed;
2703
2704   .caption {
2705     max-width: 200px;
2706     font: 13px/20px Helvetica, Arial, sans-serif;
2707     position: fixed;
2708     text-align: right;
2709     right: 20px;
2710     bottom: 60px;
2711     text-shadow: #000 0px 1px 5px;
2712     color: $lightgrey;
2713     opacity: 0.8;
2714     display: none;
2715   }
2716
2717   .caption a {
2718     color: white;
2719     white-space: nowrap;
2720     text-decoration: none;
2721   }
2722
2723   a.next {
2724     display: block;
2725     position: fixed;
2726     right: 10px;
2727     bottom: 10px;
2728     width: 40px;
2729     height: 40px;
2730     border-radius: 5px;
2731     text-indent: -9999px;
2732     overflow: hidden;
2733     background: image-url('about/sprite.png') -120px 0px no-repeat;
2734     background-color: #000;
2735     background-color: rgba(0, 0, 0, 0.5);
2736   }
2737
2738   .content-inner {
2739     position: relative;
2740     color: #333;
2741     min-width: 320px;
2742     max-width: 640px;
2743
2744     .section {
2745       margin-bottom: 30px;
2746     }
2747
2748     .section:last-child {
2749       margin-bottom: 0;
2750     }
2751   }
2752
2753   .text {
2754     background: white;
2755     padding: 40px;
2756   }
2757
2758   .attr {
2759     position: relative;
2760     padding: 170px 40px 20px;
2761     background: #333;
2762     background: rgba(0, 0, 0, .8);
2763     margin-bottom: 0;
2764     margin-top: -20px;
2765
2766     h1 {
2767       display: block;
2768       color: white;
2769       font-weight: 300;
2770       font-size: 34px;
2771       span {
2772         color: $vibrant-green;
2773       }
2774     }
2775
2776     .user-image {
2777       position: absolute;
2778       top: 0px;
2779       right: 240px;
2780       left: 0px;
2781       height: 150px;
2782       background-position: 0 50%;
2783       background-repeat: no-repeat;
2784       background-image: image-url('about/osm.png');
2785       background-size: cover;
2786       background-color: $vibrant-green;
2787     }
2788
2789     .byosm {
2790       position: absolute;
2791       top: 0px;
2792       right: 0px;
2793       z-index: 1;
2794       width: 240px;
2795       height: 150px;
2796       padding: 20px 20px 20px 40px;
2797       font: 500 20px/24px Helvetica, Arial, sans-serif;
2798       white-space: nowrap;
2799       color: #fff;
2800       background: $vibrant-green;
2801     }
2802
2803     .byosm span {
2804       display: inline-block;
2805       width: 20px;
2806       margin-left: -20px;
2807     }
2808   }
2809
2810   h2 {
2811     margin-bottom: 10px;
2812   }
2813
2814   .icon {
2815     width: 30px;
2816     height: 30px;
2817     margin-right: 10px;
2818     vertical-align: middle;
2819     background: 40px 40px image-url('about/sprite.png') no-repeat;
2820
2821     &.local {
2822       /* no-r2 */
2823       background-position: 0px 0px;
2824     }
2825     &.community {
2826       /* no-r2 */
2827       background-position: 0px -40px;
2828     }
2829     &.open {
2830       /* no-r2 */
2831       background-position: 0px -80px;
2832     }
2833     &.partners {
2834       /* no-r2 */
2835       background-position: 0px -120px;
2836     }
2837     &.infringement {
2838       /* no-r2 */
2839       background-position: 0px -160px;
2840     }
2841     &.legal {
2842       /* no-r2 */
2843       background-position: -45px -160px;
2844     }
2845   }
2846 }
2847
2848 @import 'browse';
2849
2850 @media only screen and (max-width:960px) {
2851   .header-illustration.new-user-arm {
2852     display: none;
2853   }
2854 }
2855
2856 .read-reports {
2857   background: $lightgrey;
2858   opacity: 0.7;
2859 }
2860
2861 .report-related-block {
2862   display:inline-block;
2863 }
2864
2865 .report-block {
2866   width:475px;
2867   float:left;
2868   margin-right:100px;
2869 }
2870
2871 .related-reports {
2872   width: 280px;
2873   float: right;
2874
2875   ul {
2876     padding-left: $lineheight;
2877     margin-bottom: 0;
2878
2879     li {
2880       list-style: disc;
2881     }
2882   }
2883 }
2884
2885 .issue-comments {
2886   width:475px;
2887 }
2888
2889 .issues-list {
2890   td:nth-child(2) {
2891     white-space: nowrap;
2892   }
2893 }
2894
2895 .report-disclaimer {
2896   background: #fff1f0;
2897   color: #d85030;
2898   border-color: rgba(216, 80, 48, 0.3);
2899   padding: 10px 20px;
2900   margin-bottom: $lineheight;
2901
2902   ul {
2903     padding-left: $lineheight;
2904     margin-bottom: 0;
2905
2906     li {
2907       list-style: disc;
2908     }
2909   }
2910 }