]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Merge remote-tracking branch 'upstream/pull/4873'
[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 /* Rules for icons */
20
21 .icon {
22   display: inline-block;
23   vertical-align: top;
24   width: 20px;
25   height: 20px;
26   background: transparent image-url("sprite.svg") no-repeat 0 0;
27   text-indent: -9999px;
28   overflow: hidden;
29 }
30
31 .icon.search      { /*rtl:ignore*/ background-position: 0 0; }
32 .icon.donate      { /*rtl:ignore*/ background-position: -20px 0; }
33 .icon.zoomin      { /*rtl:ignore*/ background-position: -40px 0; }
34 .icon.zoomout     { /*rtl:ignore*/ background-position: -60px 0; }
35 .icon.geolocate   { /*rtl:ignore*/ background-position: -80px 0; }
36 .active .icon.geolocate   { /*rtl:ignore*/ background-position: -80px -20px; }
37 .icon.layers      { /*rtl:ignore*/ background-position: -100px 0; }
38 .icon.key         { /*rtl:ignore*/ background-position: -120px 0; }
39 .icon.share       { /*rtl:ignore*/ background-position: -140px 0; }
40 .icon.clipboard   { /*rtl:ignore*/ background-position: -160px 0; }
41 .icon.link        { /*rtl:ignore*/ background-position: -180px 0; }
42 .icon.close       { /*rtl:ignore*/ background-position: -200px 0; }
43 .icon.close:hover { /*rtl:ignore*/ background-position: -200px -20px; }
44 .icon.check       { /*rtl:ignore*/ background-position: -220px 0; }
45 .icon.note        { /*rtl:ignore*/ background-position: -240px 0; }
46 .icon.note.grey   { /*rtl:ignore*/ background-position: -240px -20px; }
47 .icon.query       { /*rtl:ignore*/ background-position: -260px 0; }
48
49 /* Utility for de-emphasizing content */
50
51 .text-body-secondary a {
52   color: $blue;
53 }
54
55 /* Bootstrap contextual table classes overrides in dark mode */
56
57 @include color-mode(dark) {
58   .table-primary {
59     --bs-table-bg: rgb(var(--bs-primary-rgb), .25);
60   }
61   .table-secondary {
62     --bs-table-bg: rgb(var(--bs-secondary-rgb), .25);
63   }
64   .table-success {
65     --bs-table-bg: rgb(var(--bs-success-rgb), .25);
66   }
67   .table-primary, .table-secondary, .table-success {
68     --bs-table-color: initial;
69     border-color: inherit;
70   }
71 }
72
73 /* Rules for the header */
74
75 #menu-icon {
76   display: none;
77   position: absolute;
78   top: 0;
79   right: 0;
80   background: image-url("menu-icon.svg") no-repeat;
81   background-size: 30px 30px;
82   width: 30px;
83   height: 30px;
84   margin: 14px 10px 0 0;
85   opacity: 0.6;
86 }
87
88 @include color-mode(dark) {
89   #menu-icon {
90     filter: invert(1);
91   }
92 }
93
94 header {
95   height: $headerHeight;
96   position: relative;
97   font-size: 14px;
98
99   > * {
100     padding: $lineheight * 0.5;
101   }
102
103   h1 {
104     height: $headerHeight;
105     font-size: 18px;
106   }
107
108   .btn {
109     font-size: 14px;
110   }
111
112   nav.primary {
113     margin-right: auto;
114   }
115
116   .username {
117     max-width: 12em;
118   }
119 }
120
121 nav.primary {
122   & > .btn-group .btn-outline-primary {
123     @include button-outline-variant($green, $color-hover: $white, $active-color: $white);
124   }
125
126   .disabled {
127     .btn-outline-primary {
128       color: $grey;
129       cursor: default;
130
131       .caret {
132         border-top-color: $grey;
133       }
134
135       &:hover {
136         background-color: lighten($green, 30%);
137       }
138     }
139   }
140
141   // Small tweaks to the toggle to stop the primary colour showing through
142   // when the menu is shown
143   .show > .btn-outline-primary.dropdown-toggle {
144     background-color: $green;
145     border-color: $green;
146
147     &:focus {
148       box-shadow: 0 0 0 0.2rem fade-out($green, 0.5);
149     }
150   }
151 }
152
153 nav.secondary {
154   .nav-link {
155     padding: 0.3rem;
156   }
157 }
158
159 nav.primary, nav.secondary {
160   .dropdown-item {
161     &:hover, &:active {
162       background-color: $green;
163       color: white;
164     }
165   }
166 }
167
168 #compact-secondary-nav {
169   display: none;
170 }
171
172 body.compact-nav {
173   #compact-secondary-nav {
174     display: inline-block;
175   }
176   .compact-hide {
177     display: none;
178   }
179 }
180
181 body.small-nav {
182   #menu-icon {
183     display: block;
184   }
185
186   header {
187     flex-direction: column;
188     height: auto;
189     min-height: $headerHeight;
190
191     &.closed nav {
192       display: none !important;
193     }
194
195     .search_forms {
196       display: block;
197     }
198   }
199
200   #sidebar .search_forms,
201   #edit_tab,
202   #export_tab {
203     display: none;
204   }
205
206   nav.primary {
207     margin-right: 0;
208     padding: 0;
209
210     .btn-group {
211       width: 100%;
212       padding: 10px;
213     }
214   }
215
216   nav.secondary {
217     flex-direction: column;
218
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_column {
572   width: 15px;
573
574   img {
575     cursor: move;
576   }
577 }
578
579 /* Rules for the history sidebar */
580
581 #sidebar .changesets {
582   li {
583     &.selected {
584       @extend :hover;
585     }
586
587     a.stretched-link > span, a:not(.stretched-link), [title] {
588       position: relative;
589       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
590     }
591   }
592
593   .changeset_more .loader {
594     display: none;
595     width: 100%;
596   }
597 }
598
599 /* Rules for the browse sidebar */
600
601 #sidebar_content {
602   .browse-section {
603     padding-bottom: $spacer;
604     margin-bottom: $spacer;
605     border-bottom: 1px solid $grey;
606
607     h4:first-child {
608       word-wrap: break-word;
609     }
610   }
611
612   .browse-section:last-of-type {
613     border-bottom: none;
614   }
615
616   .browse-tag-list {
617     table-layout: fixed;
618     white-space: pre-wrap;
619     word-wrap: break-word;
620     word-break: break-word;
621
622     tr:last-child th, tr:last-child td {
623       border-bottom: 0;
624     }
625   }
626
627   .query-results {
628     display: none;
629   }
630 }
631
632 /* Force LTR/RTL alignment for placeholder text */
633
634 .form-control::placeholder {
635   text-align: left;
636 }
637
638 /* Rules for export sidebar */
639
640 .export_form {
641   .export_area_inputs {
642     input[type="text"] {
643       width: 100px;
644     }
645   }
646
647   .export_boxy {
648     > * {
649         margin: -1px;
650     }
651     #minlon {
652       /*rtl:ignore*/ float: left;
653     }
654     #maxlon {
655       /*rtl:ignore*/ float: right;
656     }
657   }
658 }
659
660 /* Rules for edit pages */
661
662 .site-edit {
663   #content {
664     position: absolute;
665     top: $headerHeight;
666     bottom: 0;
667     width: 100%;
668   }
669 }
670
671 /* Rules for non-map content pages */
672
673 .content-inner {
674   position: relative;
675   max-width: 960px;
676   margin: auto;
677   padding: $lineheight;
678 }
679
680 /* Overrides for pages that use new layout conventions */
681
682 .header-illustration {
683   background-position: 0 0;
684   background-repeat: no-repeat;
685   position: relative;
686   min-height: 200px;
687   width: 100%;
688   left: 0;
689   bottom: 0;
690
691   &.new-user-main {
692     background-image: image-url("sign-up-illustration.png");
693     background-position-x: 50px;
694   }
695
696   &.confirm-main {
697     background-image: image-url("confirm-illustration.png");
698   }
699
700   &.new-user-terms {
701     background-image: image-url("terms-illustration.png");
702   }
703 }
704
705 [dir=rtl] .header-illustration {
706   transform: scaleX(-1);
707
708   h1 {
709     transform: scaleX(-1);
710   }
711
712   ul {
713     transform: scaleX(-1);
714   }
715 }
716
717 /* Rules for small maps in content areas */
718
719 .content_map {
720   height: 200px;
721   margin-bottom: $lineheight;
722 }
723
724 @include media-breakpoint-up(md) {
725   .content_map {
726     height: 400px;
727   }
728 }
729
730 /* Rules for the user map */
731
732 .content_map .leaflet-popup-content {
733   margin: $spacer;
734   min-height: 50px;
735 }
736
737 /* Rules for user popups on maps */
738
739 .user_popup {
740   p {
741     padding: 0 0 5px 0;
742     margin: 0 0 0 60px;
743     font-size: 12px;
744   }
745 }
746
747 /* Rules for the diary entry page */
748
749 .diary_entries {
750   #map {
751     height: 400px;
752     display: none;
753   }
754   .diary-comment .col-auto {
755     width: 62px;
756   }
757   .diary-comment .col {
758     max-width: 690px;
759   }
760 }
761
762 /* Rules for the account confirmation page */
763
764 .users-terms {
765   .legale {
766     padding: $lineheight;
767     margin-bottom: $lineheight;
768     overflow: auto;
769     height: 20em;
770
771     li {
772       list-style: inherit;
773     }
774
775     ol ol {
776       list-style-type: lower-alpha;
777     }
778   }
779 }
780
781 /* Rules for user images */
782
783 img.user_image {
784   max-width: 100px;
785   max-height: 100px;
786 }
787
788 img.user_thumbnail {
789   max-width: 50px;
790   max-height: 50px;
791 }
792
793 img.user_thumbnail_tiny {
794   width: 25px;
795   height: 25px;
796   object-fit: contain;
797 }
798
799 /* General styles for action lists / subnavs */
800
801 nav.secondary-actions {
802   margin-left: -11px;
803   overflow: hidden;
804   > ul {
805     display: flex;
806     flex-direction: row;
807     flex-wrap: wrap;
808     margin-bottom: 0;
809     margin-left: -1px;
810     padding: 0;
811     > li {
812       flex-basis: auto;
813       list-style: none;
814       border-left: 1px solid $grey;
815       padding-left: $lineheight * 0.5;
816       margin-right: $lineheight * 0.5;
817       margin-bottom: $lineheight * 0.125;
818     }
819   }
820 }
821
822 div.secondary-actions {
823   padding: 10px;
824   text-align: center;
825 }
826
827 /* Rules for rich text */
828
829 .richtext {
830   code {
831     background: var(--bs-secondary-bg);
832     padding: 2px 3px;
833   }
834
835   pre {
836     background: var(--bs-secondary-bg);
837     padding: 2px 3px;
838     white-space: pre-wrap;
839
840     code {
841       padding: 0;
842     }
843   }
844
845   img {
846     padding: $lineheight;
847     background-color: var(--bs-tertiary-bg);
848     display: block;
849     max-width: 100%;
850     margin: auto;
851   }
852
853   blockquote {
854     border-left: $lineheight solid var(--bs-tertiary-bg);
855     padding-left: $lineheight;
856     margin: 0;
857     color: var(--bs-secondary-color);
858   }
859 }
860
861 /* Rules for the "About" page */
862
863 .site-about #content {
864   .content-inner {
865     max-width: 760px;
866   }
867
868   .attr {
869     margin-top: -20px;
870
871     h1 {
872       span {
873         color: $vibrant-green;
874       }
875     }
876
877     .user-image {
878       height: 150px;
879       background-position: 0 50%;
880       background-repeat: no-repeat;
881       background-image: image-url('about/osm.png');
882       background-size: cover;
883       background-color: $vibrant-green;
884     }
885
886     .byosm {
887       background: $vibrant-green;
888     }
889
890     .byosm span {
891       display: inline-block;
892       width: 1em;
893       margin-left: -1em;
894     }
895   }
896 }
897
898 .auth-container {
899   max-width: 600px;
900 }
901
902 /* Rules for tabs inside secondary background sections */
903
904 .bg-body-secondary .nav-tabs {
905   --bs-border-color: var(--bs-secondary-border-subtle);
906   --bs-secondary-bg: var(--bs-secondary-border-subtle);
907   margin-bottom: -1px;
908 }
909
910 /* Rules for traces */
911
912 img.trace_image {
913   mix-blend-mode: darken;
914 }
915
916 @include color-mode(dark) {
917   img.trace_image {
918     filter: invert(1);
919     mix-blend-mode: lighten;
920   }
921 }
922
923 /* Rules for map sidebar icons */
924
925 .browse-section {
926   .node::before,
927   .way::before,
928   .relation::before {
929     display: inline-block;
930     width: 25px;
931     margin-left: -25px;
932   }
933
934   .node, .way, .relation {
935     margin-left: 25px;
936   }
937 }
938
939 @each $class, $item in $map-sidebar-icons {
940   .browse-section #{$class}::before {
941     content: image-url('browse/#{map.get($item, "filename")}');
942   }
943
944   @if map.get($item, "invert") {
945     @include color-mode(dark) {
946       .browse-section #{$class}::before {
947         filter: invert(.8) hue-rotate(180deg);
948       }
949     }
950   }
951 }