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