]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Merge remote-tracking branch 'upstream/pull/3377'
[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   input[type="submit"] {
1186     margin: auto;
1187   }
1188
1189   .inbox-row {
1190     background: $offwhite;
1191   }
1192
1193   .inbox-row-unread {
1194     background: #CBEEA7;
1195   }
1196
1197   .right {
1198     float: right;
1199   }
1200 }
1201
1202 .inbox-row .inbox-mark-read {
1203   display: none;
1204 }
1205
1206 .info-line {
1207   margin-bottom: $lineheight;
1208   padding: $lineheight/4 0px 4px 0px;
1209   border-bottom: 1px solid $grey;
1210
1211   form, form div {
1212     display: inline;
1213   }
1214 }
1215
1216 .info-line .user_thumbnail_tiny {
1217   vertical-align: middle;
1218 }
1219
1220 .inbox-sent {
1221   white-space: nowrap;
1222 }
1223
1224 .inbox-mark-unread,
1225 .inbox-mark-read,
1226 .inbox-delete {
1227   width: 1%;
1228 }
1229
1230 .inbox-row-unread .inbox-mark-unread {
1231   display: none;
1232 }
1233
1234 /* Rules for "flash" notice boxes shown at the top of the content area */
1235
1236 .flash {
1237   padding: $lineheight;
1238
1239   &.error {
1240     background-color: #ff7070;
1241   }
1242
1243   &.warning {
1244     background-color: #ffe0cc;
1245   }
1246
1247   &.notice {
1248     background-color: #CBEEA7;
1249   }
1250 }
1251
1252 /* Rules for highlighting fields with rails validation errors */
1253
1254 .formError {
1255   display: inline-block;
1256   padding: 5px 10px;
1257   margin-top: 5px;
1258   border-radius: 4px;
1259   font-size: 12px;
1260   color: #fff;
1261   background-color: #ff7070;
1262 }
1263
1264 /* Rules for rails validation error boxes */
1265
1266 #errorExplanation {
1267   width: 400px;
1268   border: 2px solid #ff7070;
1269   padding: 0 $lineheight/2;
1270   margin-bottom: $lineheight;
1271   background-color: #f0f0f0;
1272
1273   h2 {
1274     margin: 0 -10px 10px -10px;
1275     padding: $lineheight/4 $lineheight/4 $lineheight/4 15px;
1276     font-weight: bold;
1277     font-size: 12px;
1278     background-color: #c00;
1279     color: #fff;
1280     text-align: left;
1281   }
1282
1283   p {
1284     color: #333;
1285     margin-bottom: 0px;
1286     padding: $lineheight/4;
1287   }
1288 }
1289
1290 .search_form {
1291   background-color: $lightgrey;
1292
1293   .describe_location {
1294     top: 6px;
1295     right: 6px;
1296     font-size: 10px;
1297     color: $blue;
1298   }
1299 }
1300
1301 .directions_form {
1302   background-color: $lightgrey;
1303
1304   .loader_copy {
1305     display: none;
1306
1307     img {
1308       vertical-align: middle;
1309     }
1310   }
1311
1312   a.reverse_directions {
1313     cursor: pointer;
1314   }
1315 }
1316
1317 /* Rules for user images */
1318
1319 img.user_image {
1320   max-width: 100px;
1321   max-height: 100px;
1322 }
1323
1324 img.user_thumbnail {
1325   max-width: 50px;
1326   max-height: 50px;
1327 }
1328
1329 img.user_thumbnail_tiny {
1330   width: auto;
1331   height: auto;
1332   max-width: 25px;
1333   max-height: 25px;
1334 }
1335
1336 /* Rules for geo microformats */
1337
1338 abbr.geo {
1339   border-bottom: none;
1340 }
1341
1342 /* General styles for action lists / subnavs / pager navs */
1343
1344
1345 nav.secondary-actions {
1346   margin-left: -11px;
1347   overflow: hidden;
1348   > ul {
1349     display: flex;
1350     flex-direction: row;
1351     flex-wrap: wrap;
1352     margin-bottom: 0;
1353     margin-left: -1px;
1354     padding: 0;
1355     &.pager {
1356       display: inline-block;
1357       margin-right: 60px;
1358     }
1359     > li {
1360       flex-basis: auto;
1361       list-style: none;
1362       border-left: 1px solid $grey;
1363       padding-left: $lineheight/2;
1364       margin-right: $lineheight/2;
1365       margin-bottom: $lineheight/8;
1366     }
1367   }
1368 }
1369
1370 div.secondary-actions {
1371   padding: 10px;
1372   text-align: center;
1373 }
1374
1375 .buttons {
1376   min-width: 200px;
1377   input[type="submit"],
1378   input[type="button"],
1379   input[type="reset"],
1380   .button,
1381   .button_to {
1382     box-sizing: border-box;
1383     float: left;
1384     border-radius: 0;
1385     margin:0;
1386     min-width: 75px;
1387     max-width: 180px;
1388     border-right:1px solid white;
1389     text-overflow: ellipsis;
1390     white-space: nowrap;
1391     overflow: hidden;
1392   }
1393   input:first-child,
1394   .button:first-child,
1395   .button_to:first-child {
1396     border-radius:2px 0 0 2px;
1397   }
1398   input:last-child,
1399   .button:last-child,
1400   .button_to:last-child {
1401     border-radius:0 2px 2px 0;
1402     border-right-width: 0;
1403   }
1404   input:only-child,
1405   .button:only-child,
1406   .button_to:only-child,
1407   *[value="Hide"] + input:last-child,
1408   *[value="Hide"] + .button:last-child,
1409   *[value="Hide"] + .button_to:last-child {
1410     border-radius:2px;
1411     border-right-width: 0;
1412   }
1413     /* if a 3-button set has a hidden middle button */
1414   *[value="Hide"] + input:nth-child(3),
1415   *[value="Hide"] + .button:nth-child(3),
1416   *[value="Hide"] + .button_to:nth-child(3) {
1417     border-radius:0 2px 2px 0;
1418     border-right-width: 0;
1419   }
1420   /* if a 3-button set starts with a hidden button */
1421   *[value="Hide"] + input:nth-child(2):not(:last-child),
1422   *[value="Hide"] + .button:nth-child(2):not(:last-child),
1423   *[value="Hide"] + .button_to:nth-child(2):not(:last-child) {
1424     border-radius:2px 0 0 2px;
1425     border-right-width: 1px;
1426   }
1427 }
1428
1429 /* Create a single-line dl */
1430
1431 dl.dl-inline {
1432   dt, dd {
1433     display: inline-block;
1434   }
1435   dd {
1436     margin-right: 1em;
1437   }
1438 }
1439
1440 /* Customise the background colour of striped tables */
1441
1442 .table-striped > tbody > tr:nth-child(2n+1) > td,
1443 .table-striped > tbody > tr:nth-child(2n+1) > th {
1444    background-color: $offwhite;
1445 }
1446
1447 /* Rules for OpenID logo */
1448
1449 .openid_logo {
1450   vertical-align: text-bottom;
1451   border: 0;
1452 }
1453
1454 /* Rules for rich text */
1455
1456 .richtext,
1457 .prose {
1458   code {
1459     font-size: 13px;
1460     background: $lightgrey;
1461     padding: 2px 3px;
1462   }
1463
1464   pre {
1465     font-size: 13px;
1466     background: $lightgrey;
1467     padding: 2px 3px;
1468     white-space: pre-wrap;
1469
1470     code {
1471       padding: 0;
1472     }
1473   }
1474
1475   img {
1476     padding: $lineheight;
1477     background-color: $offwhite;
1478     display: block;
1479     max-width: 100%;
1480     margin: auto;
1481   }
1482
1483   blockquote {
1484     border-left: $lineheight solid $offwhite;
1485     padding-left: $lineheight;
1486     margin: 0;
1487     color: $darkgrey;
1488   }
1489 }
1490
1491 /* Rules for the user notes list */
1492
1493 .note_list {
1494   tr.creator {
1495     background-color: $offwhite;
1496   }
1497 }
1498
1499 /* Rules for the iD editor */
1500
1501 .id-embed {
1502   width: 100%;
1503   height: 100%;
1504 }
1505
1506 /* Rules for the "Welcome" page */
1507 .site-welcome, .site-fixthemap {
1508   .center {
1509     text-align: center;
1510     .sprite {
1511       float: none;
1512       margin: auto;
1513     }
1514   }
1515
1516   .sprite {
1517     background-image: image-url("welcome-sprite.png");
1518     background-size: 500px 250px;
1519     display: block;
1520     float: left;
1521   }
1522
1523   .icon-list {
1524     padding-bottom: 20px;
1525     div {
1526       margin-bottom: 10px;
1527       p {
1528         padding-top: 10px;
1529       }
1530     }
1531   }
1532   .sprite.small {
1533     width: 50px;
1534     height: 50px;
1535   }
1536
1537   .sprite.x {
1538     /* no-r2 */ background-position: -50px 0;
1539   }
1540
1541   .sprite.term {
1542     margin-right: 10px;
1543     vertical-align: middle;
1544   }
1545
1546   .sprite.node {
1547     /* no-r2 */ background-position: -100px 0;
1548   }
1549
1550   .sprite.way {
1551     /* no-r2 */ background-position: -150px 0;
1552   }
1553
1554   .sprite.tag {
1555     /* no-r2 */ background-position: -200px 0;
1556   }
1557
1558   .sprite.editor {
1559     /* no-r2 */ background-position: -250px 0;
1560   }
1561
1562   .sprite.question {
1563     /* no-r2 */ background-position: -300px 0;
1564   }
1565
1566   .sprite.rules {
1567     /* no-r2 */ background-position: -350px 0;
1568   }
1569
1570   .start-mapping {
1571     margin: auto;
1572     cursor: pointer;
1573     border: none;
1574     padding: 20px 40px;
1575     font-size: 30px;
1576     text-decoration: none;
1577   }
1578
1579   .icon.note {
1580     background-color: #333;
1581     border-radius: 4px;
1582   }
1583 }
1584
1585 .site-about #content {
1586   background-color: $lightgrey;
1587   background-position: 50% 50%;
1588   background-repeat: no-repeat;
1589   background-size: cover;
1590   background-attachment: fixed;
1591
1592   .content-inner {
1593     max-width: 760px;
1594   }
1595
1596   .attr {
1597     margin-top: -20px;
1598
1599     h1 {
1600       span {
1601         color: $vibrant-green;
1602       }
1603     }
1604
1605     .user-image {
1606       height: 150px;
1607       background-position: 0 50%;
1608       background-repeat: no-repeat;
1609       background-image: image-url('about/osm.png');
1610       background-size: cover;
1611       background-color: $vibrant-green;
1612     }
1613
1614     .byosm {
1615       background: $vibrant-green;
1616     }
1617
1618     .byosm span {
1619       display: inline-block;
1620       width: 1em;
1621       margin-left: -1em;
1622     }
1623   }
1624
1625   .icon {
1626     width: 30px;
1627     height: 30px;
1628     margin-right: 10px;
1629     vertical-align: middle;
1630     background: 40px 40px image-url('about/sprite.png') no-repeat;
1631
1632     &.local {
1633       /* no-r2 */
1634       background-position: 0px 0px;
1635     }
1636     &.community {
1637       /* no-r2 */
1638       background-position: 0px -40px;
1639     }
1640     &.open {
1641       /* no-r2 */
1642       background-position: 0px -80px;
1643     }
1644     &.partners {
1645       /* no-r2 */
1646       background-position: 0px -120px;
1647     }
1648     &.infringement {
1649       /* no-r2 */
1650       background-position: 0px -160px;
1651     }
1652     &.legal {
1653       /* no-r2 */
1654       background-position: -45px -160px;
1655     }
1656   }
1657 }
1658
1659 @import 'browse';
1660
1661 @media only screen and (max-width:960px) {
1662   .header-illustration.new-user-arm {
1663     display: none;
1664   }
1665 }