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