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