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