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