]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Merge remote-tracking branch 'upstream/pull/4843'
[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 { width: 15px; cursor: move; }
572
573 /* Rules for the history sidebar */
574
575 #sidebar .changesets {
576   li {
577     &.selected {
578       @extend :hover;
579     }
580
581     a.stretched-link > span, a:not(.stretched-link), [title] {
582       position: relative;
583       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
584     }
585   }
586
587   .changeset_more .loader {
588     display: none;
589     width: 100%;
590   }
591 }
592
593 /* Rules for the browse sidebar */
594
595 #sidebar_content {
596   .browse-section {
597     padding-bottom: $spacer;
598     margin-bottom: $spacer;
599     border-bottom: 1px solid $grey;
600
601     h4:first-child {
602       word-wrap: break-word;
603     }
604   }
605
606   .browse-section:last-of-type {
607     border-bottom: none;
608   }
609
610   .browse-tag-list {
611     table-layout: fixed;
612     white-space: pre-wrap;
613     word-wrap: break-word;
614     word-break: break-word;
615
616     tr:last-child th, tr:last-child td {
617       border-bottom: 0;
618     }
619   }
620
621   .query-results {
622     display: none;
623   }
624 }
625
626 /* Force LTR/RTL alignment for placeholder text */
627
628 .form-control::placeholder {
629   text-align: left;
630 }
631
632 /* Rules for export sidebar */
633
634 .export_form {
635   .export_area_inputs {
636     input[type="text"] {
637       width: 100px;
638     }
639   }
640
641   .export_boxy {
642     > * {
643         margin: -1px;
644     }
645     #minlon {
646       /*rtl:ignore*/ float: left;
647     }
648     #maxlon {
649       /*rtl:ignore*/ float: right;
650     }
651   }
652 }
653
654 /* Rules for edit pages */
655
656 .site-edit {
657   #content {
658     position: absolute;
659     top: $headerHeight;
660     bottom: 0;
661     width: 100%;
662   }
663 }
664
665 /* Rules for non-map content pages */
666
667 .content-inner {
668   position: relative;
669   max-width: 960px;
670   margin: auto;
671   padding: $lineheight;
672 }
673
674 /* Overrides for pages that use new layout conventions */
675
676 .header-illustration {
677   background-position: 0 0;
678   background-repeat: no-repeat;
679   position: relative;
680   min-height: 200px;
681   width: 100%;
682   left: 0;
683   bottom: 0;
684
685   &.new-user-main {
686     background-image: image-url("sign-up-illustration.png");
687     background-position-x: 50px;
688   }
689
690   &.confirm-main {
691     background-image: image-url("confirm-illustration.png");
692   }
693
694   &.new-user-terms {
695     background-image: image-url("terms-illustration.png");
696   }
697 }
698
699 [dir=rtl] .header-illustration {
700   transform: scaleX(-1);
701
702   h1 {
703     transform: scaleX(-1);
704   }
705
706   ul {
707     transform: scaleX(-1);
708   }
709 }
710
711 /* Rules for small maps in content areas */
712
713 .content_map {
714   height: 200px;
715   margin-bottom: $lineheight;
716 }
717
718 @include media-breakpoint-up(md) {
719   .content_map {
720     height: 400px;
721   }
722 }
723
724 /* Rules for the user map */
725
726 .content_map .leaflet-popup-content {
727   margin: $spacer;
728   min-height: 50px;
729 }
730
731 /* Rules for user popups on maps */
732
733 .user_popup {
734   p {
735     padding: 0 0 5px 0;
736     margin: 0 0 0 60px;
737     font-size: 12px;
738   }
739 }
740
741 /* Rules for the diary entry page */
742
743 .diary_entries {
744   #map {
745     height: 400px;
746     display: none;
747   }
748   .diary-comment .col-auto {
749     width: 62px;
750   }
751   .diary-comment .col {
752     max-width: 690px;
753   }
754 }
755
756 /* Rules for the account confirmation page */
757
758 .users-terms {
759   .legale {
760     padding: $lineheight;
761     margin-bottom: $lineheight;
762     overflow: auto;
763     height: 20em;
764
765     li {
766       list-style: inherit;
767     }
768
769     ol ol {
770       list-style-type: lower-alpha;
771     }
772   }
773 }
774
775 /* Rules for user images */
776
777 img.user_image {
778   max-width: 100px;
779   max-height: 100px;
780 }
781
782 img.user_thumbnail {
783   max-width: 50px;
784   max-height: 50px;
785 }
786
787 img.user_thumbnail_tiny {
788   width: 25px;
789   height: 25px;
790   object-fit: contain;
791 }
792
793 /* General styles for action lists / subnavs */
794
795 nav.secondary-actions {
796   margin-left: -11px;
797   overflow: hidden;
798   > ul {
799     display: flex;
800     flex-direction: row;
801     flex-wrap: wrap;
802     margin-bottom: 0;
803     margin-left: -1px;
804     padding: 0;
805     > li {
806       flex-basis: auto;
807       list-style: none;
808       border-left: 1px solid $grey;
809       padding-left: $lineheight * 0.5;
810       margin-right: $lineheight * 0.5;
811       margin-bottom: $lineheight * 0.125;
812     }
813   }
814 }
815
816 div.secondary-actions {
817   padding: 10px;
818   text-align: center;
819 }
820
821 /* Rules for rich text */
822
823 .richtext {
824   code {
825     background: var(--bs-secondary-bg);
826     padding: 2px 3px;
827   }
828
829   pre {
830     background: var(--bs-secondary-bg);
831     padding: 2px 3px;
832     white-space: pre-wrap;
833
834     code {
835       padding: 0;
836     }
837   }
838
839   img {
840     padding: $lineheight;
841     background-color: var(--bs-tertiary-bg);
842     display: block;
843     max-width: 100%;
844     margin: auto;
845   }
846
847   blockquote {
848     border-left: $lineheight solid var(--bs-tertiary-bg);
849     padding-left: $lineheight;
850     margin: 0;
851     color: var(--bs-secondary-color);
852   }
853 }
854
855 /* Rules for the "About" page */
856
857 .site-about #content {
858   .content-inner {
859     max-width: 760px;
860   }
861
862   .attr {
863     margin-top: -20px;
864
865     h1 {
866       span {
867         color: $vibrant-green;
868       }
869     }
870
871     .user-image {
872       height: 150px;
873       background-position: 0 50%;
874       background-repeat: no-repeat;
875       background-image: image-url('about/osm.png');
876       background-size: cover;
877       background-color: $vibrant-green;
878     }
879
880     .byosm {
881       background: $vibrant-green;
882     }
883
884     .byosm span {
885       display: inline-block;
886       width: 1em;
887       margin-left: -1em;
888     }
889   }
890
891   .icon {
892     width: 30px;
893     height: 30px;
894     background: 40px 40px image-url('about/sprite.png') no-repeat;
895
896     &.local {
897       /*rtl:ignore*/
898       background-position: 0px 0px;
899     }
900     &.community {
901       /*rtl:ignore*/
902       background-position: 0px -40px;
903     }
904     &.open {
905       /*rtl:ignore*/
906       background-position: 0px -80px;
907     }
908     &.partners {
909       /*rtl:ignore*/
910       background-position: 0px -120px;
911     }
912     &.infringement {
913       /*rtl:ignore*/
914       background-position: 0px -160px;
915     }
916     &.legal {
917       /*rtl:ignore*/
918       background-position: -45px -160px;
919     }
920   }
921 }
922
923 .auth-container {
924   max-width: 600px;
925 }
926
927 /* Rules for tabs inside secondary background sections */
928
929 .bg-body-secondary .nav-tabs {
930   --bs-border-color: var(--bs-secondary-border-subtle);
931   --bs-secondary-bg: var(--bs-secondary-border-subtle);
932   margin-bottom: -1px;
933 }
934
935 /* Rules for traces */
936
937 img.trace_image {
938   mix-blend-mode: darken;
939 }
940
941 @include color-mode(dark) {
942   img.trace_image {
943     filter: invert(1);
944     mix-blend-mode: lighten;
945   }
946 }
947
948 /* Rules for map sidebar icons */
949
950 .browse-section {
951   .node::before,
952   .way::before,
953   .relation::before {
954     display: inline-block;
955     width: 25px;
956     margin-left: -25px;
957   }
958
959   .node, .way, .relation {
960     margin-left: 25px;
961   }
962 }
963
964 @each $class, $item in $map-sidebar-icons {
965   .browse-section #{$class}::before {
966     content: image-url('browse/#{map.get($item, "filename")}');
967   }
968
969   @if map.get($item, "invert") {
970     @include color-mode(dark) {
971       .browse-section #{$class}::before {
972         filter: invert(.8) hue-rotate(180deg);
973       }
974     }
975   }
976 }