]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Merge remote-tracking branch 'upstream/pull/4835'
[rails.git] / app / assets / stylesheets / common.scss
1 @use "sass:map";
2 @import "parameters";
3 @import "browse";
4 @import "bootstrap";
5 @import "rails_bootstrap_forms";
6
7 /* Styles common to large and small screens */
8
9 /* Default rules for the body of every page */
10
11 body {
12   font-size: $typeheight;
13 }
14
15 time[title] {
16   text-decoration: underline dotted;
17 }
18
19 #container { position: relative; }
20
21 /* Rules for icons */
22
23 .icon {
24   display: inline-block;
25   vertical-align: top;
26   width: 20px;
27   height: 20px;
28   background: transparent image-url("sprite.svg") no-repeat 0 0;
29   text-indent: -9999px;
30   overflow: hidden;
31 }
32
33 .icon.search      { /*rtl:ignore*/ background-position: 0 0; }
34 .icon.donate      { /*rtl:ignore*/ background-position: -20px 0; }
35 .icon.zoomin      { /*rtl:ignore*/ background-position: -40px 0; }
36 .icon.zoomout     { /*rtl:ignore*/ background-position: -60px 0; }
37 .icon.geolocate   { /*rtl:ignore*/ background-position: -80px 0; }
38 .active .icon.geolocate   { /*rtl:ignore*/ background-position: -80px -20px; }
39 .icon.layers      { /*rtl:ignore*/ background-position: -100px 0; }
40 .icon.key         { /*rtl:ignore*/ background-position: -120px 0; }
41 .icon.share       { /*rtl:ignore*/ background-position: -140px 0; }
42 .icon.clipboard   { /*rtl:ignore*/ background-position: -160px 0; }
43 .icon.link        { /*rtl:ignore*/ background-position: -180px 0; }
44 .icon.close       { /*rtl:ignore*/ background-position: -200px 0; }
45 .icon.close:hover { /*rtl:ignore*/ background-position: -200px -20px; }
46 .icon.check       { /*rtl:ignore*/ background-position: -220px 0; }
47 .icon.note        { /*rtl:ignore*/ background-position: -240px 0; }
48 .icon.note.grey   { /*rtl:ignore*/ background-position: -240px -20px; }
49 .icon.query       { /*rtl:ignore*/ background-position: -260px 0; }
50
51 /* Utility for de-emphasizing content */
52
53 .text-body-secondary a {
54   color: $blue;
55 }
56
57 /* Bootstrap contextual table classes overrides in dark mode */
58
59 @include color-mode(dark) {
60   .table-primary {
61     --bs-table-bg: rgb(var(--bs-primary-rgb), .25);
62   }
63   .table-secondary {
64     --bs-table-bg: rgb(var(--bs-secondary-rgb), .25);
65   }
66   .table-success {
67     --bs-table-bg: rgb(var(--bs-success-rgb), .25);
68   }
69   .table-primary, .table-secondary, .table-success {
70     --bs-table-color: initial;
71     border-color: inherit;
72   }
73 }
74
75 /* Rules for the header */
76
77 #menu-icon {
78   display: none;
79   position: absolute;
80   top: 0;
81   right: 0;
82   background: image-url("menu-icon.svg") no-repeat;
83   background-size: 30px 30px;
84   width: 30px;
85   height: 30px;
86   margin: 14px 10px 0 0;
87   opacity: 0.6;
88 }
89
90 @include color-mode(dark) {
91   #menu-icon {
92     filter: invert(1);
93   }
94 }
95
96 header {
97   height: $headerHeight;
98   position: relative;
99   font-size: 14px;
100
101   h1, nav, nav > ul, nav > ul > li {
102     display: inline-block;
103   }
104
105   > * {
106     padding: $lineheight * 0.5;
107   }
108
109   h1 {
110     height: $headerHeight;
111     font-size: 18px;
112   }
113
114   .btn {
115     font-size: 14px;
116   }
117
118   nav.primary {
119     margin-right: auto;
120   }
121 }
122
123 nav.primary {
124   & > .btn-group .btn-outline-primary {
125     @include button-outline-variant($green, $color-hover: $white, $active-color: $white);
126   }
127
128   .disabled {
129     .btn-outline-primary {
130       color: $grey;
131       cursor: default;
132
133       .caret {
134         border-top-color: $grey;
135       }
136
137       &:hover {
138         background-color: lighten($green, 30%);
139       }
140     }
141   }
142
143   // Small tweaks to the toggle to stop the primary colour showing through
144   // when the menu is shown
145   .show > .btn-outline-primary.dropdown-toggle {
146     background-color: $green;
147     border-color: $green;
148
149     &:focus {
150       box-shadow: 0 0 0 0.2rem fade-out($green, 0.5);
151     }
152   }
153 }
154
155 nav.secondary {
156   .nav-link {
157     padding: 0.2rem;
158   }
159 }
160
161 nav.primary, nav.secondary {
162   .dropdown-item {
163     &:hover, &:active {
164       background-color: $green;
165       color: white;
166     }
167   }
168 }
169
170 #compact-secondary-nav {
171   display: none;
172 }
173
174 body.compact-nav {
175   #compact-secondary-nav {
176     display: inline-block;
177   }
178   .compact-hide {
179     display: none;
180   }
181 }
182
183 body.small-nav {
184   #menu-icon {
185     display: block;
186   }
187
188   header {
189     flex-direction: column;
190     height: auto;
191     min-height: $headerHeight;
192
193     &.closed nav {
194       display: none;
195     }
196
197     .search_forms {
198       display: block;
199     }
200   }
201
202   #sidebar .search_forms,
203   #edit_tab,
204   #export_tab {
205     display: none;
206   }
207
208   nav.primary {
209     margin-right: 0;
210     padding: 0;
211
212     .btn-group {
213       width: 100%;
214       padding: 10px;
215     }
216   }
217
218   nav.secondary {
219     .user-menu, .login-menu {
220       width: 100%;
221     }
222   }
223
224   #compact-secondary-nav {
225     display: none;
226   }
227
228   .compact-hide {
229     display: inline-block;
230   }
231
232   .overlay-sidebar #sidebar .welcome {
233     display: none;
234   }
235
236   .overlay-sidebar #sidebar #banner {
237     display: none;
238   }
239 }
240
241 /* Utility for styling notification numbers */
242
243 .count-number {
244   background: transparentize(lighten($green, 25%), .25);
245   color: $gray-800;
246   font-weight: $font-weight-normal;
247 }
248
249 /* Rules for Leaflet maps */
250
251 .leaflet-top.leaflet-right,
252 .leaflet-top.leaflet-left {
253   height: 100%;
254   column-gap: 10px;
255   display: flex;
256   flex-direction: column;
257   flex-wrap: wrap-reverse;
258 }
259
260 .leaflet-control .control-button {
261   display: block;
262   height: 40px;
263   width: 40px;
264   background-color: #333;
265   background-color: rgba(0,0,0,.6);
266   outline: none;
267
268   &:hover,
269   &:focus {
270     background-color: black;
271   }
272
273   &.disabled,
274   &.leaflet-disabled {
275     background-color: #333;
276     background-color: rgba(0,0,0,.5);
277     cursor: default;
278   }
279
280   &.active {
281     background-color: $vibrant-green;
282   }
283
284   &-first {
285     border-start-start-radius: 4px;
286   }
287
288   &-last {
289     border-end-start-radius: 4px;
290     margin-bottom: 10px;
291   }
292
293   .icon {
294     margin: 10px;
295   }
296 }
297
298 /* Rules for the sidebar and main map area */
299
300 .map-layout {
301   #content {
302     overflow: hidden;
303     position: absolute;
304     top: $headerHeight;
305     bottom: 0;
306     width: 100%;
307   }
308
309   #sidebar, #map {
310     position: relative;
311     height: 100%;
312     overflow-x: hidden;
313     overflow-y: auto;
314   }
315
316   #sidebar {
317     float: left;
318     width: $sidebarWidth;
319
320     #sidebar_loader {
321       display: none;
322     }
323   }
324
325   .overlay-sidebar #sidebar {
326     position: absolute;
327     height: auto;
328     overflow: hidden;
329
330     #banner {
331       display: block;
332     }
333
334     .welcome {
335       display: block;
336     }
337
338     #sidebar_content {
339       display: none;
340     }
341   }
342
343   .welcome {
344     display: none;
345   }
346
347   #banner {
348     display: none;
349
350     img {
351       display: block;
352       width: $sidebarWidth;
353     }
354   }
355
356   #map {
357     height: 100%;
358     overflow: hidden;
359
360     &.query-active {
361       cursor: help;
362     }
363
364     &.query-disabled {
365       cursor: not-allowed;
366     }
367
368     .leaflet-marker-draggable {
369       cursor: move;
370     }
371   }
372
373   #map-ui {
374     display: none;
375     position: relative;
376     float: right;
377     width: 250px;
378     height: 100%;
379     overflow: auto;
380   }
381 }
382
383 @include media-breakpoint-down(md) {
384   body.map-layout {
385     #sidebar, #map {
386       position: relative;
387       overflow-x: hidden;
388       width: 100%;
389       height: 50%;
390     }
391
392     #map-ui {
393       width: 100%;
394       height: 50%;
395       overflow-y: scroll;
396     }
397
398     .overlay-sidebar {
399       #sidebar {
400         position: absolute;
401         width: 350px;
402         height: auto;
403         overflow: hidden;
404       }
405
406       #map, #map-ui {
407         height: 100%;
408       }
409     }
410   }
411 }
412
413 .layers-ui {
414   .base-layers > * {
415     height: 56px;
416
417     > .btn {
418       --bs-btn-border-color: var(--bs-body-bg);
419     }
420     > .btn:hover {
421       --bs-btn-border-color: var(--bs-primary-border-subtle);
422     }
423   }
424
425   .overlay-layers {
426     li.disabled { color: $darkgrey; }
427   }
428 }
429
430 .share-ui {
431   #mapnik_scale {
432     width: 100px;
433   }
434 }
435
436 .leaflet-top {
437   top: 10px !important;
438   .leaflet-control {
439     margin-right: 0px !important;
440     margin-top: 0px !important;
441   }
442 }
443
444 .leaflet-popup-scrolled {
445   padding-right: $lineheight;
446   border-bottom: 0px !important;
447   border-top: 0px !important;
448 }
449
450 .leaflet-popup-content-wrapper, .leaflet-popup-tip,
451 .leaflet-contextmenu, .leaflet-contextmenu-item,
452 .leaflet-control-attribution, .leaflet-control-scale-line {
453   @extend .bg-body, .text-body;
454 }
455
456 .leaflet-control-attribution, .leaflet-control-scale-line {
457   @extend .bg-opacity-75;
458   text-shadow: none !important;
459 }
460
461 .leaflet-contextmenu-item.over {
462   @extend .bg-body-secondary, .border-secondary, .border-opacity-10;
463 }
464
465 .leaflet-popup-content-wrapper {
466   @extend .rounded-1;
467
468   a {
469     color: var(--bs-link-color) !important;
470   }
471 }
472
473 @include color-mode(dark) {
474   .leaflet-tile-container,
475   .mapkey-table-entry td:first-child > * {
476     filter: brightness(.8);
477   }
478
479   .leaflet-control-attribution a {
480     color: var(--bs-link-color);
481   }
482
483   .leaflet-control-scale-line {
484     @extend .border-light, .border-opacity-75;
485   }
486 }
487
488 /* Rules for attribution text under the main map shown on printouts */
489
490 .donate-attr { color: darken($green, 10%) !important; }
491
492 /* Temporary label size override until we remove site-wide font customisation */
493
494 form {
495   label {
496     font-size: 16px;
497   }
498   .col-form-label {
499     font-size: 16px;
500   }
501 }
502
503 /* Stop bootstrap 5 from floating legends when they don't need to be */
504 legend {
505   float: none;
506 }
507
508 /* Override the text colour for primary and secondary buttons, to match our
509    bootstrap 4 colours. Note this has accessibility issues, which is why
510    bootstrap 5 calculates black as the appropriate colour, and we should
511    reconsider our colours at some point with that in mind. */
512
513 .btn-primary {
514   @include button-variant($primary, $primary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
515 }
516
517 .btn-secondary {
518   @include button-variant($secondary, $secondary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
519 }
520
521 .btn-outline-secondary {
522   @include button-outline-variant($secondary, $color-hover: $white, $active-color: $white);
523 }
524
525 /* Rules for the search and direction forms */
526
527 header .search_forms,
528 .directions_form {
529   display: none;
530 }
531
532 .search_form {
533   .describe_location {
534     font-size: 10px;
535   }
536 }
537
538 /* Rules for search sidebar */
539
540 #sidebar .search_results_entry {
541   .search_more .loader {
542     display: none;
543   }
544 }
545
546 /* Rules for routing */
547
548 div.direction {
549   background-image: image-url('routing-sprite.svg');
550   width: 20px;
551   height: 20px;
552   background-repeat: no-repeat;
553 }
554 @for $i from 0 through 25 {
555 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
556 }
557
558 @include color-mode(dark) {
559   div.direction {
560     filter: invert(1);
561   }
562 }
563
564 td.distance {
565     font-size: x-small;
566 }
567 tr.turn {
568     cursor: pointer;
569 }
570
571 .routing_marker { width: 15px; cursor: move; }
572
573 .browse_status {
574   display: none;
575 }
576
577 /* Rules for the history sidebar */
578
579 #sidebar .changesets {
580   li {
581     &.selected {
582       @extend :hover;
583     }
584
585     a.stretched-link > span, a:not(.stretched-link), [title] {
586       position: relative;
587       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
588     }
589   }
590
591   .changeset_more .loader {
592     display: none;
593     width: 100%;
594   }
595 }
596
597 /* Rules for the browse sidebar */
598
599 #sidebar_content {
600   .browse-section {
601     padding-bottom: $spacer;
602     margin-bottom: $spacer;
603     border-bottom: 1px solid $grey;
604
605     h4:first-child {
606       word-wrap: break-word;
607     }
608   }
609
610   .browse-section:last-of-type {
611     border-bottom: none;
612   }
613
614   .browse-tag-list {
615     table-layout: fixed;
616     white-space: pre-wrap;
617     word-wrap: break-word;
618     word-break: break-word;
619
620     tr:last-child th, tr:last-child td {
621       border-bottom: 0;
622     }
623   }
624
625   .query-results {
626     display: none;
627   }
628 }
629
630 /* Bootstrap buttons don't have any vertical margin, so
631    they touch when adjacent buttons wrap onto a new line
632    e.g. wide form buttons on a narrow sidebar */
633
634 .btn-wrapper {
635   > .btn {
636     margin-bottom: $spacer * 0.25;
637   }
638 }
639
640 /* Force LTR/RTL alignment for placeholder text */
641
642 .form-control::placeholder {
643   text-align: left;
644 }
645
646 /* Rules for export sidebar */
647
648 .export_form {
649   .export_area_inputs {
650     input[type="text"] {
651       width: 100px;
652     }
653   }
654
655   .export_boxy {
656     > * {
657         margin: -1px;
658     }
659     #minlon {
660       /*rtl:ignore*/ float: left;
661     }
662     #maxlon {
663       /*rtl:ignore*/ float: right;
664     }
665   }
666 }
667
668 /* Rules for edit pages */
669
670 .site-edit {
671   #content {
672     position: absolute;
673     top: $headerHeight;
674     bottom: 0;
675     width: 100%;
676   }
677 }
678
679 /* Rules for non-map content pages */
680
681 .content-inner {
682   position: relative;
683   max-width: 960px;
684   margin: auto;
685   padding: $lineheight;
686 }
687
688 /* Overrides for pages that use new layout conventions */
689
690 .header-illustration {
691   background-position: 0 0;
692   background-repeat: no-repeat;
693   position: relative;
694   min-height: 200px;
695   width: 100%;
696   left: 0;
697   bottom: 0;
698
699   &.new-user-main {
700     background-image: image-url("sign-up-illustration.png");
701     background-position-x: 50px;
702   }
703
704   &.confirm-main {
705     background-image: image-url("confirm-illustration.png");
706   }
707
708   &.new-user-terms {
709     background-image: image-url("terms-illustration.png");
710   }
711 }
712
713 [dir=rtl] .header-illustration {
714   transform: scaleX(-1);
715
716   h1 {
717     transform: scaleX(-1);
718   }
719
720   ul {
721     transform: scaleX(-1);
722   }
723 }
724
725 /* Rules for small maps in content areas */
726
727 .content_map {
728   height: 200px;
729   margin-bottom: $lineheight;
730 }
731
732 @include media-breakpoint-up(md) {
733   .content_map {
734     height: 400px;
735   }
736 }
737
738 /* Rules for the user map */
739
740 .content_map .leaflet-popup-content {
741   margin: $spacer;
742   min-height: 50px;
743 }
744
745 /* Rules for user popups on maps */
746
747 .user_popup {
748   p {
749     padding: 0 0 5px 0;
750     margin: 0 0 0 60px;
751     font-size: 12px;
752   }
753 }
754
755 /* Rules for the diary entry page */
756
757 .diary_entries {
758   #map {
759     height: 400px;
760     display: none;
761   }
762   .diary-comment .col-auto {
763     width: 62px;
764   }
765   .diary-comment .col {
766     max-width: 690px;
767   }
768 }
769
770 /* Rules for the account confirmation page */
771
772 .users-terms {
773   .legale {
774     padding: $lineheight;
775     margin-bottom: $lineheight;
776     overflow: auto;
777     height: 20em;
778
779     li {
780       list-style: inherit;
781     }
782
783     ol ol {
784       list-style-type: lower-alpha;
785     }
786   }
787 }
788
789 /* Rules for user images */
790
791 img.user_image {
792   max-width: 100px;
793   max-height: 100px;
794 }
795
796 img.user_thumbnail {
797   max-width: 50px;
798   max-height: 50px;
799 }
800
801 img.user_thumbnail_tiny {
802   width: 25px;
803   height: 25px;
804   object-fit: contain;
805 }
806
807 /* General styles for action lists / subnavs */
808
809 nav.secondary-actions {
810   margin-left: -11px;
811   overflow: hidden;
812   > ul {
813     display: flex;
814     flex-direction: row;
815     flex-wrap: wrap;
816     margin-bottom: 0;
817     margin-left: -1px;
818     padding: 0;
819     > li {
820       flex-basis: auto;
821       list-style: none;
822       border-left: 1px solid $grey;
823       padding-left: $lineheight * 0.5;
824       margin-right: $lineheight * 0.5;
825       margin-bottom: $lineheight * 0.125;
826     }
827   }
828 }
829
830 div.secondary-actions {
831   padding: 10px;
832   text-align: center;
833 }
834
835 /* Rules for rich text */
836
837 .richtext {
838   code {
839     background: var(--bs-secondary-bg);
840     padding: 2px 3px;
841   }
842
843   pre {
844     background: var(--bs-secondary-bg);
845     padding: 2px 3px;
846     white-space: pre-wrap;
847
848     code {
849       padding: 0;
850     }
851   }
852
853   img {
854     padding: $lineheight;
855     background-color: var(--bs-tertiary-bg);
856     display: block;
857     max-width: 100%;
858     margin: auto;
859   }
860
861   blockquote {
862     border-left: $lineheight solid var(--bs-tertiary-bg);
863     padding-left: $lineheight;
864     margin: 0;
865     color: var(--bs-secondary-color);
866   }
867 }
868
869 /* Rules for the "Welcome" and "Fix the map" pages */
870
871 .site-welcome, .site-fixthemap {
872   .sprite {
873     width: 50px;
874     height: 50px;
875     background-image: image-url("welcome-sprite.svg");
876     background-size: 500px 250px;
877   }
878
879   .sprite.x {
880     /*rtl:ignore*/ background-position: -50px 0;
881   }
882
883   .sprite.node {
884     /*rtl:ignore*/ background-position: -100px 0;
885   }
886
887   .sprite.way {
888     /*rtl:ignore*/ background-position: -150px 0;
889   }
890
891   .sprite.tag {
892     /*rtl:ignore*/ background-position: -200px 0;
893   }
894
895   .sprite.editor {
896     /*rtl:ignore*/ background-position: -250px 0;
897   }
898
899   .sprite.question {
900     /*rtl:ignore*/ background-position: -300px 0;
901   }
902
903   .sprite.rules {
904     /*rtl:ignore*/ background-position: -350px 0;
905   }
906 }
907
908 /* Rules for the "About" page */
909
910 .site-about #content {
911   .content-inner {
912     max-width: 760px;
913   }
914
915   .attr {
916     margin-top: -20px;
917
918     h1 {
919       span {
920         color: $vibrant-green;
921       }
922     }
923
924     .user-image {
925       height: 150px;
926       background-position: 0 50%;
927       background-repeat: no-repeat;
928       background-image: image-url('about/osm.png');
929       background-size: cover;
930       background-color: $vibrant-green;
931     }
932
933     .byosm {
934       background: $vibrant-green;
935     }
936
937     .byosm span {
938       display: inline-block;
939       width: 1em;
940       margin-left: -1em;
941     }
942   }
943
944   .icon {
945     width: 30px;
946     height: 30px;
947     background: 40px 40px image-url('about/sprite.png') no-repeat;
948
949     &.local {
950       /*rtl:ignore*/
951       background-position: 0px 0px;
952     }
953     &.community {
954       /*rtl:ignore*/
955       background-position: 0px -40px;
956     }
957     &.open {
958       /*rtl:ignore*/
959       background-position: 0px -80px;
960     }
961     &.partners {
962       /*rtl:ignore*/
963       background-position: 0px -120px;
964     }
965     &.infringement {
966       /*rtl:ignore*/
967       background-position: 0px -160px;
968     }
969     &.legal {
970       /*rtl:ignore*/
971       background-position: -45px -160px;
972     }
973   }
974 }
975
976 .auth-container {
977   max-width: 600px;
978 }
979
980 /* Rules for tabs inside secondary background sections */
981
982 .bg-body-secondary .nav-tabs {
983   --bs-border-color: var(--bs-secondary-border-subtle);
984   --bs-secondary-bg: var(--bs-secondary-border-subtle);
985   margin-bottom: -1px;
986 }
987
988 /* Rules for traces */
989
990 img.trace_image {
991   mix-blend-mode: darken;
992 }
993
994 @include color-mode(dark) {
995   img.trace_image {
996     filter: invert(1);
997     mix-blend-mode: lighten;
998   }
999 }
1000
1001 /* Rules for map sidebar icons */
1002
1003 .browse-section {
1004   .node::before,
1005   .way::before,
1006   .relation::before {
1007     display: inline-block;
1008     width: 25px;
1009     margin-left: -25px;
1010   }
1011
1012   .node, .way, .relation {
1013     margin-left: 25px;
1014   }
1015 }
1016
1017 @each $class, $item in $map-sidebar-icons {
1018   .browse-section #{$class}::before {
1019     content: image-url('browse/#{map.get($item, "filename")}');
1020   }
1021
1022   @if map.get($item, "invert") {
1023     @include color-mode(dark) {
1024       .browse-section #{$class}::before {
1025         filter: invert(.8) hue-rotate(180deg);
1026       }
1027     }
1028   }
1029 }