]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Merge remote-tracking branch 'upstream/pull/4833'
[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     p {
427       font-size: 13px;
428       margin-bottom: 8px;
429     }
430     li.disabled { color: $darkgrey; }
431   }
432 }
433
434 .share-ui {
435   #mapnik_scale {
436     width: 100px;
437   }
438 }
439
440 .leaflet-top {
441   top: 10px !important;
442   .leaflet-control {
443     margin-right: 0px !important;
444     margin-top: 0px !important;
445   }
446 }
447
448 .leaflet-popup-scrolled {
449   padding-right: $lineheight;
450   border-bottom: 0px !important;
451   border-top: 0px !important;
452 }
453
454 .leaflet-popup-content-wrapper, .leaflet-popup-tip,
455 .leaflet-contextmenu, .leaflet-contextmenu-item,
456 .leaflet-control-attribution, .leaflet-control-scale-line {
457   @extend .bg-body, .text-body;
458 }
459
460 .leaflet-control-attribution, .leaflet-control-scale-line {
461   @extend .bg-opacity-75;
462   text-shadow: none !important;
463 }
464
465 .leaflet-contextmenu-item.over {
466   @extend .bg-body-secondary, .border-secondary, .border-opacity-10;
467 }
468
469 .leaflet-popup-content-wrapper {
470   @extend .rounded-1;
471
472   a {
473     color: var(--bs-link-color) !important;
474   }
475 }
476
477 @include color-mode(dark) {
478   .leaflet-tile-container,
479   .mapkey-table-entry td:first-child > * {
480     filter: brightness(.8);
481   }
482
483   .leaflet-control-attribution a {
484     color: var(--bs-link-color);
485   }
486
487   .leaflet-control-scale-line {
488     @extend .border-light, .border-opacity-75;
489   }
490 }
491
492 /* Rules for attribution text under the main map shown on printouts */
493
494 .donate-attr { color: darken($green, 10%) !important; }
495
496 /* Rules for the sidebar */
497
498 #browse_status {
499   input {
500     display: block;
501     margin-left: auto;
502     margin-right: auto;
503   }
504 }
505
506 /* Temporary label size override until we remove site-wide font customisation */
507
508 form {
509   label {
510     font-size: 16px;
511   }
512   .col-form-label {
513     font-size: 16px;
514   }
515 }
516
517 /* Stop bootstrap 5 from floating legends when they don't need to be */
518 legend {
519   float: none;
520 }
521
522 /* Override the text colour for primary and secondary buttons, to match our
523    bootstrap 4 colours. Note this has accessibility issues, which is why
524    bootstrap 5 calculates black as the appropriate colour, and we should
525    reconsider our colours at some point with that in mind. */
526
527 .btn-primary {
528   @include button-variant($primary, $primary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
529 }
530
531 .btn-secondary {
532   @include button-variant($secondary, $secondary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
533 }
534
535 .btn-outline-secondary {
536   @include button-outline-variant($secondary, $color-hover: $white, $active-color: $white);
537 }
538
539 /* Rules for the search and direction forms */
540
541 header .search_forms,
542 .directions_form {
543   display: none;
544 }
545
546 .search_form {
547   .describe_location {
548     font-size: 10px;
549   }
550 }
551
552 /* Rules for search sidebar */
553
554 #sidebar .search_results_entry {
555   .search_more .loader {
556     display: none;
557   }
558 }
559
560 /* Rules for routing */
561
562 div.direction {
563   background-image: image-url('routing-sprite.svg');
564   width: 20px;
565   height: 20px;
566   background-repeat: no-repeat;
567 }
568 @for $i from 0 through 25 {
569 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
570 }
571
572 @include color-mode(dark) {
573   div.direction {
574     filter: invert(1);
575   }
576 }
577
578 td.distance {
579     font-size: x-small;
580 }
581 tr.turn {
582     cursor: pointer;
583 }
584
585 .routing_marker { width: 15px; cursor: move; }
586
587 .browse_status {
588   display: none;
589 }
590
591 /* Rules for the history sidebar */
592
593 #sidebar .changesets {
594   li {
595     &.selected {
596       @extend :hover;
597     }
598
599     a.stretched-link > span, a:not(.stretched-link), [title] {
600       position: relative;
601       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
602     }
603   }
604
605   .changeset_more .loader {
606     display: none;
607     width: 100%;
608   }
609 }
610
611 /* Rules for the browse sidebar */
612
613 #sidebar_content {
614   .browse-section {
615     padding-bottom: $spacer;
616     margin-bottom: $spacer;
617     border-bottom: 1px solid $grey;
618
619     h4:first-child {
620       word-wrap: break-word;
621     }
622   }
623
624   .browse-section:last-of-type {
625     border-bottom: none;
626   }
627
628   .browse-tag-list {
629     table-layout: fixed;
630     white-space: pre-wrap;
631     word-wrap: break-word;
632     word-break: break-word;
633
634     tr:last-child th, tr:last-child td {
635       border-bottom: 0;
636     }
637   }
638
639   .query-results {
640     display: none;
641   }
642 }
643
644 /* Bootstrap buttons don't have any vertical margin, so
645    they touch when adjacent buttons wrap onto a new line
646    e.g. wide form buttons on a narrow sidebar */
647
648 .btn-wrapper {
649   > .btn {
650     margin-bottom: $spacer * 0.25;
651   }
652 }
653
654 /* Force LTR/RTL alignment for placeholder text */
655
656 .form-control::placeholder {
657   text-align: left;
658 }
659
660 /* Rules for export sidebar */
661
662 .export_form {
663   .export_area_inputs {
664     input[type="text"] {
665       width: 100px;
666     }
667   }
668
669   .export_boxy {
670     > * {
671         margin: -1px;
672     }
673     #minlon {
674       /*rtl:ignore*/ float: left;
675     }
676     #maxlon {
677       /*rtl:ignore*/ float: right;
678     }
679   }
680 }
681
682 /* Rules for edit pages */
683
684 .site-edit {
685   #content {
686     position: absolute;
687     top: $headerHeight;
688     bottom: 0;
689     width: 100%;
690   }
691 }
692
693 /* Rules for non-map content pages */
694
695 .content-inner {
696   position: relative;
697   max-width: 960px;
698   margin: auto;
699   padding: $lineheight;
700 }
701
702 /* Overrides for pages that use new layout conventions */
703
704 .header-illustration {
705   background-position: 0 0;
706   background-repeat: no-repeat;
707   position: relative;
708   min-height: 200px;
709   width: 100%;
710   left: 0;
711   bottom: 0;
712
713   &.new-user-main {
714     background-image: image-url("sign-up-illustration.png");
715     background-position-x: 50px;
716   }
717
718   &.confirm-main {
719     background-image: image-url("confirm-illustration.png");
720   }
721
722   &.new-user-terms {
723     background-image: image-url("terms-illustration.png");
724   }
725 }
726
727 [dir=rtl] .header-illustration {
728   transform: scaleX(-1);
729
730   h1 {
731     transform: scaleX(-1);
732   }
733
734   ul {
735     transform: scaleX(-1);
736   }
737 }
738
739 /* Rules for small maps in content areas */
740
741 .content_map {
742   height: 200px;
743   margin-bottom: $lineheight;
744 }
745
746 @include media-breakpoint-up(md) {
747   .content_map {
748     height: 400px;
749   }
750 }
751
752 /* Rules for the user map */
753
754 .content_map .leaflet-popup-content {
755   margin: $spacer;
756   min-height: 50px;
757 }
758
759 /* Rules for user popups on maps */
760
761 .user_popup {
762   p {
763     padding: 0 0 5px 0;
764     margin: 0 0 0 60px;
765     font-size: 12px;
766   }
767 }
768
769 /* Rules for the diary entry page */
770
771 .diary_entries {
772   #map {
773     height: 400px;
774     display: none;
775   }
776   .diary-comment .col-auto {
777     width: 62px;
778   }
779   .diary-comment .col {
780     max-width: 690px;
781   }
782 }
783
784 /* Rules for the account confirmation page */
785
786 .users-terms {
787   .legale {
788     padding: $lineheight;
789     margin-bottom: $lineheight;
790     overflow: auto;
791     height: 20em;
792
793     li {
794       list-style: inherit;
795     }
796
797     ol ol {
798       list-style-type: lower-alpha;
799     }
800   }
801 }
802
803 /* Rules for user images */
804
805 img.user_image {
806   max-width: 100px;
807   max-height: 100px;
808 }
809
810 img.user_thumbnail {
811   max-width: 50px;
812   max-height: 50px;
813 }
814
815 img.user_thumbnail_tiny {
816   width: 25px;
817   height: 25px;
818   object-fit: contain;
819 }
820
821 /* General styles for action lists / subnavs */
822
823 nav.secondary-actions {
824   margin-left: -11px;
825   overflow: hidden;
826   > ul {
827     display: flex;
828     flex-direction: row;
829     flex-wrap: wrap;
830     margin-bottom: 0;
831     margin-left: -1px;
832     padding: 0;
833     > li {
834       flex-basis: auto;
835       list-style: none;
836       border-left: 1px solid $grey;
837       padding-left: $lineheight * 0.5;
838       margin-right: $lineheight * 0.5;
839       margin-bottom: $lineheight * 0.125;
840     }
841   }
842 }
843
844 div.secondary-actions {
845   padding: 10px;
846   text-align: center;
847 }
848
849 /* Rules for rich text */
850
851 .richtext {
852   code {
853     background: var(--bs-secondary-bg);
854     padding: 2px 3px;
855   }
856
857   pre {
858     background: var(--bs-secondary-bg);
859     padding: 2px 3px;
860     white-space: pre-wrap;
861
862     code {
863       padding: 0;
864     }
865   }
866
867   img {
868     padding: $lineheight;
869     background-color: var(--bs-tertiary-bg);
870     display: block;
871     max-width: 100%;
872     margin: auto;
873   }
874
875   blockquote {
876     border-left: $lineheight solid var(--bs-tertiary-bg);
877     padding-left: $lineheight;
878     margin: 0;
879     color: var(--bs-secondary-color);
880   }
881 }
882
883 /* Rules for the "Welcome" and "Fix the map" pages */
884
885 .site-welcome, .site-fixthemap {
886   .sprite {
887     width: 50px;
888     height: 50px;
889     background-image: image-url("welcome-sprite.svg");
890     background-size: 500px 250px;
891   }
892
893   .sprite.x {
894     /*rtl:ignore*/ background-position: -50px 0;
895   }
896
897   .sprite.node {
898     /*rtl:ignore*/ background-position: -100px 0;
899   }
900
901   .sprite.way {
902     /*rtl:ignore*/ background-position: -150px 0;
903   }
904
905   .sprite.tag {
906     /*rtl:ignore*/ background-position: -200px 0;
907   }
908
909   .sprite.editor {
910     /*rtl:ignore*/ background-position: -250px 0;
911   }
912
913   .sprite.question {
914     /*rtl:ignore*/ background-position: -300px 0;
915   }
916
917   .sprite.rules {
918     /*rtl:ignore*/ background-position: -350px 0;
919   }
920 }
921
922 /* Rules for the "About" page */
923
924 .site-about #content {
925   .content-inner {
926     max-width: 760px;
927   }
928
929   .attr {
930     margin-top: -20px;
931
932     h1 {
933       span {
934         color: $vibrant-green;
935       }
936     }
937
938     .user-image {
939       height: 150px;
940       background-position: 0 50%;
941       background-repeat: no-repeat;
942       background-image: image-url('about/osm.png');
943       background-size: cover;
944       background-color: $vibrant-green;
945     }
946
947     .byosm {
948       background: $vibrant-green;
949     }
950
951     .byosm span {
952       display: inline-block;
953       width: 1em;
954       margin-left: -1em;
955     }
956   }
957
958   .icon {
959     width: 30px;
960     height: 30px;
961     background: 40px 40px image-url('about/sprite.png') no-repeat;
962
963     &.local {
964       /*rtl:ignore*/
965       background-position: 0px 0px;
966     }
967     &.community {
968       /*rtl:ignore*/
969       background-position: 0px -40px;
970     }
971     &.open {
972       /*rtl:ignore*/
973       background-position: 0px -80px;
974     }
975     &.partners {
976       /*rtl:ignore*/
977       background-position: 0px -120px;
978     }
979     &.infringement {
980       /*rtl:ignore*/
981       background-position: 0px -160px;
982     }
983     &.legal {
984       /*rtl:ignore*/
985       background-position: -45px -160px;
986     }
987   }
988 }
989
990 .auth-container {
991   max-width: 600px;
992 }
993
994 /* Rules for tabs inside secondary background sections */
995
996 .bg-body-secondary .nav-tabs {
997   --bs-border-color: var(--bs-secondary-border-subtle);
998   --bs-secondary-bg: var(--bs-secondary-border-subtle);
999   margin-bottom: -1px;
1000 }
1001
1002 /* Rules for traces */
1003
1004 img.trace_image {
1005   mix-blend-mode: darken;
1006 }
1007
1008 @include color-mode(dark) {
1009   img.trace_image {
1010     filter: invert(1);
1011     mix-blend-mode: lighten;
1012   }
1013 }
1014
1015 /* Rules for map sidebar icons */
1016
1017 .browse-section {
1018   .node::before,
1019   .way::before,
1020   .relation::before {
1021     display: inline-block;
1022     width: 25px;
1023     margin-left: -25px;
1024   }
1025
1026   .node, .way, .relation {
1027     margin-left: 25px;
1028   }
1029 }
1030
1031 @each $class, $item in $map-sidebar-icons {
1032   .browse-section #{$class}::before {
1033     content: image-url('browse/#{map.get($item, "filename")}');
1034   }
1035
1036   @if map.get($item, "invert") {
1037     @include color-mode(dark) {
1038       .browse-section #{$class}::before {
1039         filter: invert(.8) hue-rotate(180deg);
1040       }
1041     }
1042   }
1043 }