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