]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Write browse element icons as <img>
[rails.git] / app / assets / stylesheets / common.scss
1 @use "sass:map";
2 @import "parameters";
3 @import "bootstrap";
4 @import "rails_bootstrap_forms";
5
6 /* Styles common to large and small screens */
7
8 /* Default rules for the body of every page */
9
10 body {
11   font-size: $typeheight;
12 }
13
14 time[title] {
15   text-decoration: underline dotted;
16 }
17
18 /* Rules for icons */
19
20 .icon {
21   display: inline-block;
22   vertical-align: top;
23   width: 20px;
24   height: 20px;
25   background: transparent image-url("sprite.svg") no-repeat 0 0;
26   text-indent: -9999px;
27   overflow: hidden;
28 }
29
30 .icon.search      { /*rtl:ignore*/ background-position: 0 0; }
31 .icon.donate      { /*rtl:ignore*/ background-position: -20px 0; }
32 .icon.zoomin      { /*rtl:ignore*/ background-position: -40px 0; }
33 .icon.zoomout     { /*rtl:ignore*/ background-position: -60px 0; }
34 .icon.geolocate   { /*rtl:ignore*/ background-position: -80px 0; }
35 .active .icon.geolocate   { /*rtl:ignore*/ background-position: -80px -20px; }
36 .icon.layers      { /*rtl:ignore*/ background-position: -100px 0; }
37 .icon.key         { /*rtl:ignore*/ background-position: -120px 0; }
38 .icon.share       { /*rtl:ignore*/ background-position: -140px 0; }
39 .icon.clipboard   { /*rtl:ignore*/ background-position: -160px 0; }
40 .icon.link        { /*rtl:ignore*/ background-position: -180px 0; }
41 .icon.close       { /*rtl:ignore*/ background-position: -200px 0; }
42 .icon.close:hover { /*rtl:ignore*/ background-position: -200px -20px; }
43 .icon.check       { /*rtl:ignore*/ background-position: -220px 0; }
44 .icon.note        { /*rtl:ignore*/ background-position: -240px 0; }
45 .icon.note.grey   { /*rtl:ignore*/ background-position: -240px -20px; }
46 .icon.query       { /*rtl:ignore*/ background-position: -260px 0; }
47
48 /* Utility for de-emphasizing content */
49
50 .text-body-secondary a {
51   color: $blue;
52 }
53
54 /* Bootstrap contextual table classes overrides in dark mode */
55
56 @include color-mode(dark) {
57   .table-primary {
58     --bs-table-bg: rgb(var(--bs-primary-rgb), .25);
59   }
60   .table-secondary {
61     --bs-table-bg: rgb(var(--bs-secondary-rgb), .25);
62   }
63   .table-success {
64     --bs-table-bg: rgb(var(--bs-success-rgb), .25);
65   }
66   .table-primary, .table-secondary, .table-success {
67     --bs-table-color: initial;
68     border-color: inherit;
69   }
70 }
71
72 /* Utility for delayed loading spinner */
73
74 .delayed-fade-in {
75   animation: 300ms linear forwards delayed-fade-in;
76 }
77
78 @keyframes delayed-fade-in {
79   0%   { opacity: 0 }
80   66%  { opacity: 0 }
81   100% { opacity: 1 }
82 }
83
84 /* Bootstrap close button overrides for nested light/dark themes */
85
86 [data-bs-theme="dark"] .btn-close {
87   filter: var(--bs-btn-close-white-filter);
88 }
89
90 [data-bs-theme="light"] .btn-close {
91   filter: none;
92 }
93
94 /* Rules for the header */
95
96 #menu-icon {
97   display: none;
98   position: absolute;
99   top: 0;
100   right: 0;
101   background: image-url("menu-icon.svg") no-repeat;
102   background-size: 30px 30px;
103   width: 30px;
104   height: 30px;
105   margin: 14px 10px 0 0;
106   opacity: 0.6;
107 }
108
109 @include color-mode(dark) {
110   #menu-icon {
111     filter: invert(1);
112   }
113 }
114
115 header {
116   height: $headerHeight;
117   position: relative;
118   font-size: 14px;
119
120   > * {
121     padding: $lineheight * 0.5;
122   }
123
124   h1 {
125     height: $headerHeight;
126     font-size: 18px;
127   }
128
129   .btn {
130     font-size: 14px;
131   }
132
133   nav.primary {
134     margin-right: auto;
135   }
136
137   .username {
138     max-width: 12em;
139   }
140 }
141
142 nav.primary {
143   #edit_tab .btn-outline-primary {
144     @include button-outline-variant($green, $color-hover: $white, $active-color: $white);
145   }
146
147   .disabled {
148     .btn-outline-primary {
149       color: $grey;
150       cursor: default;
151
152       .caret {
153         border-top-color: $grey;
154       }
155
156       &:hover {
157         background-color: lighten($green, 30%);
158       }
159     }
160   }
161
162   // Small tweaks to the toggle to stop the primary colour showing through
163   // when the menu is shown
164   .show > .btn-outline-primary.dropdown-toggle {
165     background-color: $green;
166     border-color: $green;
167
168     &:focus {
169       box-shadow: 0 0 0 0.2rem fade-out($green, 0.5);
170     }
171   }
172 }
173
174 nav.secondary {
175   .nav-link {
176     padding: 0.3rem;
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 !important;
214     }
215
216     .search_forms {
217       display: block;
218     }
219
220     .username {
221       max-width: unset;
222     }
223   }
224
225   #sidebar .search_forms {
226     display: none;
227   }
228
229   nav.primary {
230     margin-right: 0;
231     padding: 0;
232
233     #edit_tab {
234       width: 100%;
235       padding: 10px;
236     }
237   }
238
239   nav.secondary {
240     flex-direction: column;
241
242     .user-menu, .login-menu {
243       width: 100%;
244     }
245   }
246
247   #compact-secondary-nav {
248     display: none;
249   }
250
251   .compact-hide {
252     display: inline-block;
253   }
254
255   .overlay-sidebar #sidebar .welcome {
256     display: none;
257   }
258
259   .overlay-sidebar #sidebar #banner {
260     display: none;
261   }
262 }
263
264 /* Utility for styling notification numbers */
265
266 .count-number {
267   background: transparentize(lighten($green, 25%), .25);
268   color: $gray-800;
269   font-weight: $font-weight-normal;
270 }
271
272 /* Rules for Leaflet maps */
273
274 .leaflet-top.leaflet-right,
275 .leaflet-top.leaflet-left {
276   height: 100%;
277   column-gap: 10px;
278   display: flex;
279   flex-direction: column;
280   flex-wrap: wrap-reverse;
281 }
282
283 .leaflet-control .control-button {
284   display: block;
285   height: 40px;
286   width: 40px;
287   background-color: #333;
288   background-color: rgba(0,0,0,.6);
289   outline: none;
290
291   &:hover,
292   &:focus {
293     background-color: black;
294   }
295
296   &.disabled,
297   &.leaflet-disabled {
298     background-color: #333;
299     background-color: rgba(0,0,0,.5);
300     cursor: default;
301   }
302
303   &.active {
304     background-color: $vibrant-green;
305   }
306
307   &-first {
308     border-start-start-radius: 4px;
309   }
310
311   &-last {
312     border-end-start-radius: 4px;
313     margin-bottom: 10px;
314   }
315
316   .icon {
317     margin: 10px;
318   }
319 }
320
321 /* Rules for the sidebar and main map area */
322
323 .map-layout {
324   #content {
325     overflow: hidden;
326     position: absolute;
327     top: $headerHeight;
328     bottom: 0;
329     width: 100%;
330   }
331
332   #sidebar, #map {
333     position: relative;
334     height: 100%;
335     overflow-x: hidden;
336     overflow-y: auto;
337   }
338
339   #sidebar {
340     float: left;
341     width: $sidebarWidth;
342
343     #sidebar_loader {
344       display: none;
345     }
346   }
347
348   .overlay-sidebar #sidebar {
349     position: absolute;
350     height: auto;
351     overflow: hidden;
352
353     #banner {
354       display: block;
355     }
356
357     .welcome {
358       display: block;
359     }
360
361     #sidebar_content {
362       display: none;
363     }
364   }
365
366   .welcome {
367     display: none;
368   }
369
370   #banner {
371     display: none;
372
373     img {
374       display: block;
375       width: $sidebarWidth;
376     }
377   }
378
379   #map {
380     height: 100%;
381     overflow: hidden;
382
383     &.query-active {
384       cursor: help;
385     }
386
387     &.query-disabled {
388       cursor: not-allowed;
389     }
390
391     .leaflet-marker-draggable {
392       cursor: move;
393     }
394
395     .query-marker {
396       animation: 1500ms forwards query-marker-fade;
397
398       @keyframes query-marker-fade {
399         to { opacity: 0 }
400       }
401     }
402   }
403
404   #map-ui {
405     display: none;
406     position: relative;
407     float: right;
408     width: 250px;
409     height: 100%;
410     overflow: auto;
411   }
412 }
413
414 @include media-breakpoint-down(md) {
415   body.map-layout {
416     #sidebar, #map {
417       position: relative;
418       overflow-x: hidden;
419       width: 100%;
420       height: 50%;
421     }
422
423     #map-ui {
424       width: 100%;
425       height: 50%;
426       overflow-y: scroll;
427     }
428
429     .overlay-sidebar.overlay-right-sidebar {
430       #sidebar {
431         position: absolute;
432         width: 350px;
433         height: auto;
434         overflow: hidden;
435       }
436
437       #map {
438         height: 100%;
439       }
440     }
441   }
442 }
443
444 .layers-ui {
445   .base-layers > * {
446     height: 3.5rem;
447
448     > .btn {
449       box-sizing: content-box;
450       top: - map.get($border-widths, 4);
451       left: - map.get($border-widths, 4);
452       --bs-btn-border-color: var(--bs-body-bg);
453     }
454     > .btn:hover {
455       --bs-btn-border-color: var(--bs-primary-border-subtle);
456     }
457   }
458
459   .overlay-layers {
460     li.disabled { color: $darkgrey; }
461   }
462 }
463
464 .share-ui {
465   #mapnik_scale {
466     width: 100px;
467   }
468 }
469
470 .leaflet-top {
471   top: 10px !important;
472   .leaflet-control {
473     margin-right: 0px !important;
474     margin-top: 0px !important;
475   }
476 }
477
478 .leaflet-popup-scrolled {
479   padding-right: $lineheight;
480   border-bottom: 0px !important;
481   border-top: 0px !important;
482 }
483
484 .leaflet-popup-content-wrapper, .leaflet-popup-tip,
485 .leaflet-contextmenu, .leaflet-contextmenu-item,
486 .leaflet-control-attribution, .leaflet-control-scale-line {
487   @extend .bg-body, .text-body;
488 }
489
490 .leaflet-control-attribution, .leaflet-control-scale-line {
491   @extend .bg-opacity-75;
492   text-shadow: none !important;
493 }
494
495 .leaflet-contextmenu-item.over {
496   @extend .bg-body-secondary, .border-secondary, .border-opacity-10;
497 }
498
499 .leaflet-popup-content-wrapper {
500   @extend .rounded-1;
501
502   a {
503     color: var(--bs-link-color) !important;
504   }
505 }
506
507 @include color-mode(dark) {
508   .leaflet-tile-container .leaflet-tile,
509   .mapkey-table-entry td:first-child > * {
510     filter: brightness(.8);
511   }
512
513   .leaflet-container .leaflet-control-attribution a {
514     color: var(--bs-link-color);
515   }
516
517   .leaflet-control-scale-line {
518     border-color: rgba(var(--bs-light-rgb), .75) !important;
519   }
520 }
521
522 /* Rules for attribution text under the main map shown on printouts */
523
524 .donate-attr { color: darken($green, 10%) !important; }
525
526 /* Temporary label size override until we remove site-wide font customisation */
527
528 form {
529   label {
530     font-size: 16px;
531   }
532   .col-form-label {
533     font-size: 16px;
534   }
535 }
536
537 /* Stop bootstrap 5 from floating legends when they don't need to be */
538 legend {
539   float: none;
540 }
541
542 /* Override the text colour for primary and secondary buttons, to match our
543    bootstrap 4 colours. Note this has accessibility issues, which is why
544    bootstrap 5 calculates black as the appropriate colour, and we should
545    reconsider our colours at some point with that in mind. */
546
547 .btn-primary {
548   @include button-variant($primary, $primary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
549 }
550
551 .btn-secondary {
552   @include button-variant($secondary, $secondary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
553 }
554
555 .btn-outline-secondary {
556   @include button-outline-variant($secondary, $color-hover: $white, $active-color: $white);
557 }
558
559 /* Rules for the search and direction forms */
560
561 header .search_forms,
562 .directions_form {
563   display: none;
564 }
565
566 .search_form {
567   .describe_location {
568     font-size: 10px;
569   }
570 }
571
572 /* Rules for search sidebar */
573
574 #sidebar .search_results_entry {
575   .search_more .loader {
576     display: none;
577   }
578 }
579
580 /* Rules for routing */
581
582 div.direction {
583   background-image: image-url('routing-sprite.svg');
584   width: 20px;
585   height: 20px;
586   background-repeat: no-repeat;
587 }
588 @for $i from 0 through 25 {
589 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
590 }
591
592 @include color-mode(dark) {
593   div.direction {
594     filter: invert(1);
595   }
596 }
597
598 td.distance {
599     font-size: x-small;
600 }
601 tr.turn {
602     cursor: pointer;
603 }
604
605 .routing_marker_column {
606   width: 15px;
607
608   img {
609     cursor: move;
610   }
611 }
612
613 /* Rules for the history sidebar */
614
615 #sidebar .changesets {
616   li {
617     &.selected {
618       @extend :hover;
619     }
620
621     a.stretched-link > span, a:not(.stretched-link), [title] {
622       position: relative;
623       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
624     }
625   }
626
627   .changeset_more .loader {
628     display: none;
629     width: 100%;
630   }
631 }
632
633 /* Rules for the browse sidebar */
634
635 #sidebar_content {
636   .browse-section {
637     padding-bottom: $spacer;
638     margin-bottom: $spacer;
639     border-bottom: 1px solid $grey;
640
641     h4:first-child {
642       word-wrap: break-word;
643     }
644   }
645
646   .browse-section:last-of-type {
647     border-bottom: none;
648   }
649
650   .browse-tag-list {
651     table-layout: fixed;
652     white-space: pre-wrap;
653     word-wrap: break-word;
654     word-break: break-word;
655
656     tr:last-child th, tr:last-child td {
657       border-bottom: 0;
658     }
659   }
660
661   .query-results {
662     display: none;
663   }
664 }
665
666 /* Force LTR/RTL alignment for placeholder text */
667
668 .form-control::placeholder {
669   text-align: left;
670 }
671
672 /* Rules for export sidebar */
673
674 .export_form {
675   .export_area_inputs {
676     input[type="text"] {
677       width: 100px;
678     }
679   }
680
681   .export_boxy {
682     > * {
683         margin: -1px;
684     }
685     #minlon {
686       /*rtl:ignore*/ float: left;
687     }
688     #maxlon {
689       /*rtl:ignore*/ float: right;
690     }
691   }
692 }
693
694 /* Rules for edit pages */
695
696 .site-edit {
697   #content {
698     position: absolute;
699     top: $headerHeight;
700     bottom: 0;
701     width: 100%;
702   }
703 }
704
705 /* Rules for non-map content pages */
706
707 .content-inner {
708   position: relative;
709   max-width: 960px;
710   margin: auto;
711   padding: $lineheight;
712 }
713
714 /* Rules for login and signup pages */
715
716 .sessions-new, .users-new, .users-create {
717   #content .content-inner {
718     max-width: 760px;
719   }
720 }
721
722 .header-illustration {
723   background-position: right;
724   background-repeat: no-repeat;
725   position: relative;
726   min-height: 200px;
727   width: 100%;
728   left: 0;
729   bottom: 0;
730
731   &.new-user-main {
732     background-image: image-url("sign-up-illustration.svg");
733     background-position-x: 70px;
734   }
735
736   &.confirm-main {
737     background-image: image-url("confirm-illustration.svg");
738   }
739
740   &.new-user-terms {
741     background-image: image-url("terms-illustration.svg");
742   }
743 }
744
745 [dir=rtl] .header-illustration {
746   transform: scaleX(-1);
747
748   h1 {
749     transform: scaleX(-1);
750   }
751
752   ul {
753     transform: scaleX(-1);
754   }
755 }
756
757 /* Rules for small maps in content areas */
758
759 .content_map {
760   height: 200px;
761   margin-bottom: $lineheight;
762 }
763
764 @include media-breakpoint-up(md) {
765   .content_map {
766     height: 400px;
767   }
768 }
769
770 /* Rules for the user map */
771
772 .content_map .leaflet-popup-content {
773   margin: $spacer;
774   min-height: 50px;
775 }
776
777 /* Rules for user popups on maps */
778
779 .user_popup {
780   p {
781     padding: 0 0 5px 0;
782     margin: 0 0 0 60px;
783     font-size: 12px;
784   }
785 }
786
787 /* Rules for the diary entry page */
788
789 .diary_entries {
790   #map {
791     height: 400px;
792     display: none;
793   }
794   .diary-comment .col-auto {
795     width: 62px;
796   }
797   .diary-comment .col {
798     max-width: 690px;
799   }
800 }
801
802 /* Rules for the account confirmation page */
803
804 .users-terms {
805   .legale {
806     padding: $lineheight;
807     margin-bottom: $lineheight;
808     overflow: auto;
809     height: 20em;
810
811     li {
812       list-style: inherit;
813     }
814
815     ol ol {
816       list-style-type: lower-alpha;
817     }
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 "About" page */
902
903 .site-about #content {
904   .content-inner {
905     max-width: 760px;
906   }
907
908   .attr {
909     margin-top: -20px;
910
911     h1 {
912       span {
913         color: $vibrant-green;
914       }
915     }
916
917     .user-image {
918       height: 150px;
919       background-position: 0 50%;
920       background-repeat: no-repeat;
921       background-image: image-url('about/osm.png');
922       background-size: cover;
923       background-color: $vibrant-green;
924     }
925
926     .byosm {
927       background: $vibrant-green;
928     }
929
930     .byosm span {
931       display: inline-block;
932       width: 1em;
933       margin-left: -1em;
934     }
935   }
936 }
937
938 /* Rules for tables with usernames */
939
940 .messages-table .username,
941 #block_list .username {
942   max-width: 20em;
943 }
944
945 /* Rules for navigation tabs */
946
947 .nav-tabs .username {
948   max-width: 20em;
949 }
950
951 .bg-body-secondary .nav-tabs {
952   --bs-border-color: var(--bs-secondary-border-subtle);
953   --bs-secondary-bg: var(--bs-secondary-border-subtle);
954   margin-bottom: -1px;
955 }
956
957 /* Rules for traces */
958
959 img.trace_image {
960   mix-blend-mode: darken;
961 }
962
963 @include color-mode(dark) {
964   img.trace_image {
965     filter: invert(1);
966     mix-blend-mode: lighten;
967   }
968 }
969
970 /* Rules for map sidebar icons */
971
972 .browse-section .browse-element-list {
973   line-height: 20px;
974
975   @include color-mode(dark) {
976     .browse-icon-invertible {
977       filter: invert(.8) hue-rotate(180deg);
978     }
979   }
980 }