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