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