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