]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Use bootstrap form controls for the link and html controls
[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   #mapnik_scale {
577     width: 100px;
578   }
579 }
580
581 .leaflet-top {
582   top: $lineheight/2 !important;
583   .leaflet-control {
584     margin-right: 0px !important;
585     margin-top: 0px !important;
586   }
587 }
588
589 .leaflet-popup-scrolled {
590   padding-right: $lineheight;
591   border-bottom: 0px !important;
592   border-top: 0px !important;
593 }
594
595 .leaflet-popup-content-wrapper {
596   border-radius: 4px !important;
597 }
598
599 /* Rules for attribution text under the main map shown on printouts */
600
601 #attribution {
602   display: none;
603 }
604
605 .donate-attr { color: darken($green, 10%) !important; }
606
607 /* Rules for the sidebar */
608
609 .sidebar_heading {
610   position: relative;
611   padding: $lineheight/2 $lineheight;
612   // background: $offwhite;
613   // border-bottom: 1px solid $grey;
614 }
615
616 #browse_status {
617   input {
618     display: block;
619     margin-left: auto;
620     margin-right: auto;
621   }
622
623   > div {
624    padding: $spacer;
625   }
626 }
627
628 /* Temporary label size override until we remove site-wide font customisation */
629
630 form {
631   label {
632     font-size: 16px;
633   }
634   .col-form-label {
635     font-size: 16px;
636   }
637 }
638
639 /* Stop bootstrap 5 from floating legends when they don't need to be */
640 legend {
641   float: none;
642 }
643
644 /* Override the text colour for primary and secondary buttons, to match our
645    bootstrap 4 colours. Note this has accessibility issues, which is why
646    bootstrap 5 calculates black as the appropriate colour, and we should
647    reconsider our colours at some point with that in mind. */
648
649 .btn-primary {
650   @include button-variant($primary, $primary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
651 }
652
653 .btn-secondary {
654   @include button-variant($secondary, $secondary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
655 }
656
657 .btn-outline-secondary {
658   @include button-outline-variant($secondary, $color-hover: $white, $active-color: $white);
659 }
660
661 /* Rules for the search and direction forms */
662
663 header .search_forms,
664 .directions_form {
665   display: none;
666 }
667
668 /* Rules for the map key which appears in the popout sidebar */
669
670 #mapkey {
671  .mapkey-table-key img {
672     display: block;
673     margin-left: auto;
674     margin-right: auto;
675   }
676 }
677
678 /* Rules for search sidebar */
679
680 #sidebar .search_results_entry {
681   ul li {
682     cursor: pointer;
683     &.selected { background: $list-highlight; }
684   }
685
686   .search_more .loader {
687     display: none;
688   }
689 }
690
691 .search_results_error {
692   color: #f00;
693   padding: 10px 20px;
694 }
695
696 /* Rules for routing */
697
698 div.direction {
699   background-image: image-url('routing-sprite.png');
700   width: 20px;
701   height: 20px;
702   background-repeat: no-repeat;
703 }
704 @for $i from 0 through 25 {
705 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
706 }
707
708 td.instruction, td.distance {
709     padding-top: $lineheight/5;
710     padding-bottom: $lineheight/5;
711     border-bottom: 1px solid $grey;
712 }
713 td.distance {
714     color: $darkgrey;
715     text-align: right;
716     font-size: x-small;
717 }
718 tr.turn {
719     cursor: pointer;
720 }
721 tr.turn:hover {
722     background: $list-highlight;
723 }
724
725 .routing_marker { width: 15px; cursor: move; }
726
727 .browse_status {
728   display: none;
729 }
730
731 /* Rules for the history sidebar */
732
733 #sidebar .changesets {
734   li {
735     &.selected { background: $list-highlight; }
736     /* color is derived from changeset bbox fillColor in history.js */
737
738     a.stretched-link > span, a:not(.stretched-link), [title] {
739       position: relative;
740       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
741     }
742   }
743
744   .comments {
745     color: $darkgrey;
746   }
747
748   .comments-0 {
749     opacity: 0.5;
750   }
751
752   .changeset_more .loader {
753     display: none;
754     width: 100%;
755   }
756 }
757
758 /* Rules for the browse sidebar */
759
760 #sidebar_content {
761   .browse-section {
762     padding-bottom: $spacer;
763     margin-bottom: $spacer;
764     border-bottom: 1px solid $grey;
765
766     h4:first-child {
767       word-wrap: break-word;
768     }
769   }
770
771   .browse-section:last-of-type {
772     border-bottom: none;
773   }
774
775   .browse-tag-list {
776     background-color: $offwhite;
777     table-layout: fixed;
778     border-collapse: separate;
779     border-spacing: 0;
780     width: 100%;
781     margin-bottom: $spacer;
782
783     th, td {
784       border-bottom: 1px solid $grey;
785     }
786
787     tr:last-child th, tr:last-child td {
788       border-bottom: 0;
789     }
790
791     .browse-tag-k,
792     .browse-tag-v {
793       width: 50%;
794       padding: 6px 10px;
795       word-wrap: break-word;
796       white-space: pre-wrap;
797     }
798
799     .browse-tag-k {
800       font-weight: 500;
801       background-color: $offwhite;
802     }
803
804     .browse-tag-v {
805       border-left: 1px solid $grey;
806       background-color: #fff;
807     }
808
809     .colour-preview-box {
810       float: right;
811       width: 14px;
812       height: 14px;
813       margin: 4px 0px;
814       border: 1px solid rgba(0, 0, 0, .1);
815       // add color via inline css on element: background-color: <tag value>;
816     }
817   }
818
819   .note-comments li, .changeset-comments li {
820     margin: $lineheight/2 0;
821
822     p {
823       margin: 10px 6px 0 6px;
824       line-height: 1.5;
825     }
826   }
827
828   .subscribe-buttons input {
829     font-size: 90%;
830     line-height: 15px;
831     min-height: 20px;
832   }
833
834   span.action-button:hover {
835     cursor: pointer;
836     text-decoration: underline;
837   }
838
839   .note-description {
840     overflow: hidden;
841     margin: 0 0 10px 10px;
842   }
843
844   .query-results {
845     display: none;
846
847     ul {
848       li {
849         &.query-result {
850           cursor: pointer;
851         }
852
853         &.selected {
854           background: $list-highlight;
855         }
856       }
857     }
858   }
859 }
860
861 /* Bootstrap buttons don't have any vertical margin, so
862    they touch when adjacent buttons wrap onto a new line
863    e.g. wide form buttons on a narrow sidebar */
864
865 .btn-wrapper {
866   > .btn {
867     margin-bottom: $spacer * 0.25;
868   }
869 }
870
871 /* Rules for export sidebar */
872
873 .export_form {
874   .export_area_inputs,
875   .export_button {
876     text-align: center;
877   }
878
879   .export_area_inputs {
880     margin-bottom: $spacer;
881     input[type="text"] {
882       width: 100px;
883       text-align: center;
884     }
885   }
886
887   .export_boxy {
888     background: $lightgrey;
889
890     #maxlat { margin-top: -1px; }
891     #minlon {
892       float: left;
893       /* no-r2 */ margin-left: -1px;
894     }
895     #maxlon {
896       float: right;
897       /* no-r2 */ margin-right: -1px;
898     }
899     #minlat { margin-bottom: -1px; }
900   }
901
902   .export_bound {
903     margin: $lineheight/4;
904   }
905
906   dl {
907     padding-left: $lineheight/2;
908     dd {
909       margin-left: 0;
910       margin-bottom: 10px;
911     }
912   }
913 }
914
915 /* Rules for edit pages */
916
917 .site-edit {
918   #content {
919     position: absolute;
920     top: $headerHeight;
921     bottom: 0;
922     width: 100%;
923   }
924
925   #map {
926     height: 100%;
927     overflow: hidden;
928   }
929 }
930
931 /* Rules for non-map content pages */
932
933 .content-heading {
934   background: $lightgrey;
935 }
936
937 .content-inner {
938   position: relative;
939   max-width: 960px;
940   margin: auto;
941   padding: $lineheight;
942 }
943
944 /* Overrides for pages that use new layout conventions */
945
946 .header-illustration {
947   background-position: 0 0;
948   background-repeat: no-repeat;
949   position: relative;
950   min-height: 200px;
951   width: 100%;
952   left: 0;
953   bottom: 0;
954
955   &.new-user-main {
956     background-image: image-url("sign-up-illustration.png");
957   }
958
959   &.confirm-main {
960     background-image: image-url("confirm-illustration.png");
961   }
962
963   &.new-user-terms {
964     background-image: image-url("terms-illustration.png");
965   }
966
967   &.new-user-arm {
968     height: 110px;
969     width: 130px;
970     left: 280px;
971     top: 180px;
972     background-image: image-url("sign-up-illustration-arm.png");
973     position: absolute;
974     z-index: 100;
975     pointer-events: none;
976   }
977 }
978
979 [dir=rtl] .header-illustration {
980   transform: scaleX(-1);
981
982   h1 {
983     transform: scaleX(-1);
984   }
985 }
986
987 #content.maximised {
988   top: 0;
989   left: 0;
990   right: 0;
991   bottom: 0;
992   border: 0;
993   z-index: 2000;
994 }
995
996 /* Rules for small maps in content areas */
997
998 .content_map {
999   height: 200px;
1000   margin-bottom: $lineheight;
1001 }
1002
1003 @include media-breakpoint-up(md) {
1004   .content_map {
1005     height: 400px;
1006   }
1007 }
1008
1009 /* Rules for the user map */
1010
1011 .content_map .leaflet-popup-content {
1012   margin: $lineheight/2;
1013   min-height: 50px;
1014 }
1015
1016 /* Rules for user popups on maps */
1017
1018 .user_popup {
1019   min-width: 200px;
1020   p {
1021     padding: 0 0 5px 0;
1022     margin: 0 0 0 60px;
1023     font-size: 12px;
1024   }
1025 }
1026
1027 /* Rules for the user list */
1028
1029 #user_list {
1030   width: 100%;
1031 }
1032
1033 /* Rules for the diary entry page */
1034
1035 .diary_entries {
1036   #map {
1037     height: 400px;
1038     display: none;
1039   }
1040   .comments {
1041     max-width: 740px;
1042   }
1043   .diary-comment {
1044     border-top: 1px dashed $grey;
1045     &:first-child {
1046       border-top: 1px solid $grey;
1047     }
1048     p {
1049       margin-bottom: $lineheight/2;
1050     }
1051   }
1052 }
1053
1054 /* Rules for the log in page */
1055
1056 #login_auth_buttons {
1057   margin-bottom: 0;
1058
1059   li {
1060     float: left;
1061     padding: $lineheight/4 $lineheight/2;
1062   }
1063 }
1064
1065 /* Rules for the account confirmation page */
1066
1067 .users-terms {
1068   .legale {
1069     padding: $lineheight;
1070     margin-bottom: $lineheight;
1071     overflow: auto;
1072     height: 20em;
1073
1074     li {
1075       list-style: inherit;
1076     }
1077
1078     ol ol {
1079       list-style-type: lower-alpha;
1080     }
1081   }
1082 }
1083
1084 /* Rules for the oauth authorization page */
1085
1086 .oauth-authorize ul {
1087   list-style: none;
1088 }
1089
1090 /* Rules for messages pages */
1091
1092 .messages {
1093   .inbox-row {
1094     background: $offwhite;
1095   }
1096
1097   .inbox-row-unread {
1098     background: #CBEEA7;
1099   }
1100 }
1101
1102 .search_form {
1103   background-color: $lightgrey;
1104
1105   .describe_location {
1106     top: 6px;
1107     right: 6px;
1108     font-size: 10px;
1109     color: $blue;
1110   }
1111 }
1112
1113 .directions_form {
1114   background-color: $lightgrey;
1115 }
1116
1117 /* Rules for user images */
1118
1119 img.user_image {
1120   max-width: 100px;
1121   max-height: 100px;
1122 }
1123
1124 img.user_thumbnail {
1125   max-width: 50px;
1126   max-height: 50px;
1127 }
1128
1129 img.user_thumbnail_tiny {
1130   width: auto;
1131   height: auto;
1132   max-width: 25px;
1133   max-height: 25px;
1134 }
1135
1136 /* General styles for action lists / subnavs */
1137
1138 nav.secondary-actions {
1139   margin-left: -11px;
1140   overflow: hidden;
1141   > ul {
1142     display: flex;
1143     flex-direction: row;
1144     flex-wrap: wrap;
1145     margin-bottom: 0;
1146     margin-left: -1px;
1147     padding: 0;
1148     > li {
1149       flex-basis: auto;
1150       list-style: none;
1151       border-left: 1px solid $grey;
1152       padding-left: $lineheight/2;
1153       margin-right: $lineheight/2;
1154       margin-bottom: $lineheight/8;
1155     }
1156   }
1157 }
1158
1159 div.secondary-actions {
1160   padding: 10px;
1161   text-align: center;
1162 }
1163
1164 /* Rules for rich text */
1165
1166 .richtext,
1167 .prose {
1168   code {
1169     background: $lightgrey;
1170     padding: 2px 3px;
1171     direction: inherit; /* fix for Bootstrap < 5.2 */
1172     unicode-bidi: unset; /* fix for Bootstrap < 5.2 */
1173   }
1174
1175   pre {
1176     background: $lightgrey;
1177     padding: 2px 3px;
1178     white-space: pre-wrap;
1179
1180     code {
1181       padding: 0;
1182     }
1183   }
1184
1185   img {
1186     padding: $lineheight;
1187     background-color: $offwhite;
1188     display: block;
1189     max-width: 100%;
1190     margin: auto;
1191   }
1192
1193   blockquote {
1194     border-left: $lineheight solid $offwhite;
1195     padding-left: $lineheight;
1196     margin: 0;
1197     color: $darkgrey;
1198   }
1199 }
1200
1201 /* Rules for the iD editor */
1202
1203 .id-embed {
1204   width: 100%;
1205   height: 100%;
1206 }
1207
1208 /* Rules for the "Welcome" page */
1209 .site-welcome, .site-fixthemap {
1210   .sprite {
1211     background-image: image-url("welcome-sprite.png");
1212     background-size: 500px 250px;
1213     display: block;
1214   }
1215
1216   .sprite.small {
1217     width: 50px;
1218     height: 50px;
1219   }
1220
1221   .sprite.x {
1222     /* no-r2 */ background-position: -50px 0;
1223   }
1224
1225   .sprite.term {
1226     margin-right: 10px;
1227     vertical-align: middle;
1228   }
1229
1230   .sprite.node {
1231     /* no-r2 */ background-position: -100px 0;
1232   }
1233
1234   .sprite.way {
1235     /* no-r2 */ background-position: -150px 0;
1236   }
1237
1238   .sprite.tag {
1239     /* no-r2 */ background-position: -200px 0;
1240   }
1241
1242   .sprite.editor {
1243     /* no-r2 */ background-position: -250px 0;
1244   }
1245
1246   .sprite.question {
1247     /* no-r2 */ background-position: -300px 0;
1248   }
1249
1250   .sprite.rules {
1251     /* no-r2 */ background-position: -350px 0;
1252   }
1253
1254   .icon.note {
1255     background-color: #333;
1256     border-radius: 4px;
1257   }
1258 }
1259
1260 .site-about #content {
1261   background-color: $lightgrey;
1262
1263   .content-inner {
1264     max-width: 760px;
1265   }
1266
1267   .attr {
1268     margin-top: -20px;
1269
1270     h1 {
1271       span {
1272         color: $vibrant-green;
1273       }
1274     }
1275
1276     .user-image {
1277       height: 150px;
1278       background-position: 0 50%;
1279       background-repeat: no-repeat;
1280       background-image: image-url('about/osm.png');
1281       background-size: cover;
1282       background-color: $vibrant-green;
1283     }
1284
1285     .byosm {
1286       background: $vibrant-green;
1287     }
1288
1289     .byosm span {
1290       display: inline-block;
1291       width: 1em;
1292       margin-left: -1em;
1293     }
1294   }
1295
1296   .icon {
1297     width: 30px;
1298     height: 30px;
1299     background: 40px 40px image-url('about/sprite.png') no-repeat;
1300
1301     &.local {
1302       /* no-r2 */
1303       background-position: 0px 0px;
1304     }
1305     &.community {
1306       /* no-r2 */
1307       background-position: 0px -40px;
1308     }
1309     &.open {
1310       /* no-r2 */
1311       background-position: 0px -80px;
1312     }
1313     &.partners {
1314       /* no-r2 */
1315       background-position: 0px -120px;
1316     }
1317     &.infringement {
1318       /* no-r2 */
1319       background-position: 0px -160px;
1320     }
1321     &.legal {
1322       /* no-r2 */
1323       background-position: -45px -160px;
1324     }
1325   }
1326 }
1327
1328 @import 'browse';