]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Merge remote-tracking branch 'upstream/pull/3462'
[rails.git] / app / assets / stylesheets / common.scss
1 @import "parameters";
2 @import "bootstrap";
3 @import "rails_bootstrap_forms";
4
5 /* Styles common to large and small screens */
6
7 /* Default rules for the body of every page */
8
9 body {
10   font-size: $typeheight;
11 }
12
13 p > img {
14   width: auto;
15   max-width: 100%;
16 }
17
18 small, aside {
19   font-size: 12px;
20 }
21
22 #container { position: relative; }
23
24 .small_icon {
25   vertical-align: middle;
26   margin-right: $lineheight/4;
27 }
28
29 [dir=rtl] { /* no-r2 */ text-align: right; }
30
31 [dir=ltr] { /* no-r2 */ text-align: left; }
32
33 /* Rules for icons */
34
35 .icon {
36   display: inline-block;
37   vertical-align: top;
38   width: 20px;
39   height: 20px;
40   background: transparent image-url("sprite.png") no-repeat 0 0;
41   background-image: image-url("sprite.svg");
42   text-indent: -9999px;
43   overflow: hidden;
44 }
45
46 .icon.search      { /* no-r2 */ background-position: 0 0; }
47 .icon.donate      { /* no-r2 */ background-position: -20px 0; }
48 .icon.zoomin      { /* no-r2 */ background-position: -40px 0; }
49 .icon.zoomout     { /* no-r2 */ background-position: -60px 0; }
50 .icon.geolocate   { /* no-r2 */ background-position: -80px 0; }
51 .active .icon.geolocate   { /* no-r2 */ background-position: -80px -20px; }
52 .icon.layers      { /* no-r2 */ background-position: -100px 0; }
53 .icon.key         { /* no-r2 */ background-position: -120px 0; }
54 .icon.share       { /* no-r2 */ background-position: -140px 0; }
55 .icon.clipboard   { /* no-r2 */ background-position: -160px 0; }
56 .icon.link        { /* no-r2 */ background-position: -180px 0; }
57 .icon.close       { /* no-r2 */ background-position: -200px 0; }
58 .close-wrap:hover .icon.close,
59 .icon.close:hover { /* no-r2 */ background-position: -200px -20px; }
60 .icon.check       { /* no-r2 */ background-position: -220px 0; }
61 .icon.note        { /* no-r2 */ background-position: -240px 0; }
62 .icon.note.grey   { /* no-r2 */ background-position: -240px -20px; }
63 .icon.query       { /* no-r2 */ background-position: -260px 0; }
64
65 /* Rules for links */
66
67 a {
68   color: #24d;
69   text-decoration: none;
70   outline: 0;
71   &:hover {
72     text-decoration: underline;
73   }
74 }
75
76 /* Utility for de-emphasizing content */
77
78 .text-muted a {
79   color: $blue;
80 }
81
82 /* Rules for borders */
83 /* These add additional colours to those provided by bootstrap */
84 .border-grey {
85   border-color: $grey !important;
86 }
87
88 .border-lightgrey {
89   border-color: $lightgrey !important;
90 }
91
92 /* Rules for the header */
93
94 #menu-icon {
95   display: none !important;
96   float: right;
97   background: image-url("menu-icon.png") no-repeat;
98   background-size: 30px 30px;
99   display: block;
100   width: 30px;
101   height: 30px;
102   margin: 14px 10px 0 0;
103   opacity: 0.6;
104 }
105
106 header {
107   height: $headerHeight;
108   position: relative;
109   z-index: 1001;
110   font-size: 14px;
111
112   h1, nav, nav > ul, nav > ul > li {
113     display: inline-block;
114   }
115
116   > * {
117     height: 100%;
118     padding: $lineheight/2;
119   }
120
121   h1, nav.primary {
122     float: left;
123   }
124
125   a, a:hover {
126     text-decoration: none;
127   }
128
129   img.logo {
130     width: 30px;
131     height: 30px;
132     margin-top: -2px;
133     vertical-align: middle;
134   }
135
136   h1 {
137     font-size: 18px;
138     font-weight: 600;
139     line-height: 1.2;
140     margin: 0;
141     padding-top: 15px;
142
143     a {
144       color: #000;
145     }
146
147     a:hover {
148       color: #000;
149     }
150   }
151
152   .btn {
153     font-size: 14px;
154   }
155 }
156
157
158 nav.primary {
159   .btn-outline-primary {
160     @include button-outline-variant($green, $white);
161   }
162
163   .disabled {
164     .btn-outline-primary {
165       color: $grey;
166       cursor: default;
167
168       .caret {
169         border-top-color: $grey;
170       }
171
172       &:hover {
173         background-color: lighten($green, 30%);
174       }
175     }
176   }
177
178   // Small tweaks to the toggle to stop the primary colour showing through
179   // when the menu is shown
180   .show > .btn-outline-primary.dropdown-toggle {
181     background-color: $green;
182     border-color: $green;
183
184     &:focus {
185       box-shadow: 0 0 0 0.2rem fade-out($green, 0.5);
186     }
187   }
188 }
189
190 nav.secondary {
191   position: absolute;
192   right: 0;
193
194   .nav-link {
195     padding: 0.2rem;
196     color: $darkgrey;
197   }
198
199   > ul li.current a {
200     color: darken($darkgrey, 25%);
201   }
202
203   .login-menu {
204     .btn-outline-secondary {
205       @include button-outline-variant($darkgrey);
206     }
207   }
208
209   .user-menu {
210     .btn-outline-secondary {
211       @include button-outline-variant($darkgrey, $darkgrey, white, $darkgrey);
212       border-color: $grey;
213       &:hover {
214         border-color: $grey;
215       }
216       &:focus {
217         background-color: white;
218         box-shadow: none;
219       }
220     }
221     &.show .btn-outline-secondary {
222       background-color: white;
223       &:focus {
224         box-shadow: none;
225       }
226     }
227   }
228
229   #inboxanchor {
230     display: inline-block;
231     height: 25px;
232     margin: 3px 0 3px 3px;
233     background-color: lighten($grey, 10%);
234     line-height: 20px;
235     border-radius: 3;
236   }
237
238   .dropdown-menu {
239     .count-number {
240       font-size: 14px;
241     }
242   }
243 }
244
245 nav.primary, nav.secondary {
246   .dropdown-item {
247     &:hover, &:active {
248       background-color: $green;
249       color: white;
250     }
251   }
252 }
253
254 #compact-secondary-nav {
255   display: none;
256 }
257
258 body.compact-nav {
259   #compact-secondary-nav {
260     display: inline-block;
261   }
262   .compact-hide {
263     display: none;
264   }
265 }
266
267 /* Utility for styling notification numbers */
268
269 .count-number {
270   padding: 2px $lineheight/4;
271   border-radius: 2px;
272   background: lighten($green, 30%);
273   margin: 0 2px;
274   font-size: 11px;
275   color: #333;
276 }
277
278 /* Rules for the message shown in place of the map when javascript is disabled */
279
280 #noscript {
281   z-index: 20000000;
282   margin-left: 400px;
283   margin-top: 50px;
284 }
285
286 /* Rules for Leaflet maps */
287
288 .leaflet-control .control-button {
289   display: block;
290   height: 40px;
291   width: 40px;
292   background-color: #333;
293   background-color: rgba(0,0,0,.6);
294   border-radius: 4px 0 0 4px;
295   margin-bottom: 10px;
296   outline: none;
297
298   &:hover {
299     background-color: black;
300   }
301
302   &.disabled,
303   &.leaflet-disabled {
304     background-color: #333;
305     background-color: rgba(0,0,0,.5);
306     cursor: default;
307   }
308
309   &.active {
310     background-color: $vibrant-green;
311   }
312
313   .icon {
314     margin: 10px;
315   }
316 }
317
318 .leaflet-control .zoomin,
319 .control-layers .control-button {
320   margin-bottom: 0px;
321   border-radius: 4px 0 0 0;
322 }
323
324 .leaflet-control .zoomout,
325 .control-key .control-button {
326   margin-bottom: 0;
327   border-radius: 0;
328 }
329
330 .control-locate .control-button,
331 .control-share .control-button {
332   border-radius: 0 0 0 4px;
333 }
334
335 /* Rules for the sidebar and main map area */
336
337 .map-layout {
338   #content {
339     overflow: hidden;
340     position: absolute;
341     top: $headerHeight;
342     bottom: 0;
343     width: 100%;
344   }
345
346   #sidebar, #map {
347     position: relative;
348     height: 100%;
349     overflow-x: hidden;
350     overflow-y: auto;
351   }
352
353   #sidebar {
354     float: left;
355     width: $sidebarWidth;
356     background: #fff;
357
358     #sidebar_loader {
359       display: none;
360     }
361
362     #sidebar_content {
363       padding: $spacer;
364     }
365
366     > div {
367       position: relative;
368       float: left;
369       clear: both;
370       width: 100%;
371     }
372
373     h2 {
374       font-size: 1.5rem;
375     }
376
377     h3, h4 {
378       font-size: 1.25rem;
379     }
380
381     .close-wrap {
382       cursor: pointer;
383       position: absolute;
384       top: 0;
385       right: 0;
386       width: 60px;
387       height: 60px;
388
389       .icon.close {
390         pointer-events: none;
391         position: absolute;
392         right: 20px;
393         top: 20px;
394       }
395     }
396   }
397
398   .overlay-sidebar #sidebar {
399     position: absolute;
400     z-index: 1000;
401     height: auto;
402     overflow: hidden;
403
404     #banner {
405       display: block;
406     }
407
408     .welcome {
409       display: none;
410
411       &.visible {
412         display: block;
413       }
414     }
415
416     #sidebar_content {
417       display: none;
418     }
419   }
420
421   .welcome {
422     display: none;
423
424     p {
425       font-size: 110%;
426       font-weight: 300;
427     }
428   }
429
430   #banner {
431     display: none;
432
433     img {
434       display: block;
435       width: $sidebarWidth;
436     }
437   }
438
439   #map {
440     height: 100%;
441     overflow: hidden;
442
443     &.query-active {
444       cursor: help;
445     }
446
447     &.query-disabled {
448       cursor: not-allowed;
449     }
450
451     .leaflet-marker-draggable {
452       cursor: move;
453     }
454   }
455
456   #map-ui {
457     display: none;
458     position: relative;
459     float: right;
460     width: 250px;
461     height: 100%;
462     background: white;
463     overflow: auto;
464
465     .section {
466       border-bottom: 1px solid $grey;
467       padding: 10px 20px;
468     }
469
470     a.close-button {
471       float: right;
472       padding:5px;
473       font-size:20px;
474       line-height:10px;
475       color:#222;
476       border:1px solid $grey;
477     }
478
479     .tooltip {
480       opacity: 1;
481       border: 1px solid $grey;
482       .tooltip-arrow {
483         border-top-color: $grey;
484       }
485     }
486   }
487 }
488
489 .layers-ui,
490 .share-ui {
491   li:last-child {
492     margin-bottom: 0;
493   }
494 }
495
496 .layers-ui {
497   .base-layers {
498     .leaflet-container {
499       width: 100%;
500       height: 50px;
501       cursor: pointer;
502     }
503
504     li  {
505       overflow: hidden;
506       border-radius: 3px;
507       border: 2px solid #fff;
508       margin-bottom: 8px;
509       position: relative;
510       transition: border-color 0.08s ease-in;
511
512       label {
513         position: absolute;
514         top: 0;
515         left: 0;
516         padding: 2px 6px;
517         border-bottom-right-radius: 3px;
518         cursor: pointer;
519         font-weight: 600;
520         font-size: 16px;
521         text-stroke: 2px #fff;
522         background: rgba(255,255,255,.9);
523         z-index: 1000;
524         input[type="radio"] {
525           display: none;
526         }
527       }
528
529       &.active { border-color: darken($green, 10%); }
530       &:hover {
531         border-color: $grey;
532         &.active { border-color: darken($green, 20%); }
533       }
534     }
535   }
536
537   .overlay-layers {
538     p {
539       font-size: 13px;
540       margin-bottom: 8px;
541     }
542     li.disabled { color: $darkgrey; }
543   }
544 }
545
546 .share-ui {
547   .share-tabs {
548     margin-bottom: 10px;
549
550     a {
551       color: #fff;
552       text-decoration: none;
553       background-color: $lightblue;
554       padding: 5px 10px;
555       border-right: 1px solid #fff;
556     }
557
558     a:first-child {
559       border-right: 1px solid #fff;
560       border-radius: 4px 0 0 4px;
561     }
562
563     a:last-child {
564       border-radius: 0 4px 4px 0;
565     }
566
567     a.active {
568       background-color: $blue;
569     }
570   }
571
572   .share-tab {
573     display: none;
574   }
575
576   .share-link {
577     input[type=text],
578     textarea {
579       width: 100%;
580       font-family: monospace;
581       font-size: small;
582       line-height: 1.3;
583     }
584   }
585
586   .share-image {
587     label {
588       margin-right: 10px;
589     }
590   }
591
592   #embed_html {
593     resize: vertical;
594   }
595
596   #mapnik_scale {
597     width: 100px;
598   }
599 }
600
601 .leaflet-top {
602   top: $lineheight/2 !important;
603   .leaflet-control {
604     margin-right: 0px !important;
605     margin-top: 0px !important;
606   }
607 }
608
609 .leaflet-popup-scrolled {
610   padding-right: $lineheight;
611   border-bottom: 0px !important;
612   border-top: 0px !important;
613 }
614
615 .leaflet-popup-content-wrapper {
616   border-radius: 4px !important;
617 }
618
619 /* Rules for attribution text under the main map shown on printouts */
620
621 #attribution {
622   display: none;
623
624   table {
625     width: 100%
626   }
627 }
628
629 .attribution_license,
630 .attribution_project {
631   text-align: left;
632 }
633
634 .attribution_notice {
635   text-align: center;
636 }
637
638 .donate-attr { color: darken($green, 10%) !important; }
639
640 /* Rules for the sidebar */
641
642 .sidebar_heading {
643   position: relative;
644   padding: $lineheight/2 $lineheight;
645   // background: $offwhite;
646   // border-bottom: 1px solid $grey;
647   > .close {
648     float: right;
649     margin-top: 2px;
650     cursor: pointer;
651   }
652 }
653
654 #browse_status {
655   input {
656     display: block;
657     margin-left: auto;
658     margin-right: auto;
659   }
660
661   > div {
662    padding: $spacer;
663   }
664 }
665
666 #sidebar {
667   #sidebar_loader,
668   .search_more {
669     width: 100%;
670     margin: $lineheight auto;
671   }
672
673   .loader {
674     text-align: center;
675     margin: auto;
676     width: 40px;
677     display: block;
678   }
679 }
680
681 /* Temporary label size override until we remove site-wide font customisation */
682
683 form {
684   label {
685     font-size: 16px;
686   }
687 }
688
689 /* Rules for the search and direction forms */
690
691 header .search_forms,
692 .directions_form {
693   display: none;
694 }
695
696 /* Rules for the map key which appears in the popout sidebar */
697
698 #mapkey {
699  .mapkey-table-key img {
700     display: block;
701     margin-left: auto;
702     margin-right: auto;
703   }
704 }
705
706 /* Rules for search sidebar */
707
708 #sidebar .search_results_entry {
709   ul li {
710     cursor: pointer;
711     &.selected { background: $list-highlight; }
712   }
713
714   .search_more .loader {
715     display: none;
716     width: 100%;
717   }
718 }
719
720 .search_results_error {
721   color: #f00;
722   padding: 10px 20px;
723 }
724
725 /* Rules for routing */
726
727 div.direction {
728   background-image: image-url('routing-sprite.png');
729   width: 20px;
730   height: 20px;
731   background-repeat: no-repeat;
732 }
733 @for $i from 0 through 25 {
734 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
735 }
736
737 td.instruction, td.distance {
738     padding-top: $lineheight/5;
739     padding-bottom: $lineheight/5;
740     border-bottom: 1px solid $grey;
741 }
742 td.distance {
743     color: $darkgrey;
744     text-align: right;
745     font-size: x-small;
746 }
747 tr.turn {
748     cursor: pointer;
749 }
750 tr.turn:hover {
751     background: $list-highlight;
752 }
753
754 .routing_marker { width: 15px; cursor: move; }
755
756 /* Rules for entity history */
757
758 #sidebar_content {
759   .browse_details {
760     position: relative;
761     border-bottom: $keyline;
762   }
763 }
764
765 .browse_status {
766   display: none;
767 }
768
769 /* Rules for the history sidebar */
770
771 #sidebar .changesets {
772   li {
773     cursor: pointer;
774
775     &.selected { background: $list-highlight; }
776     /* color is derived from changeset bbox fillColor in history.js */
777   }
778
779   .comments {
780     color: $darkgrey;
781   }
782
783   .comments-0 {
784     opacity: 0.5;
785   }
786
787   .changeset_more .loader {
788     display: none;
789     width: 100%;
790   }
791 }
792
793 /* Rules for the browse sidebar */
794
795 #sidebar_content {
796   .browse-section {
797     padding-bottom: $spacer;
798     margin-bottom: $spacer;
799     border-bottom: 1px solid $grey;
800
801     h4:first-child {
802       word-wrap: break-word;
803     }
804   }
805
806   .browse-section:last-of-type {
807     border-bottom: none;
808   }
809
810   .browse-tag-list {
811     background-color: $offwhite;
812     table-layout: fixed;
813     border-collapse: separate;
814     border-spacing: 0;
815     width: 100%;
816     margin-bottom: $spacer;
817
818     th, td {
819       border-bottom: 1px solid $grey;
820     }
821
822     tr:last-child th, tr:last-child td {
823       border-bottom: 0;
824     }
825
826     .browse-tag-k,
827     .browse-tag-v {
828       width: 50%;
829       padding: 6px 10px;
830       word-wrap: break-word;
831       white-space: pre-wrap;
832     }
833
834     .browse-tag-k {
835       font-weight: 500;
836       background-color: $offwhite;
837     }
838
839     .browse-tag-v {
840       border-left: 1px solid $grey;
841       background-color: #fff;
842     }
843
844     .colour-preview-box {
845       float: right;
846       width: 14px;
847       height: 14px;
848       margin: 4px 0px;
849       border: 1px solid rgba(0, 0, 0, .1);
850       // add color via inline css on element: background-color: <tag value>;
851     }
852   }
853
854   .note-comments li, .changeset-comments li {
855     margin: $lineheight/2 0;
856
857     p {
858       margin: 10px 6px 0 6px;
859       line-height: 1.5;
860     }
861   }
862
863   .subscribe-buttons input {
864     font-size: 90%;
865     line-height: 15px;
866     min-height: 20px;
867   }
868
869   span.action-button:hover {
870     cursor: pointer;
871     text-decoration: underline;
872   }
873
874   .note-description {
875     overflow: hidden;
876     margin: 0 0 10px 10px;
877   }
878
879   .query-results {
880     display: none;
881
882     ul {
883       li {
884         &.query-result {
885           cursor: pointer;
886         }
887
888         &.selected {
889           background: $list-highlight;
890         }
891       }
892     }
893   }
894 }
895
896 /* Bootstrap buttons don't have any vertical margin, so
897    they touch when adjacent buttons wrap onto a new line
898    e.g. wide form buttons on a narrow sidebar */
899
900 .btn-wrapper {
901   > .btn {
902     margin-bottom: $spacer * 0.25;
903   }
904 }
905
906 /* Rules for export sidebar */
907
908 .export_form {
909   .export_area_inputs,
910   .export_button {
911     text-align: center;
912   }
913
914   .export_area_inputs {
915     margin-bottom: $spacer;
916     input[type="text"] {
917       width: 100px;
918       text-align: center;
919     }
920   }
921
922   .export_boxy {
923     background: $lightgrey;
924
925     #maxlat { margin-top: -1px; }
926     #minlon {
927       float: left;
928       /* no-r2 */ margin-left: -1px;
929     }
930     #maxlon {
931       float: right;
932       /* no-r2 */ margin-right: -1px;
933     }
934     #minlat { margin-bottom: -1px; }
935   }
936
937   .export_bound {
938     margin: $lineheight/4;
939   }
940
941   dl {
942     padding-left: $lineheight/2;
943     dd {
944       margin-left: 0;
945       margin-bottom: 10px;
946     }
947   }
948 }
949
950 /* Rules for edit pages */
951
952 .site-edit {
953   #content {
954     position: absolute;
955     top: $headerHeight;
956     bottom: 0;
957     width: 100%;
958   }
959
960   #map {
961     height: 100%;
962     overflow: hidden;
963   }
964 }
965
966 /* Rules for non-map content pages */
967
968 .content-heading {
969   background: $lightgrey;
970 }
971
972 .content-inner {
973   position: relative;
974   max-width: 960px;
975   margin: auto;
976   padding: $lineheight;
977 }
978
979 /* Overrides for pages that use new layout conventions */
980
981 .header-illustration {
982   background-position: 0 0;
983   background-repeat: no-repeat;
984   position: relative;
985   min-height: 200px;
986   width: 100%;
987   left: 0;
988   bottom: 0;
989
990   &.new-user-main {
991     background-image: image-url("sign-up-illustration.png");
992   }
993
994   &.confirm-main {
995     background-image: image-url("confirm-illustration.png");
996   }
997
998   &.new-user-terms {
999     background-image: image-url("terms-illustration.png");
1000   }
1001
1002   &.new-user-arm {
1003     height: 110px;
1004     width: 130px;
1005     left: 280px;
1006     top: 180px;
1007     background-image: image-url("sign-up-illustration-arm.png");
1008     position: absolute;
1009     z-index: 100;
1010     pointer-events: none;
1011   }
1012 }
1013
1014 [dir=rtl] .header-illustration {
1015   transform: scaleX(-1);
1016 }
1017
1018 #content.maximised {
1019   top: 0;
1020   left: 0;
1021   right: 0;
1022   bottom: 0;
1023   border: 0;
1024   z-index: 2000;
1025 }
1026
1027 /* Rules for small maps in content areas */
1028
1029 .content_map {
1030   height: 200px;
1031   margin-bottom: $lineheight;
1032 }
1033
1034 @include media-breakpoint-up(md) {
1035   .content_map {
1036     height: 400px;
1037   }
1038 }
1039
1040 /* Rules for the user map */
1041
1042 .content_map .leaflet-popup-content {
1043   margin: $lineheight/2;
1044   min-height: 50px;
1045 }
1046
1047 /* Rules for user popups on maps */
1048
1049 .user_popup {
1050   min-width: 200px;
1051   p {
1052     padding: 0 0 5px 0;
1053     margin-top: 0 0 0 60px;
1054     font-size: 12px;
1055   }
1056 }
1057
1058 /* Rules for the user list */
1059
1060 #user_list {
1061   width: 100%;
1062 }
1063
1064 /* Rules for the diary list page */
1065
1066 .diary_post {
1067   position: relative;
1068   padding-top: $lineheight;
1069   padding-bottom: $lineheight/2;
1070   border-top: 1px solid $grey;
1071
1072   &.deleted {
1073     background-color: #fee;
1074   }
1075 }
1076
1077 /* Rules for the diary entry page */
1078
1079 .diary_entries {
1080   #map {
1081     height: 400px;
1082     display: none;
1083     margin-bottom: $lineheight;
1084   }
1085   .comments {
1086     max-width: 740px;
1087   }
1088   .diary-comment {
1089     border-top: 1px dashed $grey;
1090     padding-top: $lineheight/2;
1091     padding-bottom: $lineheight/2;
1092     &:first-child {
1093       margin-top: $lineheight/2;
1094       padding-top: $lineheight;
1095       border-top: 1px solid $grey;
1096     }
1097     &.deleted {
1098       background-color: #fee;
1099     }
1100     p {
1101       margin-bottom: $lineheight/2;
1102     }
1103     .comment-heading {
1104       margin-bottom: 0;
1105       margin-top: 0;
1106     }
1107   }
1108 }
1109
1110 /* Rules for the log in page */
1111
1112 #login_auth_buttons {
1113   margin-bottom: 0;
1114
1115   li {
1116     float: left;
1117     padding: $lineheight/4 $lineheight/2;
1118   }
1119 }
1120
1121 /* Rules for the account confirmation page */
1122
1123 .users-terms {
1124   .legale {
1125     padding: $lineheight;
1126     margin-bottom: $lineheight;
1127     overflow: auto;
1128     height: 20em;
1129
1130     li {
1131       list-style: inherit;
1132     }
1133
1134     ol ol {
1135       list-style-type: lower-alpha;
1136     }
1137   }
1138 }
1139
1140 /* Rules for the account settings page */
1141
1142 #accountForm .user_image {
1143   margin-bottom: 0;
1144 }
1145
1146 #accountForm #user_image {
1147   margin-left: 20px;
1148 }
1149
1150 #accountForm ul.accountImage-options {
1151   margin-left: 120px;
1152 }
1153
1154 .nohome .location {
1155   display: none;
1156 }
1157
1158 #homerow .message {
1159   display: none;
1160 }
1161
1162 .nohome .message {
1163   display: inline !important;
1164 }
1165
1166 /* Rules for the oauth settings page */
1167
1168 .oauth_clients .buttons .oauth-edit {
1169   border-radius: 2px 0 0 2px;
1170 }
1171
1172 .oauth_clients .buttons .oauth-delete {
1173   border-radius: 0 2px 2px 0;
1174 }
1175
1176 /* Rules for the oauth authorization page */
1177
1178 .oauth-authorize ul {
1179   list-style: none;
1180 }
1181
1182 /* Rules for messages pages */
1183
1184 .messages {
1185   button[type="submit"] {
1186     margin: auto;
1187     white-space: nowrap;
1188   }
1189
1190   .inbox-row {
1191     background: $offwhite;
1192   }
1193
1194   .inbox-row-unread {
1195     background: #CBEEA7;
1196   }
1197
1198   .right {
1199     float: right;
1200   }
1201 }
1202
1203 .inbox-row .inbox-mark-read {
1204   display: none;
1205 }
1206
1207 .info-line {
1208   margin-bottom: $lineheight;
1209   padding: $lineheight/4 0px 4px 0px;
1210   border-bottom: 1px solid $grey;
1211
1212   form, form div {
1213     display: inline;
1214   }
1215 }
1216
1217 .info-line .user_thumbnail_tiny {
1218   vertical-align: middle;
1219 }
1220
1221 .inbox-sent {
1222   white-space: nowrap;
1223 }
1224
1225 .inbox-mark-unread,
1226 .inbox-mark-read,
1227 .inbox-delete {
1228   width: 1%;
1229 }
1230
1231 .inbox-row-unread .inbox-mark-unread {
1232   display: none;
1233 }
1234
1235 /* Rules for "flash" notice boxes shown at the top of the content area */
1236
1237 .flash {
1238   &.error {
1239     background-color: #ff7070;
1240   }
1241
1242   &.warning {
1243     background-color: #ffe0cc;
1244   }
1245
1246   &.notice {
1247     background-color: #CBEEA7;
1248   }
1249 }
1250
1251 /* Rules for highlighting fields with rails validation errors */
1252
1253 .formError {
1254   display: inline-block;
1255   padding: 5px 10px;
1256   margin-top: 5px;
1257   border-radius: 4px;
1258   font-size: 12px;
1259   color: #fff;
1260   background-color: #ff7070;
1261 }
1262
1263 /* Rules for rails validation error boxes */
1264
1265 #errorExplanation {
1266   width: 400px;
1267   border: 2px solid #ff7070;
1268   padding: 0 $lineheight/2;
1269   margin-bottom: $lineheight;
1270   background-color: #f0f0f0;
1271
1272   h2 {
1273     margin: 0 -10px 10px -10px;
1274     padding: $lineheight/4 $lineheight/4 $lineheight/4 15px;
1275     font-weight: bold;
1276     font-size: 12px;
1277     background-color: #c00;
1278     color: #fff;
1279     text-align: left;
1280   }
1281
1282   p {
1283     color: #333;
1284     margin-bottom: 0px;
1285     padding: $lineheight/4;
1286   }
1287 }
1288
1289 .search_form {
1290   background-color: $lightgrey;
1291
1292   .describe_location {
1293     top: 6px;
1294     right: 6px;
1295     font-size: 10px;
1296     color: $blue;
1297   }
1298 }
1299
1300 .directions_form {
1301   background-color: $lightgrey;
1302
1303   .loader_copy {
1304     display: none;
1305
1306     img {
1307       vertical-align: middle;
1308     }
1309   }
1310
1311   a.reverse_directions {
1312     cursor: pointer;
1313   }
1314 }
1315
1316 /* Rules for user images */
1317
1318 img.user_image {
1319   max-width: 100px;
1320   max-height: 100px;
1321 }
1322
1323 img.user_thumbnail {
1324   max-width: 50px;
1325   max-height: 50px;
1326 }
1327
1328 img.user_thumbnail_tiny {
1329   width: auto;
1330   height: auto;
1331   max-width: 25px;
1332   max-height: 25px;
1333 }
1334
1335 /* Rules for geo microformats */
1336
1337 abbr.geo {
1338   border-bottom: none;
1339 }
1340
1341 /* General styles for action lists / subnavs / pager navs */
1342
1343
1344 nav.secondary-actions {
1345   margin-left: -11px;
1346   overflow: hidden;
1347   > ul {
1348     display: flex;
1349     flex-direction: row;
1350     flex-wrap: wrap;
1351     margin-bottom: 0;
1352     margin-left: -1px;
1353     padding: 0;
1354     &.pager {
1355       display: inline-block;
1356       margin-right: 60px;
1357     }
1358     > li {
1359       flex-basis: auto;
1360       list-style: none;
1361       border-left: 1px solid $grey;
1362       padding-left: $lineheight/2;
1363       margin-right: $lineheight/2;
1364       margin-bottom: $lineheight/8;
1365     }
1366   }
1367 }
1368
1369 div.secondary-actions {
1370   padding: 10px;
1371   text-align: center;
1372 }
1373
1374 .buttons {
1375   min-width: 200px;
1376   input[type="submit"],
1377   input[type="button"],
1378   input[type="reset"],
1379   .button,
1380   .button_to {
1381     box-sizing: border-box;
1382     float: left;
1383     border-radius: 0;
1384     margin:0;
1385     min-width: 75px;
1386     max-width: 180px;
1387     border-right:1px solid white;
1388     text-overflow: ellipsis;
1389     white-space: nowrap;
1390     overflow: hidden;
1391   }
1392   input:first-child,
1393   .button:first-child,
1394   .button_to:first-child {
1395     border-radius:2px 0 0 2px;
1396   }
1397   input:last-child,
1398   .button:last-child,
1399   .button_to:last-child {
1400     border-radius:0 2px 2px 0;
1401     border-right-width: 0;
1402   }
1403   input:only-child,
1404   .button:only-child,
1405   .button_to:only-child,
1406   *[value="Hide"] + input:last-child,
1407   *[value="Hide"] + .button:last-child,
1408   *[value="Hide"] + .button_to:last-child {
1409     border-radius:2px;
1410     border-right-width: 0;
1411   }
1412     /* if a 3-button set has a hidden middle button */
1413   *[value="Hide"] + input:nth-child(3),
1414   *[value="Hide"] + .button:nth-child(3),
1415   *[value="Hide"] + .button_to:nth-child(3) {
1416     border-radius:0 2px 2px 0;
1417     border-right-width: 0;
1418   }
1419   /* if a 3-button set starts with a hidden button */
1420   *[value="Hide"] + input:nth-child(2):not(:last-child),
1421   *[value="Hide"] + .button:nth-child(2):not(:last-child),
1422   *[value="Hide"] + .button_to:nth-child(2):not(:last-child) {
1423     border-radius:2px 0 0 2px;
1424     border-right-width: 1px;
1425   }
1426 }
1427
1428 /* Create a single-line dl */
1429
1430 dl.dl-inline {
1431   dt, dd {
1432     display: inline-block;
1433   }
1434   dd {
1435     margin-right: 1em;
1436   }
1437 }
1438
1439 /* Customise the background colour of striped tables */
1440
1441 .table-striped > tbody > tr:nth-child(2n+1) > td,
1442 .table-striped > tbody > tr:nth-child(2n+1) > th {
1443    background-color: $offwhite;
1444 }
1445
1446 /* Rules for OpenID logo */
1447
1448 .openid_logo {
1449   vertical-align: text-bottom;
1450   border: 0;
1451 }
1452
1453 /* Rules for rich text */
1454
1455 .richtext,
1456 .prose {
1457   code {
1458     font-size: 13px;
1459     background: $lightgrey;
1460     padding: 2px 3px;
1461   }
1462
1463   pre {
1464     font-size: 13px;
1465     background: $lightgrey;
1466     padding: 2px 3px;
1467     white-space: pre-wrap;
1468
1469     code {
1470       padding: 0;
1471     }
1472   }
1473
1474   img {
1475     padding: $lineheight;
1476     background-color: $offwhite;
1477     display: block;
1478     max-width: 100%;
1479     margin: auto;
1480   }
1481
1482   blockquote {
1483     border-left: $lineheight solid $offwhite;
1484     padding-left: $lineheight;
1485     margin: 0;
1486     color: $darkgrey;
1487   }
1488 }
1489
1490 /* Rules for the user notes list */
1491
1492 .note_list {
1493   tr.creator {
1494     background-color: $offwhite;
1495   }
1496 }
1497
1498 /* Rules for the iD editor */
1499
1500 .id-embed {
1501   width: 100%;
1502   height: 100%;
1503 }
1504
1505 /* Rules for the "Welcome" page */
1506 .site-welcome, .site-fixthemap {
1507   .center {
1508     text-align: center;
1509     .sprite {
1510       float: none;
1511       margin: auto;
1512     }
1513   }
1514
1515   .sprite {
1516     background-image: image-url("welcome-sprite.png");
1517     background-size: 500px 250px;
1518     display: block;
1519     float: left;
1520   }
1521
1522   .icon-list {
1523     padding-bottom: 20px;
1524     div {
1525       margin-bottom: 10px;
1526       p {
1527         padding-top: 10px;
1528       }
1529     }
1530   }
1531   .sprite.small {
1532     width: 50px;
1533     height: 50px;
1534   }
1535
1536   .sprite.x {
1537     /* no-r2 */ background-position: -50px 0;
1538   }
1539
1540   .sprite.term {
1541     margin-right: 10px;
1542     vertical-align: middle;
1543   }
1544
1545   .sprite.node {
1546     /* no-r2 */ background-position: -100px 0;
1547   }
1548
1549   .sprite.way {
1550     /* no-r2 */ background-position: -150px 0;
1551   }
1552
1553   .sprite.tag {
1554     /* no-r2 */ background-position: -200px 0;
1555   }
1556
1557   .sprite.editor {
1558     /* no-r2 */ background-position: -250px 0;
1559   }
1560
1561   .sprite.question {
1562     /* no-r2 */ background-position: -300px 0;
1563   }
1564
1565   .sprite.rules {
1566     /* no-r2 */ background-position: -350px 0;
1567   }
1568
1569   .start-mapping {
1570     margin: auto;
1571     cursor: pointer;
1572     border: none;
1573     padding: 20px 40px;
1574     font-size: 30px;
1575     text-decoration: none;
1576   }
1577
1578   .icon.note {
1579     background-color: #333;
1580     border-radius: 4px;
1581   }
1582 }
1583
1584 .site-about #content {
1585   background-color: $lightgrey;
1586   background-position: 50% 50%;
1587   background-repeat: no-repeat;
1588   background-size: cover;
1589   background-attachment: fixed;
1590
1591   .content-inner {
1592     max-width: 760px;
1593   }
1594
1595   .attr {
1596     margin-top: -20px;
1597
1598     h1 {
1599       span {
1600         color: $vibrant-green;
1601       }
1602     }
1603
1604     .user-image {
1605       height: 150px;
1606       background-position: 0 50%;
1607       background-repeat: no-repeat;
1608       background-image: image-url('about/osm.png');
1609       background-size: cover;
1610       background-color: $vibrant-green;
1611     }
1612
1613     .byosm {
1614       background: $vibrant-green;
1615     }
1616
1617     .byosm span {
1618       display: inline-block;
1619       width: 1em;
1620       margin-left: -1em;
1621     }
1622   }
1623
1624   .icon {
1625     width: 30px;
1626     height: 30px;
1627     margin-right: 10px;
1628     vertical-align: middle;
1629     background: 40px 40px image-url('about/sprite.png') no-repeat;
1630
1631     &.local {
1632       /* no-r2 */
1633       background-position: 0px 0px;
1634     }
1635     &.community {
1636       /* no-r2 */
1637       background-position: 0px -40px;
1638     }
1639     &.open {
1640       /* no-r2 */
1641       background-position: 0px -80px;
1642     }
1643     &.partners {
1644       /* no-r2 */
1645       background-position: 0px -120px;
1646     }
1647     &.infringement {
1648       /* no-r2 */
1649       background-position: 0px -160px;
1650     }
1651     &.legal {
1652       /* no-r2 */
1653       background-position: -45px -160px;
1654     }
1655   }
1656 }
1657
1658 @import 'browse';
1659
1660 @media only screen and (max-width:960px) {
1661   .header-illustration.new-user-arm {
1662     display: none;
1663   }
1664 }