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