]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Use .icon-link to align logo
[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-muted 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     height: 100%;
107     padding: $lineheight * 0.5;
108   }
109
110   h1 {
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   .note-description {
640     overflow: hidden;
641     margin: 0 0 10px 10px;
642   }
643
644   .query-results {
645     display: none;
646   }
647 }
648
649 /* Bootstrap buttons don't have any vertical margin, so
650    they touch when adjacent buttons wrap onto a new line
651    e.g. wide form buttons on a narrow sidebar */
652
653 .btn-wrapper {
654   > .btn {
655     margin-bottom: $spacer * 0.25;
656   }
657 }
658
659 /* Force LTR/RTL alignment for placeholder text */
660
661 .form-control::placeholder {
662   text-align: left;
663 }
664
665 /* Rules for export sidebar */
666
667 .export_form {
668   .export_area_inputs {
669     input[type="text"] {
670       width: 100px;
671     }
672   }
673
674   .export_boxy {
675     > * {
676         margin: -1px;
677     }
678     #minlon {
679       /*rtl:ignore*/ float: left;
680     }
681     #maxlon {
682       /*rtl:ignore*/ float: right;
683     }
684   }
685 }
686
687 /* Rules for edit pages */
688
689 .site-edit {
690   #content {
691     position: absolute;
692     top: $headerHeight;
693     bottom: 0;
694     width: 100%;
695   }
696 }
697
698 /* Rules for non-map content pages */
699
700 .content-inner {
701   position: relative;
702   max-width: 960px;
703   margin: auto;
704   padding: $lineheight;
705 }
706
707 /* Overrides for pages that use new layout conventions */
708
709 .header-illustration {
710   background-position: 0 0;
711   background-repeat: no-repeat;
712   position: relative;
713   min-height: 200px;
714   width: 100%;
715   left: 0;
716   bottom: 0;
717
718   &.new-user-main {
719     background-image: image-url("sign-up-illustration.png");
720     background-position-x: 50px;
721   }
722
723   &.confirm-main {
724     background-image: image-url("confirm-illustration.png");
725   }
726
727   &.new-user-terms {
728     background-image: image-url("terms-illustration.png");
729   }
730 }
731
732 [dir=rtl] .header-illustration {
733   transform: scaleX(-1);
734
735   h1 {
736     transform: scaleX(-1);
737   }
738
739   ul {
740     transform: scaleX(-1);
741   }
742 }
743
744 /* Rules for small maps in content areas */
745
746 .content_map {
747   height: 200px;
748   margin-bottom: $lineheight;
749 }
750
751 @include media-breakpoint-up(md) {
752   .content_map {
753     height: 400px;
754   }
755 }
756
757 /* Rules for the user map */
758
759 .content_map .leaflet-popup-content {
760   margin: $spacer;
761   min-height: 50px;
762 }
763
764 /* Rules for user popups on maps */
765
766 .user_popup {
767   p {
768     padding: 0 0 5px 0;
769     margin: 0 0 0 60px;
770     font-size: 12px;
771   }
772 }
773
774 /* Rules for the diary entry page */
775
776 .diary_entries {
777   #map {
778     height: 400px;
779     display: none;
780   }
781   .diary-comment .col-auto {
782     width: 62px;
783   }
784   .diary-comment .col {
785     max-width: 690px;
786   }
787 }
788
789 /* Rules for the account confirmation page */
790
791 .users-terms {
792   .legale {
793     padding: $lineheight;
794     margin-bottom: $lineheight;
795     overflow: auto;
796     height: 20em;
797
798     li {
799       list-style: inherit;
800     }
801
802     ol ol {
803       list-style-type: lower-alpha;
804     }
805   }
806 }
807
808 /* Rules for user images */
809
810 img.user_image {
811   max-width: 100px;
812   max-height: 100px;
813 }
814
815 img.user_thumbnail {
816   max-width: 50px;
817   max-height: 50px;
818 }
819
820 img.user_thumbnail_tiny {
821   width: 25px;
822   height: 25px;
823   object-fit: contain;
824 }
825
826 /* General styles for action lists / subnavs */
827
828 nav.secondary-actions {
829   margin-left: -11px;
830   overflow: hidden;
831   > ul {
832     display: flex;
833     flex-direction: row;
834     flex-wrap: wrap;
835     margin-bottom: 0;
836     margin-left: -1px;
837     padding: 0;
838     > li {
839       flex-basis: auto;
840       list-style: none;
841       border-left: 1px solid $grey;
842       padding-left: $lineheight * 0.5;
843       margin-right: $lineheight * 0.5;
844       margin-bottom: $lineheight * 0.125;
845     }
846   }
847 }
848
849 div.secondary-actions {
850   padding: 10px;
851   text-align: center;
852 }
853
854 /* Rules for rich text */
855
856 .richtext {
857   code {
858     background: var(--bs-secondary-bg);
859     padding: 2px 3px;
860   }
861
862   pre {
863     background: var(--bs-secondary-bg);
864     padding: 2px 3px;
865     white-space: pre-wrap;
866
867     code {
868       padding: 0;
869     }
870   }
871
872   img {
873     padding: $lineheight;
874     background-color: var(--bs-tertiary-bg);
875     display: block;
876     max-width: 100%;
877     margin: auto;
878   }
879
880   blockquote {
881     border-left: $lineheight solid var(--bs-tertiary-bg);
882     padding-left: $lineheight;
883     margin: 0;
884     color: var(--bs-secondary-color);
885   }
886 }
887
888 /* Rules for the "Welcome" and "Fix the map" pages */
889
890 .site-welcome, .site-fixthemap {
891   .sprite {
892     width: 50px;
893     height: 50px;
894     background-image: image-url("welcome-sprite.svg");
895     background-size: 500px 250px;
896   }
897
898   .sprite.x {
899     /*rtl:ignore*/ background-position: -50px 0;
900   }
901
902   .sprite.node {
903     /*rtl:ignore*/ background-position: -100px 0;
904   }
905
906   .sprite.way {
907     /*rtl:ignore*/ background-position: -150px 0;
908   }
909
910   .sprite.tag {
911     /*rtl:ignore*/ background-position: -200px 0;
912   }
913
914   .sprite.editor {
915     /*rtl:ignore*/ background-position: -250px 0;
916   }
917
918   .sprite.question {
919     /*rtl:ignore*/ background-position: -300px 0;
920   }
921
922   .sprite.rules {
923     /*rtl:ignore*/ background-position: -350px 0;
924   }
925 }
926
927 /* Rules for the "About" page */
928
929 .site-about #content {
930   .content-inner {
931     max-width: 760px;
932   }
933
934   .attr {
935     margin-top: -20px;
936
937     h1 {
938       span {
939         color: $vibrant-green;
940       }
941     }
942
943     .user-image {
944       height: 150px;
945       background-position: 0 50%;
946       background-repeat: no-repeat;
947       background-image: image-url('about/osm.png');
948       background-size: cover;
949       background-color: $vibrant-green;
950     }
951
952     .byosm {
953       background: $vibrant-green;
954     }
955
956     .byosm span {
957       display: inline-block;
958       width: 1em;
959       margin-left: -1em;
960     }
961   }
962
963   .icon {
964     width: 30px;
965     height: 30px;
966     background: 40px 40px image-url('about/sprite.png') no-repeat;
967
968     &.local {
969       /*rtl:ignore*/
970       background-position: 0px 0px;
971     }
972     &.community {
973       /*rtl:ignore*/
974       background-position: 0px -40px;
975     }
976     &.open {
977       /*rtl:ignore*/
978       background-position: 0px -80px;
979     }
980     &.partners {
981       /*rtl:ignore*/
982       background-position: 0px -120px;
983     }
984     &.infringement {
985       /*rtl:ignore*/
986       background-position: 0px -160px;
987     }
988     &.legal {
989       /*rtl:ignore*/
990       background-position: -45px -160px;
991     }
992   }
993 }
994
995 .auth-container {
996   max-width: 600px;
997 }
998
999 /* Rules for tabs inside secondary background sections */
1000
1001 .bg-body-secondary .nav-tabs {
1002   --bs-border-color: var(--bs-secondary-border-subtle);
1003   --bs-secondary-bg: var(--bs-secondary-border-subtle);
1004   margin-bottom: -1px;
1005 }
1006
1007 /* Rules for traces */
1008
1009 img.trace_image {
1010   mix-blend-mode: darken;
1011 }
1012
1013 @include color-mode(dark) {
1014   img.trace_image {
1015     filter: invert(1);
1016     mix-blend-mode: lighten;
1017   }
1018 }
1019
1020 /* Rules for map sidebar icons */
1021
1022 .browse-section {
1023   .node::before,
1024   .way::before,
1025   .relation::before {
1026     display: inline-block;
1027     width: 25px;
1028     margin-left: -25px;
1029   }
1030
1031   .node, .way, .relation {
1032     margin-left: 25px;
1033   }
1034 }
1035
1036 @each $class, $item in $map-sidebar-icons {
1037   .browse-section #{$class}::before {
1038     content: image-url('browse/#{map.get($item, "filename")}');
1039   }
1040
1041   @if map.get($item, "invert") {
1042     @include color-mode(dark) {
1043       .browse-section #{$class}::before {
1044         filter: invert(.8) hue-rotate(180deg);
1045       }
1046     }
1047   }
1048 }