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