]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
60a4bd59c331b94abaa4d737b039bc6c1f8708a3
[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;
84   float: right;
85   background: image-url("menu-icon.png") no-repeat;
86   background-size: 30px 30px;
87   width: 30px;
88   height: 30px;
89   margin: 14px 10px 0 0;
90   opacity: 0.6;
91 }
92
93 header {
94   height: $headerHeight;
95   position: relative;
96   z-index: 1001;
97   font-size: 14px;
98
99   h1, nav, nav > ul, nav > ul > li {
100     display: inline-block;
101   }
102
103   > * {
104     height: 100%;
105     padding: $lineheight/2;
106   }
107
108   h1, nav.primary {
109     float: left;
110   }
111
112   a, a:hover {
113     text-decoration: none;
114   }
115
116   img.logo {
117     width: 30px;
118     height: 30px;
119     margin-top: -2px;
120     vertical-align: middle;
121   }
122
123   h1 {
124     font-size: 18px;
125     font-weight: 600;
126     line-height: 1.2;
127     margin: 0;
128     padding-top: 15px;
129
130     a {
131       color: #000;
132     }
133
134     a:hover {
135       color: #000;
136     }
137   }
138
139   .btn {
140     font-size: 14px;
141   }
142 }
143
144
145 nav.primary {
146   .btn-outline-primary {
147     @include button-outline-variant($green, $color-hover: $white, $active-color: $white);
148   }
149
150   .disabled {
151     .btn-outline-primary {
152       color: $grey;
153       cursor: default;
154
155       .caret {
156         border-top-color: $grey;
157       }
158
159       &:hover {
160         background-color: lighten($green, 30%);
161       }
162     }
163   }
164
165   // Small tweaks to the toggle to stop the primary colour showing through
166   // when the menu is shown
167   .show > .btn-outline-primary.dropdown-toggle {
168     background-color: $green;
169     border-color: $green;
170
171     &:focus {
172       box-shadow: 0 0 0 0.2rem fade-out($green, 0.5);
173     }
174   }
175 }
176
177 nav.secondary {
178   position: absolute;
179   right: 0;
180
181   .nav-link {
182     padding: 0.2rem;
183     color: $darkgrey;
184   }
185
186   > ul li.current a {
187     color: darken($darkgrey, 25%);
188   }
189
190   .login-menu {
191     .btn-outline-secondary {
192       @include button-outline-variant($darkgrey, $color-hover: $white, $active-color: $white);
193     }
194   }
195
196   .user-menu {
197     .btn-outline-secondary {
198       @include button-outline-variant($darkgrey, $color-hover: $darkgrey, $active-background: white, $active-border: $darkgrey);
199       border-color: $grey;
200       &:hover {
201         border-color: $grey;
202       }
203     }
204   }
205
206   #inboxanchor {
207     background-color: lighten($grey, 10%);
208   }
209 }
210
211 nav.primary, nav.secondary {
212   .dropdown-item {
213     &:hover, &:active {
214       background-color: $green;
215       color: white;
216     }
217   }
218 }
219
220 #compact-secondary-nav {
221   display: none;
222 }
223
224 body.compact-nav {
225   #compact-secondary-nav {
226     display: inline-block;
227   }
228   .compact-hide {
229     display: none;
230   }
231 }
232
233 body.small-nav {
234   #menu-icon {
235     display: block;
236   }
237
238   nav.primary,
239   nav.secondary {
240     float: none !important;
241     position: relative;
242     display: block;
243     clear: both;
244   }
245
246   header {
247     height: auto;
248     min-height: $headerHeight;
249     background: #fff;
250
251     &.closed nav {
252       display: none;
253     }
254
255     .search_forms {
256       display: block;
257     }
258   }
259
260   #sidebar .search_forms,
261   #edit_tab,
262   #export_tab {
263     display: none;
264   }
265
266   nav.primary {
267     padding: 0;
268
269     ul, li {
270       border: none;
271       border-radius: 0;
272       width: 100%;
273     }
274
275     ul {
276       border-top: 1px solid #eee;
277       li {
278         border-bottom: 1px solid #eee;
279         border-right: none;
280         > a {
281           border-radius: 0;
282           width: 100%;
283           text-align: center;
284           font-size: 15px;
285         }
286       }
287     }
288
289     .btn-group {
290       width: 100%;
291       padding: 10px;
292     }
293   }
294
295   nav.secondary {
296     .user-menu, .login-menu {
297       width: 100%;
298     }
299   }
300
301   #compact-secondary-nav {
302     display: none;
303   }
304
305   .compact-hide {
306     display: inline-block;
307   }
308
309   .overlay-sidebar #sidebar .welcome {
310     display: none;
311   }
312
313   .overlay-sidebar #sidebar #banner {
314     display: none;
315   }
316 }
317
318 /* Utility for styling notification numbers */
319
320 .count-number {
321   background: lighten($green, 30%);
322   color: $gray-800;
323   font-weight: $font-weight-normal;
324 }
325
326 /* Rules for the message shown in place of the map when javascript is disabled */
327
328 #noscript {
329   z-index: 20000000;
330   margin-left: 400px;
331   margin-top: 50px;
332 }
333
334 /* Rules for Leaflet maps */
335
336 .leaflet-top.leaflet-right,
337 .leaflet-top.leaflet-left {
338   height: 100%;
339   column-gap: 10px;
340   display: flex;
341   flex-direction: column;
342   flex-wrap: wrap-reverse;
343 }
344
345 .leaflet-control .control-button {
346   display: block;
347   height: 40px;
348   width: 40px;
349   background-color: #333;
350   background-color: rgba(0,0,0,.6);
351   outline: none;
352
353   &:hover,
354   &:focus {
355     background-color: black;
356   }
357
358   &.disabled,
359   &.leaflet-disabled {
360     background-color: #333;
361     background-color: rgba(0,0,0,.5);
362     cursor: default;
363   }
364
365   &.active {
366     background-color: $vibrant-green;
367   }
368
369   &-first {
370     border-start-start-radius: 4px;
371   }
372
373   &-last {
374     border-end-start-radius: 4px;
375     margin-bottom: 10px;
376   }
377
378   .icon {
379     margin: 10px;
380   }
381 }
382
383 /* Rules for the sidebar and main map area */
384
385 .map-layout {
386   #content {
387     overflow: hidden;
388     position: absolute;
389     top: $headerHeight;
390     bottom: 0;
391     width: 100%;
392   }
393
394   #sidebar, #map {
395     position: relative;
396     height: 100%;
397     overflow-x: hidden;
398     overflow-y: auto;
399   }
400
401   #sidebar {
402     float: left;
403     width: $sidebarWidth;
404     background: #fff;
405
406     #sidebar_loader {
407       display: none;
408     }
409
410     #sidebar_content {
411       padding: $spacer;
412     }
413
414     > div {
415       position: relative;
416     }
417   }
418
419   .overlay-sidebar #sidebar {
420     position: absolute;
421     z-index: 1000;
422     height: auto;
423     overflow: hidden;
424
425     #banner {
426       display: block;
427     }
428
429     .welcome {
430       display: block;
431     }
432
433     #sidebar_content {
434       display: none;
435     }
436   }
437
438   .welcome {
439     display: none;
440
441     p {
442       font-size: 110%;
443       font-weight: 300;
444     }
445   }
446
447   #banner {
448     display: none;
449
450     img {
451       display: block;
452       width: $sidebarWidth;
453     }
454
455     button.btn-close {
456       background-color: rgba(255, 255, 255, 0.5);
457       opacity: 1.0;
458     }
459   }
460
461   #map {
462     height: 100%;
463     overflow: hidden;
464
465     &.query-active {
466       cursor: help;
467     }
468
469     &.query-disabled {
470       cursor: not-allowed;
471     }
472
473     .leaflet-marker-draggable {
474       cursor: move;
475     }
476   }
477
478   #map-ui {
479     display: none;
480     position: relative;
481     float: right;
482     width: 250px;
483     height: 100%;
484     background: white;
485     overflow: auto;
486
487     .section {
488       border-bottom: 1px solid $grey;
489       padding: 10px 20px;
490     }
491   }
492 }
493
494 @include media-breakpoint-down(md) {
495   body.map-layout {
496     #sidebar, #map {
497       position: relative;
498       overflow-x: hidden;
499       width: 100%;
500       height: 50%;
501     }
502
503     #map-ui {
504       z-index: 9999;
505       width: 100%;
506       height: 50%;
507       overflow-y: scroll;
508     }
509
510     .overlay-sidebar {
511       #sidebar {
512         position: absolute;
513         width: 350px;
514         height: auto;
515         overflow: hidden;
516       }
517
518       #map, #map-ui {
519         height: 100%;
520       }
521     }
522   }
523 }
524
525 .layers-ui {
526   .base-layers {
527     .leaflet-container {
528       width: 100%;
529       height: 50px;
530       cursor: pointer;
531     }
532
533     li  {
534       overflow: hidden;
535       border-radius: 3px;
536       border: 2px solid #fff;
537       margin-bottom: 8px;
538       position: relative;
539       transition: border-color 0.08s ease-in;
540
541       label {
542         position: absolute;
543         top: 0;
544         left: 0;
545         padding: 2px 6px;
546         border-bottom-right-radius: 3px;
547         cursor: pointer;
548         font-weight: 600;
549         font-size: 16px;
550         text-stroke: 2px #fff;
551         background: rgba(255,255,255,.9);
552         z-index: 1000;
553         input[type="radio"] {
554           display: none;
555         }
556       }
557
558       &.active { border-color: darken($green, 10%); }
559       &:hover {
560         border-color: $grey;
561         &.active { border-color: darken($green, 20%); }
562       }
563     }
564   }
565
566   .overlay-layers {
567     p {
568       font-size: 13px;
569       margin-bottom: 8px;
570     }
571     li.disabled { color: $darkgrey; }
572   }
573 }
574
575 .share-ui {
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   #mapnik_scale {
593     width: 100px;
594   }
595 }
596
597 .leaflet-top {
598   top: $lineheight/2 !important;
599   .leaflet-control {
600     margin-right: 0px !important;
601     margin-top: 0px !important;
602   }
603 }
604
605 .leaflet-popup-scrolled {
606   padding-right: $lineheight;
607   border-bottom: 0px !important;
608   border-top: 0px !important;
609 }
610
611 .leaflet-popup-content-wrapper {
612   border-radius: 4px !important;
613 }
614
615 /* Rules for attribution text under the main map shown on printouts */
616
617 #attribution {
618   display: none;
619 }
620
621 .donate-attr { color: darken($green, 10%) !important; }
622
623 /* Rules for the sidebar */
624
625 .sidebar_heading {
626   position: relative;
627   padding: $lineheight/2 $lineheight;
628   // background: $offwhite;
629   // border-bottom: 1px solid $grey;
630 }
631
632 #browse_status {
633   input {
634     display: block;
635     margin-left: auto;
636     margin-right: auto;
637   }
638
639   > div {
640    padding: $spacer;
641   }
642 }
643
644 /* Temporary label size override until we remove site-wide font customisation */
645
646 form {
647   label {
648     font-size: 16px;
649   }
650 }
651
652 /* Stop bootstrap 5 from floating legends when they don't need to be */
653 legend {
654   float: none;
655 }
656
657 /* Override the text colour for primary and secondary buttons, to match our
658    bootstrap 4 colours. Note this has accessibility issues, which is why
659    bootstrap 5 calculates black as the appropriate colour, and we should
660    reconsider our colours at some point with that in mind. */
661
662 .btn-primary {
663   @include button-variant($primary, $primary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
664 }
665
666 .btn-secondary {
667   @include button-variant($secondary, $secondary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
668 }
669
670 .btn-outline-secondary {
671   @include button-outline-variant($secondary, $color-hover: $white, $active-color: $white);
672 }
673
674 /* Rules for the search and direction forms */
675
676 header .search_forms,
677 .directions_form {
678   display: none;
679 }
680
681 /* Rules for the map key which appears in the popout sidebar */
682
683 #mapkey {
684  .mapkey-table-key img {
685     display: block;
686     margin-left: auto;
687     margin-right: auto;
688   }
689 }
690
691 /* Rules for search sidebar */
692
693 #sidebar .search_results_entry {
694   ul li {
695     cursor: pointer;
696     &.selected { background: $list-highlight; }
697   }
698
699   .search_more .loader {
700     display: none;
701   }
702 }
703
704 .search_results_error {
705   color: #f00;
706   padding: 10px 20px;
707 }
708
709 /* Rules for routing */
710
711 div.direction {
712   background-image: image-url('routing-sprite.png');
713   width: 20px;
714   height: 20px;
715   background-repeat: no-repeat;
716 }
717 @for $i from 0 through 25 {
718 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
719 }
720
721 td.instruction, td.distance {
722     padding-top: $lineheight/5;
723     padding-bottom: $lineheight/5;
724     border-bottom: 1px solid $grey;
725 }
726 td.distance {
727     color: $darkgrey;
728     text-align: right;
729     font-size: x-small;
730 }
731 tr.turn {
732     cursor: pointer;
733 }
734 tr.turn:hover {
735     background: $list-highlight;
736 }
737
738 .routing_marker { width: 15px; cursor: move; }
739
740 .browse_status {
741   display: none;
742 }
743
744 /* Rules for the history sidebar */
745
746 #sidebar .changesets {
747   li {
748     &.selected { background: $list-highlight; }
749     /* color is derived from changeset bbox fillColor in history.js */
750
751     a.stretched-link > span, a:not(.stretched-link), [title] {
752       position: relative;
753       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
754     }
755   }
756
757   .comments {
758     color: $darkgrey;
759   }
760
761   .comments-0 {
762     opacity: 0.5;
763   }
764
765   .changeset_more .loader {
766     display: none;
767     width: 100%;
768   }
769 }
770
771 /* Rules for the browse sidebar */
772
773 #sidebar_content {
774   .browse-section {
775     padding-bottom: $spacer;
776     margin-bottom: $spacer;
777     border-bottom: 1px solid $grey;
778
779     h4:first-child {
780       word-wrap: break-word;
781     }
782   }
783
784   .browse-section:last-of-type {
785     border-bottom: none;
786   }
787
788   .browse-tag-list {
789     background-color: $offwhite;
790     table-layout: fixed;
791     border-collapse: separate;
792     border-spacing: 0;
793     width: 100%;
794     margin-bottom: $spacer;
795
796     th, td {
797       border-bottom: 1px solid $grey;
798     }
799
800     tr:last-child th, tr:last-child td {
801       border-bottom: 0;
802     }
803
804     .browse-tag-k,
805     .browse-tag-v {
806       width: 50%;
807       padding: 6px 10px;
808       word-wrap: break-word;
809       white-space: pre-wrap;
810     }
811
812     .browse-tag-k {
813       font-weight: 500;
814       background-color: $offwhite;
815     }
816
817     .browse-tag-v {
818       border-left: 1px solid $grey;
819       background-color: #fff;
820     }
821
822     .colour-preview-box {
823       float: right;
824       width: 14px;
825       height: 14px;
826       margin: 4px 0px;
827       border: 1px solid rgba(0, 0, 0, .1);
828       // add color via inline css on element: background-color: <tag value>;
829     }
830   }
831
832   .note-comments li, .changeset-comments li {
833     margin: $lineheight/2 0;
834
835     p {
836       margin: 10px 6px 0 6px;
837       line-height: 1.5;
838     }
839   }
840
841   .subscribe-buttons input {
842     font-size: 90%;
843     line-height: 15px;
844     min-height: 20px;
845   }
846
847   span.action-button:hover {
848     cursor: pointer;
849     text-decoration: underline;
850   }
851
852   .note-description {
853     overflow: hidden;
854     margin: 0 0 10px 10px;
855   }
856
857   .query-results {
858     display: none;
859
860     ul {
861       li {
862         &.query-result {
863           cursor: pointer;
864         }
865
866         &.selected {
867           background: $list-highlight;
868         }
869       }
870     }
871   }
872 }
873
874 /* Bootstrap buttons don't have any vertical margin, so
875    they touch when adjacent buttons wrap onto a new line
876    e.g. wide form buttons on a narrow sidebar */
877
878 .btn-wrapper {
879   > .btn {
880     margin-bottom: $spacer * 0.25;
881   }
882 }
883
884 /* Rules for export sidebar */
885
886 .export_form {
887   .export_area_inputs,
888   .export_button {
889     text-align: center;
890   }
891
892   .export_area_inputs {
893     margin-bottom: $spacer;
894     input[type="text"] {
895       width: 100px;
896       text-align: center;
897     }
898   }
899
900   .export_boxy {
901     background: $lightgrey;
902
903     #maxlat { margin-top: -1px; }
904     #minlon {
905       float: left;
906       /* no-r2 */ margin-left: -1px;
907     }
908     #maxlon {
909       float: right;
910       /* no-r2 */ margin-right: -1px;
911     }
912     #minlat { margin-bottom: -1px; }
913   }
914
915   .export_bound {
916     margin: $lineheight/4;
917   }
918
919   dl {
920     padding-left: $lineheight/2;
921     dd {
922       margin-left: 0;
923       margin-bottom: 10px;
924     }
925   }
926 }
927
928 /* Rules for edit pages */
929
930 .site-edit {
931   #content {
932     position: absolute;
933     top: $headerHeight;
934     bottom: 0;
935     width: 100%;
936   }
937
938   #map {
939     height: 100%;
940     overflow: hidden;
941   }
942 }
943
944 /* Rules for non-map content pages */
945
946 .content-heading {
947   background: $lightgrey;
948 }
949
950 .content-inner {
951   position: relative;
952   max-width: 960px;
953   margin: auto;
954   padding: $lineheight;
955 }
956
957 /* Overrides for pages that use new layout conventions */
958
959 .header-illustration {
960   background-position: 0 0;
961   background-repeat: no-repeat;
962   position: relative;
963   min-height: 200px;
964   width: 100%;
965   left: 0;
966   bottom: 0;
967
968   &.new-user-main {
969     background-image: image-url("sign-up-illustration.png");
970   }
971
972   &.confirm-main {
973     background-image: image-url("confirm-illustration.png");
974   }
975
976   &.new-user-terms {
977     background-image: image-url("terms-illustration.png");
978   }
979
980   &.new-user-arm {
981     height: 110px;
982     width: 130px;
983     left: 280px;
984     top: 180px;
985     background-image: image-url("sign-up-illustration-arm.png");
986     position: absolute;
987     z-index: 100;
988     pointer-events: none;
989   }
990 }
991
992 [dir=rtl] .header-illustration {
993   transform: scaleX(-1);
994
995   h1 {
996     transform: scaleX(-1);
997   }
998 }
999
1000 #content.maximised {
1001   top: 0;
1002   left: 0;
1003   right: 0;
1004   bottom: 0;
1005   border: 0;
1006   z-index: 2000;
1007 }
1008
1009 /* Rules for small maps in content areas */
1010
1011 .content_map {
1012   height: 200px;
1013   margin-bottom: $lineheight;
1014 }
1015
1016 @include media-breakpoint-up(md) {
1017   .content_map {
1018     height: 400px;
1019   }
1020 }
1021
1022 /* Rules for the user map */
1023
1024 .content_map .leaflet-popup-content {
1025   margin: $lineheight/2;
1026   min-height: 50px;
1027 }
1028
1029 /* Rules for user popups on maps */
1030
1031 .user_popup {
1032   min-width: 200px;
1033   p {
1034     padding: 0 0 5px 0;
1035     margin: 0 0 0 60px;
1036     font-size: 12px;
1037   }
1038 }
1039
1040 /* Rules for the user list */
1041
1042 #user_list {
1043   width: 100%;
1044 }
1045
1046 /* Rules for the diary entry page */
1047
1048 .diary_entries {
1049   #map {
1050     height: 400px;
1051     display: none;
1052   }
1053   .comments {
1054     max-width: 740px;
1055   }
1056   .diary-comment {
1057     border-top: 1px dashed $grey;
1058     &:first-child {
1059       border-top: 1px solid $grey;
1060     }
1061     p {
1062       margin-bottom: $lineheight/2;
1063     }
1064   }
1065 }
1066
1067 /* Rules for the log in page */
1068
1069 #login_auth_buttons {
1070   margin-bottom: 0;
1071
1072   li {
1073     float: left;
1074     padding: $lineheight/4 $lineheight/2;
1075   }
1076 }
1077
1078 /* Rules for the account confirmation page */
1079
1080 .users-terms {
1081   .legale {
1082     padding: $lineheight;
1083     margin-bottom: $lineheight;
1084     overflow: auto;
1085     height: 20em;
1086
1087     li {
1088       list-style: inherit;
1089     }
1090
1091     ol ol {
1092       list-style-type: lower-alpha;
1093     }
1094   }
1095 }
1096
1097 /* Rules for the oauth authorization page */
1098
1099 .oauth-authorize ul {
1100   list-style: none;
1101 }
1102
1103 /* Rules for messages pages */
1104
1105 .messages {
1106   .inbox-row {
1107     background: $offwhite;
1108   }
1109
1110   .inbox-row-unread {
1111     background: #CBEEA7;
1112   }
1113 }
1114
1115 .search_form {
1116   background-color: $lightgrey;
1117
1118   .describe_location {
1119     top: 6px;
1120     right: 6px;
1121     font-size: 10px;
1122     color: $blue;
1123   }
1124 }
1125
1126 .directions_form {
1127   background-color: $lightgrey;
1128 }
1129
1130 /* Rules for user images */
1131
1132 img.user_image {
1133   max-width: 100px;
1134   max-height: 100px;
1135 }
1136
1137 img.user_thumbnail {
1138   max-width: 50px;
1139   max-height: 50px;
1140 }
1141
1142 img.user_thumbnail_tiny {
1143   width: auto;
1144   height: auto;
1145   max-width: 25px;
1146   max-height: 25px;
1147 }
1148
1149 /* General styles for action lists / subnavs */
1150
1151 nav.secondary-actions {
1152   margin-left: -11px;
1153   overflow: hidden;
1154   > ul {
1155     display: flex;
1156     flex-direction: row;
1157     flex-wrap: wrap;
1158     margin-bottom: 0;
1159     margin-left: -1px;
1160     padding: 0;
1161     > li {
1162       flex-basis: auto;
1163       list-style: none;
1164       border-left: 1px solid $grey;
1165       padding-left: $lineheight/2;
1166       margin-right: $lineheight/2;
1167       margin-bottom: $lineheight/8;
1168     }
1169   }
1170 }
1171
1172 div.secondary-actions {
1173   padding: 10px;
1174   text-align: center;
1175 }
1176
1177 /* Rules for rich text */
1178
1179 .richtext,
1180 .prose {
1181   code {
1182     background: $lightgrey;
1183     padding: 2px 3px;
1184     direction: inherit; /* fix for Bootstrap < 5.2 */
1185     unicode-bidi: unset; /* fix for Bootstrap < 5.2 */
1186   }
1187
1188   pre {
1189     background: $lightgrey;
1190     padding: 2px 3px;
1191     white-space: pre-wrap;
1192
1193     code {
1194       padding: 0;
1195     }
1196   }
1197
1198   img {
1199     padding: $lineheight;
1200     background-color: $offwhite;
1201     display: block;
1202     max-width: 100%;
1203     margin: auto;
1204   }
1205
1206   blockquote {
1207     border-left: $lineheight solid $offwhite;
1208     padding-left: $lineheight;
1209     margin: 0;
1210     color: $darkgrey;
1211   }
1212 }
1213
1214 /* Rules for the iD editor */
1215
1216 .id-embed {
1217   width: 100%;
1218   height: 100%;
1219 }
1220
1221 /* Rules for the "Welcome" page */
1222 .site-welcome, .site-fixthemap {
1223   .sprite {
1224     background-image: image-url("welcome-sprite.png");
1225     background-size: 500px 250px;
1226     display: block;
1227   }
1228
1229   .sprite.small {
1230     width: 50px;
1231     height: 50px;
1232   }
1233
1234   .sprite.x {
1235     /* no-r2 */ background-position: -50px 0;
1236   }
1237
1238   .sprite.term {
1239     margin-right: 10px;
1240     vertical-align: middle;
1241   }
1242
1243   .sprite.node {
1244     /* no-r2 */ background-position: -100px 0;
1245   }
1246
1247   .sprite.way {
1248     /* no-r2 */ background-position: -150px 0;
1249   }
1250
1251   .sprite.tag {
1252     /* no-r2 */ background-position: -200px 0;
1253   }
1254
1255   .sprite.editor {
1256     /* no-r2 */ background-position: -250px 0;
1257   }
1258
1259   .sprite.question {
1260     /* no-r2 */ background-position: -300px 0;
1261   }
1262
1263   .sprite.rules {
1264     /* no-r2 */ background-position: -350px 0;
1265   }
1266
1267   .icon.note {
1268     background-color: #333;
1269     border-radius: 4px;
1270   }
1271 }
1272
1273 .site-about #content {
1274   background-color: $lightgrey;
1275
1276   .content-inner {
1277     max-width: 760px;
1278   }
1279
1280   .attr {
1281     margin-top: -20px;
1282
1283     h1 {
1284       span {
1285         color: $vibrant-green;
1286       }
1287     }
1288
1289     .user-image {
1290       height: 150px;
1291       background-position: 0 50%;
1292       background-repeat: no-repeat;
1293       background-image: image-url('about/osm.png');
1294       background-size: cover;
1295       background-color: $vibrant-green;
1296     }
1297
1298     .byosm {
1299       background: $vibrant-green;
1300     }
1301
1302     .byosm span {
1303       display: inline-block;
1304       width: 1em;
1305       margin-left: -1em;
1306     }
1307   }
1308
1309   .icon {
1310     width: 30px;
1311     height: 30px;
1312     background: 40px 40px image-url('about/sprite.png') no-repeat;
1313
1314     &.local {
1315       /* no-r2 */
1316       background-position: 0px 0px;
1317     }
1318     &.community {
1319       /* no-r2 */
1320       background-position: 0px -40px;
1321     }
1322     &.open {
1323       /* no-r2 */
1324       background-position: 0px -80px;
1325     }
1326     &.partners {
1327       /* no-r2 */
1328       background-position: 0px -120px;
1329     }
1330     &.infringement {
1331       /* no-r2 */
1332       background-position: 0px -160px;
1333     }
1334     &.legal {
1335       /* no-r2 */
1336       background-position: -45px -160px;
1337     }
1338   }
1339 }
1340
1341 @import 'browse';