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