]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Merge remote-tracking branch 'upstream/pull/4944'
[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.overlay-right-sidebar {
399       #sidebar {
400         position: absolute;
401         width: 350px;
402         height: auto;
403         overflow: hidden;
404       }
405
406       #map {
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 /* Rules for login and signup pages */
681
682 .sessions-new, .users-new, .users-create {
683   #content .content-inner {
684     max-width: 760px;
685   }
686 }
687
688 .header-illustration {
689   background-position: right;
690   background-repeat: no-repeat;
691   position: relative;
692   min-height: 200px;
693   width: 100%;
694   left: 0;
695   bottom: 0;
696
697   &.new-user-main {
698     background-image: image-url("sign-up-illustration.svg");
699     background-position-x: 70px;
700   }
701
702   &.confirm-main {
703     background-image: image-url("confirm-illustration.svg");
704   }
705
706   &.new-user-terms {
707     background-image: image-url("terms-illustration.svg");
708   }
709 }
710
711 [dir=rtl] .header-illustration {
712   transform: scaleX(-1);
713
714   h1 {
715     transform: scaleX(-1);
716   }
717
718   ul {
719     transform: scaleX(-1);
720   }
721 }
722
723 /* Rules for small maps in content areas */
724
725 .content_map {
726   height: 200px;
727   margin-bottom: $lineheight;
728 }
729
730 @include media-breakpoint-up(md) {
731   .content_map {
732     height: 400px;
733   }
734 }
735
736 /* Rules for the user map */
737
738 .content_map .leaflet-popup-content {
739   margin: $spacer;
740   min-height: 50px;
741 }
742
743 /* Rules for user popups on maps */
744
745 .user_popup {
746   p {
747     padding: 0 0 5px 0;
748     margin: 0 0 0 60px;
749     font-size: 12px;
750   }
751 }
752
753 /* Rules for the diary entry page */
754
755 .diary_entries {
756   #map {
757     height: 400px;
758     display: none;
759   }
760   .diary-comment .col-auto {
761     width: 62px;
762   }
763   .diary-comment .col {
764     max-width: 690px;
765   }
766 }
767
768 /* Rules for the account confirmation page */
769
770 .users-terms {
771   .legale {
772     padding: $lineheight;
773     margin-bottom: $lineheight;
774     overflow: auto;
775     height: 20em;
776
777     li {
778       list-style: inherit;
779     }
780
781     ol ol {
782       list-style-type: lower-alpha;
783     }
784   }
785 }
786
787 /* Rules for user images */
788
789 img.user_image {
790   max-width: 100px;
791   max-height: 100px;
792 }
793
794 img.user_thumbnail {
795   max-width: 50px;
796   max-height: 50px;
797 }
798
799 img.user_thumbnail_tiny {
800   width: 25px;
801   height: 25px;
802   object-fit: contain;
803 }
804
805 /* General styles for action lists / subnavs */
806
807 nav.secondary-actions {
808   margin-left: -11px;
809   overflow: hidden;
810   > ul {
811     display: flex;
812     flex-direction: row;
813     flex-wrap: wrap;
814     margin-bottom: 0;
815     margin-left: -1px;
816     padding: 0;
817     > li {
818       flex-basis: auto;
819       list-style: none;
820       border-left: 1px solid $grey;
821       padding-left: $lineheight * 0.5;
822       margin-right: $lineheight * 0.5;
823       margin-bottom: $lineheight * 0.125;
824     }
825   }
826 }
827
828 div.secondary-actions {
829   padding: 10px;
830   text-align: center;
831 }
832
833 /* Rules for rich text */
834
835 .richtext {
836   code {
837     background: var(--bs-secondary-bg);
838     padding: 2px 3px;
839   }
840
841   pre {
842     background: var(--bs-secondary-bg);
843     padding: 2px 3px;
844     white-space: pre-wrap;
845
846     code {
847       padding: 0;
848     }
849   }
850
851   img {
852     padding: $lineheight;
853     background-color: var(--bs-tertiary-bg);
854     display: block;
855     max-width: 100%;
856     margin: auto;
857   }
858
859   blockquote {
860     border-left: $lineheight solid var(--bs-tertiary-bg);
861     padding-left: $lineheight;
862     margin: 0;
863     color: var(--bs-secondary-color);
864   }
865 }
866
867 /* Rules for the "About" page */
868
869 .site-about #content {
870   .content-inner {
871     max-width: 760px;
872   }
873
874   .attr {
875     margin-top: -20px;
876
877     h1 {
878       span {
879         color: $vibrant-green;
880       }
881     }
882
883     .user-image {
884       height: 150px;
885       background-position: 0 50%;
886       background-repeat: no-repeat;
887       background-image: image-url('about/osm.png');
888       background-size: cover;
889       background-color: $vibrant-green;
890     }
891
892     .byosm {
893       background: $vibrant-green;
894     }
895
896     .byosm span {
897       display: inline-block;
898       width: 1em;
899       margin-left: -1em;
900     }
901   }
902 }
903
904 /* Rules for tabs inside secondary background sections */
905
906 .bg-body-secondary .nav-tabs {
907   --bs-border-color: var(--bs-secondary-border-subtle);
908   --bs-secondary-bg: var(--bs-secondary-border-subtle);
909   margin-bottom: -1px;
910 }
911
912 /* Rules for traces */
913
914 img.trace_image {
915   mix-blend-mode: darken;
916 }
917
918 @include color-mode(dark) {
919   img.trace_image {
920     filter: invert(1);
921     mix-blend-mode: lighten;
922   }
923 }
924
925 /* Rules for map sidebar icons */
926
927 .browse-section {
928   .node::before,
929   .way::before,
930   .relation::before {
931     display: inline-block;
932     width: 25px;
933     margin-left: -25px;
934   }
935
936   .node, .way, .relation {
937     margin-left: 25px;
938   }
939 }
940
941 @each $class, $item in $map-sidebar-icons {
942   .browse-section #{$class}::before {
943     content: image-url('browse/#{map.get($item, "filename")}');
944   }
945
946   @if map.get($item, "invert") {
947     @include color-mode(dark) {
948       .browse-section #{$class}::before {
949         filter: invert(.8) hue-rotate(180deg);
950       }
951     }
952   }
953 }