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