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