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