]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Replace border-grey css class with border-secondary-subtle
[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 header {
85   height: $headerHeight;
86   position: relative;
87   z-index: 1001;
88   font-size: 14px;
89
90   h1, nav, nav > ul, nav > ul > li {
91     display: inline-block;
92   }
93
94   > * {
95     height: 100%;
96     padding: $lineheight * 0.5;
97   }
98
99   img.logo {
100     margin-top: -2px;
101   }
102
103   h1 {
104     font-size: 18px;
105     line-height: 1.2;
106     padding-top: 15px;
107   }
108
109   .btn {
110     font-size: 14px;
111   }
112
113   nav.primary {
114     margin-right: auto;
115   }
116 }
117
118 nav.primary {
119   & > .btn-group .btn-outline-primary {
120     @include button-outline-variant($green, $color-hover: $white, $active-color: $white);
121   }
122
123   .disabled {
124     .btn-outline-primary {
125       color: $grey;
126       cursor: default;
127
128       .caret {
129         border-top-color: $grey;
130       }
131
132       &:hover {
133         background-color: lighten($green, 30%);
134       }
135     }
136   }
137
138   // Small tweaks to the toggle to stop the primary colour showing through
139   // when the menu is shown
140   .show > .btn-outline-primary.dropdown-toggle {
141     background-color: $green;
142     border-color: $green;
143
144     &:focus {
145       box-shadow: 0 0 0 0.2rem fade-out($green, 0.5);
146     }
147   }
148 }
149
150 nav.secondary {
151   .nav-link {
152     padding: 0.2rem;
153     color: $darkgrey;
154   }
155
156   > ul li.current a {
157     color: darken($darkgrey, 25%);
158   }
159
160   #inboxanchor {
161     background-color: lighten($grey, 10%);
162   }
163 }
164
165 nav.primary, nav.secondary {
166   .dropdown-item {
167     &:hover, &:active {
168       background-color: $green;
169       color: white;
170     }
171   }
172 }
173
174 #compact-secondary-nav {
175   display: none;
176 }
177
178 body.compact-nav {
179   #compact-secondary-nav {
180     display: inline-block;
181   }
182   .compact-hide {
183     display: none;
184   }
185 }
186
187 body.small-nav {
188   #menu-icon {
189     display: block;
190   }
191
192   header {
193     flex-direction: column;
194     height: auto;
195     min-height: $headerHeight;
196     background: #fff;
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     background: #fff;
325
326     #sidebar_loader {
327       display: none;
328     }
329   }
330
331   .overlay-sidebar #sidebar {
332     position: absolute;
333     z-index: 1000;
334     height: auto;
335     overflow: hidden;
336
337     #banner {
338       display: block;
339     }
340
341     .welcome {
342       display: block;
343     }
344
345     #sidebar_content {
346       display: none;
347     }
348   }
349
350   .welcome {
351     display: none;
352   }
353
354   #banner {
355     display: none;
356
357     img {
358       display: block;
359       width: $sidebarWidth;
360     }
361   }
362
363   #map {
364     height: 100%;
365     overflow: hidden;
366
367     &.query-active {
368       cursor: help;
369     }
370
371     &.query-disabled {
372       cursor: not-allowed;
373     }
374
375     .leaflet-marker-draggable {
376       cursor: move;
377     }
378   }
379
380   #map-ui {
381     display: none;
382     position: relative;
383     float: right;
384     width: 250px;
385     height: 100%;
386     background: white;
387     overflow: auto;
388
389     .section {
390       border-bottom: 1px solid $grey;
391       padding: $spacer;
392     }
393   }
394 }
395
396 @include media-breakpoint-down(md) {
397   body.map-layout {
398     #sidebar, #map {
399       position: relative;
400       overflow-x: hidden;
401       width: 100%;
402       height: 50%;
403     }
404
405     #map-ui {
406       z-index: 9999;
407       width: 100%;
408       height: 50%;
409       overflow-y: scroll;
410     }
411
412     .overlay-sidebar {
413       #sidebar {
414         position: absolute;
415         width: 350px;
416         height: auto;
417         overflow: hidden;
418       }
419
420       #map, #map-ui {
421         height: 100%;
422       }
423     }
424   }
425 }
426
427 .layers-ui {
428   .base-layers {
429     .leaflet-container {
430       width: 100%;
431       height: 50px;
432       cursor: pointer;
433     }
434
435     li  {
436       overflow: hidden;
437       border-radius: 3px;
438       border: 2px solid #fff;
439       margin-bottom: 8px;
440       position: relative;
441       transition: border-color 0.08s ease-in;
442
443       label {
444         position: absolute;
445         top: 0;
446         left: 0;
447         padding: 2px 6px;
448         border-bottom-right-radius: 3px;
449         cursor: pointer;
450         font-weight: 600;
451         font-size: 16px;
452         text-stroke: 2px #fff;
453         background: rgba(255,255,255,.9);
454         z-index: 1000;
455         input[type="radio"] {
456           display: none;
457         }
458       }
459
460       &.active { border-color: darken($green, 10%); }
461       &:hover {
462         border-color: $grey;
463         &.active { border-color: darken($green, 20%); }
464       }
465     }
466   }
467
468   .overlay-layers {
469     p {
470       font-size: 13px;
471       margin-bottom: 8px;
472     }
473     li.disabled { color: $darkgrey; }
474   }
475 }
476
477 .share-ui {
478   #mapnik_scale {
479     width: 100px;
480   }
481 }
482
483 .leaflet-top {
484   top: 10px !important;
485   .leaflet-control {
486     margin-right: 0px !important;
487     margin-top: 0px !important;
488   }
489 }
490
491 .leaflet-popup-scrolled {
492   padding-right: $lineheight;
493   border-bottom: 0px !important;
494   border-top: 0px !important;
495 }
496
497 .leaflet-popup-content-wrapper {
498   border-radius: 4px !important;
499 }
500
501 /* Rules for attribution text under the main map shown on printouts */
502
503 .donate-attr { color: darken($green, 10%) !important; }
504
505 /* Rules for the sidebar */
506
507 #browse_status {
508   input {
509     display: block;
510     margin-left: auto;
511     margin-right: auto;
512   }
513 }
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 /* Rules for search sidebar */
556
557 #sidebar .search_results_entry {
558   ul li.selected {
559     background: $list-highlight;
560   }
561
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.png');
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 td.distance {
580     font-size: x-small;
581 }
582 tr.turn {
583     cursor: pointer;
584 }
585 tr.turn:hover {
586     background: $list-highlight;
587 }
588
589 .routing_marker { width: 15px; cursor: move; }
590
591 .browse_status {
592   display: none;
593 }
594
595 /* Rules for the history sidebar */
596
597 #sidebar .changesets {
598   li {
599     &.selected { background: $list-highlight; }
600     /* color is derived from changeset bbox fillColor in history.js */
601
602     a.stretched-link > span, a:not(.stretched-link), [title] {
603       position: relative;
604       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
605     }
606   }
607
608   .changeset_more .loader {
609     display: none;
610     width: 100%;
611   }
612 }
613
614 /* Rules for the browse sidebar */
615
616 #sidebar_content {
617   .browse-section {
618     padding-bottom: $spacer;
619     margin-bottom: $spacer;
620     border-bottom: 1px solid $grey;
621
622     h4:first-child {
623       word-wrap: break-word;
624     }
625   }
626
627   .browse-section:last-of-type {
628     border-bottom: none;
629   }
630
631   .browse-tag-list {
632     table-layout: fixed;
633     white-space: pre-wrap;
634
635     tr:last-child th, tr:last-child td {
636       border-bottom: 0;
637     }
638   }
639
640   .note-description {
641     overflow: hidden;
642     margin: 0 0 10px 10px;
643   }
644
645   .query-results {
646     display: none;
647
648     ul {
649       li {
650         &.query-result {
651           cursor: pointer;
652         }
653
654         &.selected {
655           background: $list-highlight;
656         }
657       }
658     }
659   }
660 }
661
662 /* Bootstrap buttons don't have any vertical margin, so
663    they touch when adjacent buttons wrap onto a new line
664    e.g. wide form buttons on a narrow sidebar */
665
666 .btn-wrapper {
667   > .btn {
668     margin-bottom: $spacer * 0.25;
669   }
670 }
671
672 /* Force LTR/RTL alignment for placeholder text */
673
674 .form-control::placeholder {
675   text-align: left;
676 }
677
678 /* Rules for export sidebar */
679
680 .export_form {
681   .export_area_inputs,
682   .export_button {
683     text-align: center;
684   }
685
686   .export_area_inputs {
687     margin-bottom: $spacer;
688     input[type="text"] {
689       width: 100px;
690       text-align: center;
691     }
692   }
693
694   .export_boxy {
695     background: $lightgrey;
696
697     #maxlat { margin-top: -1px; }
698     #minlon {
699       float: left;
700       /*rtl:ignore*/ margin-left: -1px;
701     }
702     #maxlon {
703       float: right;
704       /*rtl:ignore*/ margin-right: -1px;
705     }
706     #minlat { margin-bottom: -1px; }
707   }
708 }
709
710 /* Rules for edit pages */
711
712 .site-edit {
713   #content {
714     position: absolute;
715     top: $headerHeight;
716     bottom: 0;
717     width: 100%;
718   }
719 }
720
721 /* Rules for non-map content pages */
722
723 .content-heading {
724   background: $lightgrey;
725 }
726
727 .content-inner {
728   position: relative;
729   max-width: 960px;
730   margin: auto;
731   padding: $lineheight;
732 }
733
734 /* Overrides for pages that use new layout conventions */
735
736 .header-illustration {
737   background-position: 0 0;
738   background-repeat: no-repeat;
739   position: relative;
740   min-height: 200px;
741   width: 100%;
742   left: 0;
743   bottom: 0;
744
745   &.new-user-main {
746     background-image: image-url("sign-up-illustration.png");
747   }
748
749   &.confirm-main {
750     background-image: image-url("confirm-illustration.png");
751   }
752
753   &.new-user-terms {
754     background-image: image-url("terms-illustration.png");
755   }
756
757   &.new-user-arm {
758     height: 110px;
759     width: 130px;
760     left: 280px;
761     top: 180px;
762     background-image: image-url("sign-up-illustration-arm.png");
763     position: absolute;
764     z-index: 100;
765     pointer-events: none;
766   }
767 }
768
769 [dir=rtl] .header-illustration {
770   transform: scaleX(-1);
771
772   h1 {
773     transform: scaleX(-1);
774   }
775 }
776
777 /* Rules for small maps in content areas */
778
779 .content_map {
780   height: 200px;
781   margin-bottom: $lineheight;
782 }
783
784 @include media-breakpoint-up(md) {
785   .content_map {
786     height: 400px;
787   }
788 }
789
790 /* Rules for the user map */
791
792 .content_map .leaflet-popup-content {
793   margin: $spacer;
794   min-height: 50px;
795 }
796
797 /* Rules for user popups on maps */
798
799 .user_popup {
800   min-width: 200px;
801   p {
802     padding: 0 0 5px 0;
803     margin: 0 0 0 60px;
804     font-size: 12px;
805   }
806 }
807
808 /* Rules for the diary entry page */
809
810 .diary_entries {
811   #map {
812     height: 400px;
813     display: none;
814   }
815   .diary-comment .col-auto {
816     width: 62px;
817   }
818   .diary-comment .col {
819     max-width: 690px;
820   }
821 }
822
823 /* Rules for the account confirmation page */
824
825 .users-terms {
826   .legale {
827     padding: $lineheight;
828     margin-bottom: $lineheight;
829     overflow: auto;
830     height: 20em;
831
832     li {
833       list-style: inherit;
834     }
835
836     ol ol {
837       list-style-type: lower-alpha;
838     }
839   }
840 }
841
842 /* Rules for messages pages */
843
844 .messages {
845   .inbox-row {
846     background: $offwhite;
847   }
848
849   .inbox-row-unread td {
850     background: #CBEEA7;
851   }
852 }
853
854 .search_form {
855   background-color: $lightgrey;
856
857   #query {
858     z-index: 0;
859   }
860
861   .describe_location {
862     font-size: 10px;
863   }
864 }
865
866 .directions_form {
867   background-color: $lightgrey;
868 }
869
870 /* Rules for user images */
871
872 img.user_image {
873   max-width: 100px;
874   max-height: 100px;
875 }
876
877 img.user_thumbnail {
878   max-width: 50px;
879   max-height: 50px;
880 }
881
882 img.user_thumbnail_tiny {
883   width: 25px;
884   height: 25px;
885   object-fit: contain;
886 }
887
888 /* General styles for action lists / subnavs */
889
890 nav.secondary-actions {
891   margin-left: -11px;
892   overflow: hidden;
893   > ul {
894     display: flex;
895     flex-direction: row;
896     flex-wrap: wrap;
897     margin-bottom: 0;
898     margin-left: -1px;
899     padding: 0;
900     > li {
901       flex-basis: auto;
902       list-style: none;
903       border-left: 1px solid $grey;
904       padding-left: $lineheight * 0.5;
905       margin-right: $lineheight * 0.5;
906       margin-bottom: $lineheight * 0.125;
907     }
908   }
909 }
910
911 div.secondary-actions {
912   padding: 10px;
913   text-align: center;
914 }
915
916 /* Rules for rich text */
917
918 .richtext,
919 .prose {
920   code {
921     background: $lightgrey;
922     padding: 2px 3px;
923   }
924
925   pre {
926     background: $lightgrey;
927     padding: 2px 3px;
928     white-space: pre-wrap;
929
930     code {
931       padding: 0;
932     }
933   }
934
935   img {
936     padding: $lineheight;
937     background-color: $offwhite;
938     display: block;
939     max-width: 100%;
940     margin: auto;
941   }
942
943   blockquote {
944     border-left: $lineheight solid $offwhite;
945     padding-left: $lineheight;
946     margin: 0;
947     color: $darkgrey;
948   }
949 }
950
951 /* Rules for the "Welcome" page */
952 .site-welcome, .site-fixthemap {
953   .sprite {
954     background-image: image-url("welcome-sprite.png");
955     background-size: 500px 250px;
956     display: block;
957   }
958
959   .sprite.small {
960     width: 50px;
961     height: 50px;
962   }
963
964   .sprite.x {
965     /*rtl:ignore*/ background-position: -50px 0;
966   }
967
968   .sprite.term {
969     margin-right: 10px;
970     vertical-align: middle;
971   }
972
973   .sprite.node {
974     /*rtl:ignore*/ background-position: -100px 0;
975   }
976
977   .sprite.way {
978     /*rtl:ignore*/ background-position: -150px 0;
979   }
980
981   .sprite.tag {
982     /*rtl:ignore*/ background-position: -200px 0;
983   }
984
985   .sprite.editor {
986     /*rtl:ignore*/ background-position: -250px 0;
987   }
988
989   .sprite.question {
990     /*rtl:ignore*/ background-position: -300px 0;
991   }
992
993   .sprite.rules {
994     /*rtl:ignore*/ background-position: -350px 0;
995   }
996
997   .icon.note {
998     background-color: #333;
999     border-radius: 4px;
1000   }
1001 }
1002
1003 .site-about #content {
1004   background-color: $lightgrey;
1005
1006   .content-inner {
1007     max-width: 760px;
1008   }
1009
1010   .attr {
1011     margin-top: -20px;
1012
1013     h1 {
1014       span {
1015         color: $vibrant-green;
1016       }
1017     }
1018
1019     .user-image {
1020       height: 150px;
1021       background-position: 0 50%;
1022       background-repeat: no-repeat;
1023       background-image: image-url('about/osm.png');
1024       background-size: cover;
1025       background-color: $vibrant-green;
1026     }
1027
1028     .byosm {
1029       background: $vibrant-green;
1030     }
1031
1032     .byosm span {
1033       display: inline-block;
1034       width: 1em;
1035       margin-left: -1em;
1036     }
1037   }
1038
1039   .icon {
1040     width: 30px;
1041     height: 30px;
1042     background: 40px 40px image-url('about/sprite.png') no-repeat;
1043
1044     &.local {
1045       /*rtl:ignore*/
1046       background-position: 0px 0px;
1047     }
1048     &.community {
1049       /*rtl:ignore*/
1050       background-position: 0px -40px;
1051     }
1052     &.open {
1053       /*rtl:ignore*/
1054       background-position: 0px -80px;
1055     }
1056     &.partners {
1057       /*rtl:ignore*/
1058       background-position: 0px -120px;
1059     }
1060     &.infringement {
1061       /*rtl:ignore*/
1062       background-position: 0px -160px;
1063     }
1064     &.legal {
1065       /*rtl:ignore*/
1066       background-position: -45px -160px;
1067     }
1068   }
1069 }
1070
1071 @import 'browse';