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