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