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