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