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