]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Hide/show welcome banner with hidden attribute
[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 #container { position: relative; }
23
24 .small_icon {
25   vertical-align: middle;
26   margin-right: $lineheight/4;
27 }
28
29 [dir=rtl] { /* no-r2 */ text-align: right; }
30
31 [dir=ltr] { /* no-r2 */ text-align: left; }
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.png") no-repeat 0 0;
41   background-image: image-url("sprite.svg");
42   text-indent: -9999px;
43   overflow: hidden;
44 }
45
46 .icon.search      { /* no-r2 */ background-position: 0 0; }
47 .icon.donate      { /* no-r2 */ background-position: -20px 0; }
48 .icon.zoomin      { /* no-r2 */ background-position: -40px 0; }
49 .icon.zoomout     { /* no-r2 */ background-position: -60px 0; }
50 .icon.geolocate   { /* no-r2 */ background-position: -80px 0; }
51 .active .icon.geolocate   { /* no-r2 */ background-position: -80px -20px; }
52 .icon.layers      { /* no-r2 */ background-position: -100px 0; }
53 .icon.key         { /* no-r2 */ background-position: -120px 0; }
54 .icon.share       { /* no-r2 */ background-position: -140px 0; }
55 .icon.clipboard   { /* no-r2 */ background-position: -160px 0; }
56 .icon.link        { /* no-r2 */ background-position: -180px 0; }
57 .icon.close       { /* no-r2 */ background-position: -200px 0; }
58 .icon.close:hover { /* no-r2 */ background-position: -200px -20px; }
59 .icon.check       { /* no-r2 */ background-position: -220px 0; }
60 .icon.note        { /* no-r2 */ background-position: -240px 0; }
61 .icon.note.grey   { /* no-r2 */ background-position: -240px -20px; }
62 .icon.query       { /* no-r2 */ background-position: -260px 0; }
63
64 /* Utility for de-emphasizing content */
65
66 .text-muted a {
67   color: $blue;
68 }
69
70 /* Rules for borders */
71 /* These add additional colours to those provided by bootstrap */
72 .border-grey {
73   border-color: $grey !important;
74 }
75
76 .border-lightgrey {
77   border-color: $lightgrey !important;
78 }
79
80 /* Rules for the header */
81
82 #menu-icon {
83   display: none;
84   float: right;
85   background: image-url("menu-icon.png") no-repeat;
86   background-size: 30px 30px;
87   width: 30px;
88   height: 30px;
89   margin: 14px 10px 0 0;
90   opacity: 0.6;
91 }
92
93 header {
94   height: $headerHeight;
95   position: relative;
96   z-index: 1001;
97   font-size: 14px;
98
99   h1, nav, nav > ul, nav > ul > li {
100     display: inline-block;
101   }
102
103   > * {
104     height: 100%;
105     padding: $lineheight/2;
106   }
107
108   h1, nav.primary {
109     float: left;
110   }
111
112   a, a:hover {
113     text-decoration: none;
114   }
115
116   img.logo {
117     width: 30px;
118     height: 30px;
119     margin-top: -2px;
120     vertical-align: middle;
121   }
122
123   h1 {
124     font-size: 18px;
125     font-weight: 600;
126     line-height: 1.2;
127     margin: 0;
128     padding-top: 15px;
129
130     a {
131       color: #000;
132     }
133
134     a:hover {
135       color: #000;
136     }
137   }
138
139   .btn {
140     font-size: 14px;
141   }
142 }
143
144
145 nav.primary {
146   .btn-outline-primary {
147     @include button-outline-variant($green, $color-hover: $white, $active-color: $white);
148   }
149
150   .disabled {
151     .btn-outline-primary {
152       color: $grey;
153       cursor: default;
154
155       .caret {
156         border-top-color: $grey;
157       }
158
159       &:hover {
160         background-color: lighten($green, 30%);
161       }
162     }
163   }
164
165   // Small tweaks to the toggle to stop the primary colour showing through
166   // when the menu is shown
167   .show > .btn-outline-primary.dropdown-toggle {
168     background-color: $green;
169     border-color: $green;
170
171     &:focus {
172       box-shadow: 0 0 0 0.2rem fade-out($green, 0.5);
173     }
174   }
175 }
176
177 nav.secondary {
178   position: absolute;
179   right: 0;
180
181   .nav-link {
182     padding: 0.2rem;
183     color: $darkgrey;
184   }
185
186   > ul li.current a {
187     color: darken($darkgrey, 25%);
188   }
189
190   .login-menu {
191     .btn-outline-secondary {
192       @include button-outline-variant($darkgrey, $color-hover: $white, $active-color: $white);
193     }
194   }
195
196   .user-menu {
197     .btn-outline-secondary {
198       @include button-outline-variant($darkgrey, $color-hover: $darkgrey, $active-background: white, $active-border: $darkgrey);
199       border-color: $grey;
200       &:hover {
201         border-color: $grey;
202       }
203     }
204   }
205
206   #inboxanchor {
207     display: inline-block;
208     height: 25px;
209     margin: 3px 0 3px 3px;
210     background-color: lighten($grey, 10%);
211     line-height: 20px;
212     border-radius: 3;
213   }
214
215   .dropdown-menu {
216     .count-number {
217       font-size: 14px;
218     }
219   }
220 }
221
222 nav.primary, nav.secondary {
223   .dropdown-item {
224     &:hover, &:active {
225       background-color: $green;
226       color: white;
227     }
228   }
229 }
230
231 #compact-secondary-nav {
232   display: none;
233 }
234
235 body.compact-nav {
236   #compact-secondary-nav {
237     display: inline-block;
238   }
239   .compact-hide {
240     display: none;
241   }
242 }
243
244 body.small-nav {
245   #menu-icon {
246     display: block;
247   }
248
249   nav.primary,
250   nav.secondary {
251     float: none !important;
252     position: relative;
253     display: block;
254     clear: both;
255   }
256
257   header {
258     height: auto;
259     min-height: $headerHeight;
260     background: #fff;
261
262     &.closed nav {
263       display: none;
264     }
265
266     .search_forms {
267       display: block;
268     }
269   }
270
271   #sidebar .search_forms,
272   #edit_tab,
273   #export_tab {
274     display: none;
275   }
276
277   nav.primary {
278     padding: 0;
279
280     ul, li {
281       border: none;
282       border-radius: 0;
283       width: 100%;
284     }
285
286     ul {
287       border-top: 1px solid #eee;
288       li {
289         border-bottom: 1px solid #eee;
290         border-right: none;
291         > a {
292           border-radius: 0;
293           width: 100%;
294           text-align: center;
295           font-size: 15px;
296         }
297       }
298     }
299
300     .btn-group {
301       width: 100%;
302       padding: 10px;
303     }
304   }
305
306   nav.secondary {
307     .user-menu {
308       width: 100%;
309     }
310   }
311
312   #compact-secondary-nav {
313     display: none;
314   }
315
316   .compact-hide {
317     display: inline-block;
318   }
319
320   .overlay-sidebar #sidebar .welcome {
321     display: none;
322   }
323
324   .overlay-sidebar #sidebar #banner {
325     display: none;
326   }
327
328   .leaflet-top.leaflet-right {
329     top: 10px !important;
330   }
331 }
332
333 /* Utility for styling notification numbers */
334
335 .count-number {
336   padding: 2px $lineheight/4;
337   border-radius: 2px;
338   background: lighten($green, 30%);
339   margin: 0 2px;
340   font-size: 11px;
341   color: #333;
342 }
343
344 /* Rules for the message shown in place of the map when javascript is disabled */
345
346 #noscript {
347   z-index: 20000000;
348   margin-left: 400px;
349   margin-top: 50px;
350 }
351
352 /* Rules for Leaflet maps */
353
354 .leaflet-control .control-button {
355   display: block;
356   height: 40px;
357   width: 40px;
358   background-color: #333;
359   background-color: rgba(0,0,0,.6);
360   outline: none;
361
362   &:hover,
363   &:focus {
364     background-color: black;
365   }
366
367   &.disabled,
368   &.leaflet-disabled {
369     background-color: #333;
370     background-color: rgba(0,0,0,.5);
371     cursor: default;
372   }
373
374   &.active {
375     background-color: $vibrant-green;
376   }
377
378   &-first {
379     border-start-start-radius: 4px;
380   }
381
382   &-last {
383     border-end-start-radius: 4px;
384     margin-bottom: 10px;
385   }
386
387   .icon {
388     margin: 10px;
389   }
390 }
391
392 /* Rules for the sidebar and main map area */
393
394 .map-layout {
395   #content {
396     overflow: hidden;
397     position: absolute;
398     top: $headerHeight;
399     bottom: 0;
400     width: 100%;
401   }
402
403   #sidebar, #map {
404     position: relative;
405     height: 100%;
406     overflow-x: hidden;
407     overflow-y: auto;
408   }
409
410   #sidebar {
411     float: left;
412     width: $sidebarWidth;
413     background: #fff;
414
415     #sidebar_loader {
416       display: none;
417     }
418
419     #sidebar_content {
420       padding: $spacer;
421     }
422
423     > div {
424       position: relative;
425       float: left;
426       clear: both;
427       width: 100%;
428     }
429   }
430
431   .overlay-sidebar #sidebar {
432     position: absolute;
433     z-index: 1000;
434     height: auto;
435     overflow: hidden;
436
437     #banner {
438       display: block;
439     }
440
441     .welcome {
442       display: block;
443     }
444
445     #sidebar_content {
446       display: none;
447     }
448   }
449
450   .welcome {
451     display: none;
452
453     p {
454       font-size: 110%;
455       font-weight: 300;
456     }
457   }
458
459   #banner {
460     display: none;
461
462     img {
463       display: block;
464       width: $sidebarWidth;
465     }
466   }
467
468   #map {
469     height: 100%;
470     overflow: hidden;
471
472     &.query-active {
473       cursor: help;
474     }
475
476     &.query-disabled {
477       cursor: not-allowed;
478     }
479
480     .leaflet-marker-draggable {
481       cursor: move;
482     }
483   }
484
485   #map-ui {
486     display: none;
487     position: relative;
488     float: right;
489     width: 250px;
490     height: 100%;
491     background: white;
492     overflow: auto;
493
494     .section {
495       border-bottom: 1px solid $grey;
496       padding: 10px 20px;
497     }
498   }
499 }
500
501 @include media-breakpoint-down(md) {
502   body.map-layout {
503     #sidebar, #map {
504       position: relative;
505       overflow-x: hidden;
506       width: 100%;
507       height: 50%;
508     }
509
510     #map-ui {
511       z-index: 9999;
512       width: 100%;
513       height: 50%;
514       overflow-y: scroll;
515     }
516
517     .overlay-sidebar {
518       #sidebar {
519         position: absolute;
520         width: 350px;
521         height: auto;
522         overflow: hidden;
523       }
524
525       #map, #map-ui {
526         height: 100%;
527       }
528     }
529   }
530 }
531
532 .layers-ui,
533 .share-ui {
534   li:last-child {
535     margin-bottom: 0;
536   }
537 }
538
539 .layers-ui {
540   .base-layers {
541     .leaflet-container {
542       width: 100%;
543       height: 50px;
544       cursor: pointer;
545     }
546
547     li  {
548       overflow: hidden;
549       border-radius: 3px;
550       border: 2px solid #fff;
551       margin-bottom: 8px;
552       position: relative;
553       transition: border-color 0.08s ease-in;
554
555       label {
556         position: absolute;
557         top: 0;
558         left: 0;
559         padding: 2px 6px;
560         border-bottom-right-radius: 3px;
561         cursor: pointer;
562         font-weight: 600;
563         font-size: 16px;
564         text-stroke: 2px #fff;
565         background: rgba(255,255,255,.9);
566         z-index: 1000;
567         input[type="radio"] {
568           display: none;
569         }
570       }
571
572       &.active { border-color: darken($green, 10%); }
573       &:hover {
574         border-color: $grey;
575         &.active { border-color: darken($green, 20%); }
576       }
577     }
578   }
579
580   .overlay-layers {
581     p {
582       font-size: 13px;
583       margin-bottom: 8px;
584     }
585     li.disabled { color: $darkgrey; }
586   }
587 }
588
589 .share-ui {
590   .share-tab {
591     display: none;
592   }
593
594   .share-link {
595     input[type=text],
596     textarea {
597       width: 100%;
598       font-family: monospace;
599       font-size: small;
600       line-height: 1.3;
601     }
602   }
603
604   .share-image {
605     label {
606       margin-right: 10px;
607     }
608   }
609
610   #embed_html {
611     resize: vertical;
612   }
613
614   #mapnik_scale {
615     width: 100px;
616   }
617 }
618
619 .leaflet-top {
620   top: $lineheight/2 !important;
621   .leaflet-control {
622     margin-right: 0px !important;
623     margin-top: 0px !important;
624   }
625 }
626
627 .leaflet-popup-scrolled {
628   padding-right: $lineheight;
629   border-bottom: 0px !important;
630   border-top: 0px !important;
631 }
632
633 .leaflet-popup-content-wrapper {
634   border-radius: 4px !important;
635 }
636
637 /* Rules for attribution text under the main map shown on printouts */
638
639 #attribution {
640   display: none;
641
642   table {
643     width: 100%
644   }
645 }
646
647 .attribution_license,
648 .attribution_project {
649   text-align: left;
650 }
651
652 .attribution_notice {
653   text-align: center;
654 }
655
656 .donate-attr { color: darken($green, 10%) !important; }
657
658 /* Rules for the sidebar */
659
660 .sidebar_heading {
661   position: relative;
662   padding: $lineheight/2 $lineheight;
663   // background: $offwhite;
664   // border-bottom: 1px solid $grey;
665 }
666
667 #browse_status {
668   input {
669     display: block;
670     margin-left: auto;
671     margin-right: auto;
672   }
673
674   > div {
675    padding: $spacer;
676   }
677 }
678
679 /* Temporary label size override until we remove site-wide font customisation */
680
681 form {
682   label {
683     font-size: 16px;
684   }
685 }
686
687 /* Stop bootstrap 5 from floating legends when they don't need to be */
688 legend {
689   float: none;
690 }
691
692 /* Override the text colour for primary and secondary buttons, to match our
693    bootstrap 4 colours. Note this has accessibility issues, which is why
694    bootstrap 5 calculates black as the appropriate colour, and we should
695    reconsider our colours at some point with that in mind. */
696
697 .btn-primary {
698   @include button-variant($primary, $primary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
699 }
700
701 .btn-secondary {
702   @include button-variant($secondary, $secondary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
703 }
704
705 .btn-outline-secondary {
706   @include button-outline-variant($secondary, $color-hover: $white, $active-color: $white);
707 }
708
709 /* Rules for the search and direction forms */
710
711 header .search_forms,
712 .directions_form {
713   display: none;
714 }
715
716 /* Rules for the map key which appears in the popout sidebar */
717
718 #mapkey {
719  .mapkey-table-key img {
720     display: block;
721     margin-left: auto;
722     margin-right: auto;
723   }
724 }
725
726 /* Rules for search sidebar */
727
728 #sidebar .search_results_entry {
729   ul li {
730     cursor: pointer;
731     &.selected { background: $list-highlight; }
732   }
733
734   .search_more .loader {
735     display: none;
736   }
737 }
738
739 .search_results_error {
740   color: #f00;
741   padding: 10px 20px;
742 }
743
744 /* Rules for routing */
745
746 div.direction {
747   background-image: image-url('routing-sprite.png');
748   width: 20px;
749   height: 20px;
750   background-repeat: no-repeat;
751 }
752 @for $i from 0 through 25 {
753 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
754 }
755
756 td.instruction, td.distance {
757     padding-top: $lineheight/5;
758     padding-bottom: $lineheight/5;
759     border-bottom: 1px solid $grey;
760 }
761 td.distance {
762     color: $darkgrey;
763     text-align: right;
764     font-size: x-small;
765 }
766 tr.turn {
767     cursor: pointer;
768 }
769 tr.turn:hover {
770     background: $list-highlight;
771 }
772
773 .routing_marker { width: 15px; cursor: move; }
774
775 .browse_status {
776   display: none;
777 }
778
779 /* Rules for the history sidebar */
780
781 #sidebar .changesets {
782   li {
783     &.selected { background: $list-highlight; }
784     /* color is derived from changeset bbox fillColor in history.js */
785
786     a.stretched-link > span, a:not(.stretched-link), [title] {
787       position: relative;
788       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
789     }
790   }
791
792   .comments {
793     color: $darkgrey;
794   }
795
796   .comments-0 {
797     opacity: 0.5;
798   }
799
800   .changeset_more .loader {
801     display: none;
802     width: 100%;
803   }
804 }
805
806 /* Rules for the browse sidebar */
807
808 #sidebar_content {
809   .browse-section {
810     padding-bottom: $spacer;
811     margin-bottom: $spacer;
812     border-bottom: 1px solid $grey;
813
814     h4:first-child {
815       word-wrap: break-word;
816     }
817   }
818
819   .browse-section:last-of-type {
820     border-bottom: none;
821   }
822
823   .browse-tag-list {
824     background-color: $offwhite;
825     table-layout: fixed;
826     border-collapse: separate;
827     border-spacing: 0;
828     width: 100%;
829     margin-bottom: $spacer;
830
831     th, td {
832       border-bottom: 1px solid $grey;
833     }
834
835     tr:last-child th, tr:last-child td {
836       border-bottom: 0;
837     }
838
839     .browse-tag-k,
840     .browse-tag-v {
841       width: 50%;
842       padding: 6px 10px;
843       word-wrap: break-word;
844       white-space: pre-wrap;
845     }
846
847     .browse-tag-k {
848       font-weight: 500;
849       background-color: $offwhite;
850     }
851
852     .browse-tag-v {
853       border-left: 1px solid $grey;
854       background-color: #fff;
855     }
856
857     .colour-preview-box {
858       float: right;
859       width: 14px;
860       height: 14px;
861       margin: 4px 0px;
862       border: 1px solid rgba(0, 0, 0, .1);
863       // add color via inline css on element: background-color: <tag value>;
864     }
865   }
866
867   .note-comments li, .changeset-comments li {
868     margin: $lineheight/2 0;
869
870     p {
871       margin: 10px 6px 0 6px;
872       line-height: 1.5;
873     }
874   }
875
876   .subscribe-buttons input {
877     font-size: 90%;
878     line-height: 15px;
879     min-height: 20px;
880   }
881
882   span.action-button:hover {
883     cursor: pointer;
884     text-decoration: underline;
885   }
886
887   .note-description {
888     overflow: hidden;
889     margin: 0 0 10px 10px;
890   }
891
892   .query-results {
893     display: none;
894
895     ul {
896       li {
897         &.query-result {
898           cursor: pointer;
899         }
900
901         &.selected {
902           background: $list-highlight;
903         }
904       }
905     }
906   }
907 }
908
909 /* Bootstrap buttons don't have any vertical margin, so
910    they touch when adjacent buttons wrap onto a new line
911    e.g. wide form buttons on a narrow sidebar */
912
913 .btn-wrapper {
914   > .btn {
915     margin-bottom: $spacer * 0.25;
916   }
917 }
918
919 /* Rules for export sidebar */
920
921 .export_form {
922   .export_area_inputs,
923   .export_button {
924     text-align: center;
925   }
926
927   .export_area_inputs {
928     margin-bottom: $spacer;
929     input[type="text"] {
930       width: 100px;
931       text-align: center;
932     }
933   }
934
935   .export_boxy {
936     background: $lightgrey;
937
938     #maxlat { margin-top: -1px; }
939     #minlon {
940       float: left;
941       /* no-r2 */ margin-left: -1px;
942     }
943     #maxlon {
944       float: right;
945       /* no-r2 */ margin-right: -1px;
946     }
947     #minlat { margin-bottom: -1px; }
948   }
949
950   .export_bound {
951     margin: $lineheight/4;
952   }
953
954   dl {
955     padding-left: $lineheight/2;
956     dd {
957       margin-left: 0;
958       margin-bottom: 10px;
959     }
960   }
961 }
962
963 /* Rules for edit pages */
964
965 .site-edit {
966   #content {
967     position: absolute;
968     top: $headerHeight;
969     bottom: 0;
970     width: 100%;
971   }
972
973   #map {
974     height: 100%;
975     overflow: hidden;
976   }
977 }
978
979 /* Rules for non-map content pages */
980
981 .content-heading {
982   background: $lightgrey;
983 }
984
985 .content-inner {
986   position: relative;
987   max-width: 960px;
988   margin: auto;
989   padding: $lineheight;
990 }
991
992 /* Overrides for pages that use new layout conventions */
993
994 .header-illustration {
995   background-position: 0 0;
996   background-repeat: no-repeat;
997   position: relative;
998   min-height: 200px;
999   width: 100%;
1000   left: 0;
1001   bottom: 0;
1002
1003   &.new-user-main {
1004     background-image: image-url("sign-up-illustration.png");
1005   }
1006
1007   &.confirm-main {
1008     background-image: image-url("confirm-illustration.png");
1009   }
1010
1011   &.new-user-terms {
1012     background-image: image-url("terms-illustration.png");
1013   }
1014
1015   &.new-user-arm {
1016     height: 110px;
1017     width: 130px;
1018     left: 280px;
1019     top: 180px;
1020     background-image: image-url("sign-up-illustration-arm.png");
1021     position: absolute;
1022     z-index: 100;
1023     pointer-events: none;
1024   }
1025 }
1026
1027 [dir=rtl] .header-illustration {
1028   transform: scaleX(-1);
1029
1030   h1 {
1031     transform: scaleX(-1);
1032   }
1033 }
1034
1035 #content.maximised {
1036   top: 0;
1037   left: 0;
1038   right: 0;
1039   bottom: 0;
1040   border: 0;
1041   z-index: 2000;
1042 }
1043
1044 /* Rules for small maps in content areas */
1045
1046 .content_map {
1047   height: 200px;
1048   margin-bottom: $lineheight;
1049 }
1050
1051 @include media-breakpoint-up(md) {
1052   .content_map {
1053     height: 400px;
1054   }
1055 }
1056
1057 /* Rules for the user map */
1058
1059 .content_map .leaflet-popup-content {
1060   margin: $lineheight/2;
1061   min-height: 50px;
1062 }
1063
1064 /* Rules for user popups on maps */
1065
1066 .user_popup {
1067   min-width: 200px;
1068   p {
1069     padding: 0 0 5px 0;
1070     margin: 0 0 0 60px;
1071     font-size: 12px;
1072   }
1073 }
1074
1075 /* Rules for the user list */
1076
1077 #user_list {
1078   width: 100%;
1079 }
1080
1081 /* Rules for the diary list page */
1082
1083 .diary_post {
1084   position: relative;
1085   padding-top: $lineheight;
1086   padding-bottom: $lineheight/2;
1087   border-top: 1px solid $grey;
1088
1089   &.deleted {
1090     background-color: #fee;
1091   }
1092 }
1093
1094 /* Rules for the diary entry page */
1095
1096 .diary_entries {
1097   #map {
1098     height: 400px;
1099     display: none;
1100     margin-bottom: $lineheight;
1101   }
1102   .comments {
1103     max-width: 740px;
1104   }
1105   .diary-comment {
1106     border-top: 1px dashed $grey;
1107     padding-top: $lineheight/2;
1108     padding-bottom: $lineheight/2;
1109     &:first-child {
1110       margin-top: $lineheight/2;
1111       padding-top: $lineheight;
1112       border-top: 1px solid $grey;
1113     }
1114     &.deleted {
1115       background-color: #fee;
1116     }
1117     p {
1118       margin-bottom: $lineheight/2;
1119     }
1120     .comment-heading {
1121       margin-bottom: 0;
1122       margin-top: 0;
1123     }
1124   }
1125 }
1126
1127 /* Rules for the log in page */
1128
1129 #login_auth_buttons {
1130   margin-bottom: 0;
1131
1132   li {
1133     float: left;
1134     padding: $lineheight/4 $lineheight/2;
1135   }
1136 }
1137
1138 /* Rules for the account confirmation page */
1139
1140 .users-terms {
1141   .legale {
1142     padding: $lineheight;
1143     margin-bottom: $lineheight;
1144     overflow: auto;
1145     height: 20em;
1146
1147     li {
1148       list-style: inherit;
1149     }
1150
1151     ol ol {
1152       list-style-type: lower-alpha;
1153     }
1154   }
1155 }
1156
1157 /* Rules for the account settings page */
1158
1159 #accountForm .user_image {
1160   margin-bottom: 0;
1161 }
1162
1163 #accountForm #user_image {
1164   margin-left: 20px;
1165 }
1166
1167 #accountForm ul.accountImage-options {
1168   margin-left: 120px;
1169 }
1170
1171 .nohome .location {
1172   display: none;
1173 }
1174
1175 #homerow .message {
1176   display: none;
1177 }
1178
1179 .nohome .message {
1180   display: inline !important;
1181 }
1182
1183 /* Rules for the oauth authorization page */
1184
1185 .oauth-authorize ul {
1186   list-style: none;
1187 }
1188
1189 /* Rules for messages pages */
1190
1191 .messages {
1192   button[type="submit"] {
1193     margin: auto;
1194     white-space: nowrap;
1195   }
1196
1197   .inbox-row {
1198     background: $offwhite;
1199   }
1200
1201   .inbox-row-unread {
1202     background: #CBEEA7;
1203   }
1204
1205   .right {
1206     float: right;
1207   }
1208 }
1209
1210 .inbox-row .inbox-mark-read {
1211   display: none;
1212 }
1213
1214 .info-line {
1215   margin-bottom: $lineheight;
1216   padding: $lineheight/4 0px 4px 0px;
1217   border-bottom: 1px solid $grey;
1218
1219   form, form div {
1220     display: inline;
1221   }
1222 }
1223
1224 .info-line .user_thumbnail_tiny {
1225   vertical-align: middle;
1226 }
1227
1228 .inbox-sent {
1229   white-space: nowrap;
1230 }
1231
1232 .inbox-mark-unread,
1233 .inbox-mark-read,
1234 .inbox-delete {
1235   width: 1%;
1236 }
1237
1238 .inbox-row-unread .inbox-mark-unread {
1239   display: none;
1240 }
1241
1242 /* Rules for highlighting fields with rails validation errors */
1243
1244 .formError {
1245   display: inline-block;
1246   padding: 5px 10px;
1247   margin-top: 5px;
1248   border-radius: 4px;
1249   font-size: 12px;
1250   color: #fff;
1251   background-color: #ff7070;
1252 }
1253
1254 /* Rules for rails validation error boxes */
1255
1256 #errorExplanation {
1257   width: 400px;
1258   border: 2px solid #ff7070;
1259   padding: 0 $lineheight/2;
1260   margin-bottom: $lineheight;
1261   background-color: #f0f0f0;
1262
1263   h2 {
1264     margin: 0 -10px 10px -10px;
1265     padding: $lineheight/4 $lineheight/4 $lineheight/4 15px;
1266     font-weight: bold;
1267     font-size: 12px;
1268     background-color: #c00;
1269     color: #fff;
1270     text-align: left;
1271   }
1272
1273   p {
1274     color: #333;
1275     margin-bottom: 0px;
1276     padding: $lineheight/4;
1277   }
1278 }
1279
1280 .search_form {
1281   background-color: $lightgrey;
1282
1283   .describe_location {
1284     top: 6px;
1285     right: 6px;
1286     font-size: 10px;
1287     color: $blue;
1288   }
1289 }
1290
1291 .directions_form {
1292   background-color: $lightgrey;
1293 }
1294
1295 /* Rules for user images */
1296
1297 img.user_image {
1298   max-width: 100px;
1299   max-height: 100px;
1300 }
1301
1302 img.user_thumbnail {
1303   max-width: 50px;
1304   max-height: 50px;
1305 }
1306
1307 img.user_thumbnail_tiny {
1308   width: auto;
1309   height: auto;
1310   max-width: 25px;
1311   max-height: 25px;
1312 }
1313
1314 /* Rules for geo microformats */
1315
1316 abbr.geo {
1317   border-bottom: none;
1318 }
1319
1320 /* General styles for action lists / subnavs */
1321
1322
1323 nav.secondary-actions {
1324   margin-left: -11px;
1325   overflow: hidden;
1326   > ul {
1327     display: flex;
1328     flex-direction: row;
1329     flex-wrap: wrap;
1330     margin-bottom: 0;
1331     margin-left: -1px;
1332     padding: 0;
1333     > li {
1334       flex-basis: auto;
1335       list-style: none;
1336       border-left: 1px solid $grey;
1337       padding-left: $lineheight/2;
1338       margin-right: $lineheight/2;
1339       margin-bottom: $lineheight/8;
1340     }
1341   }
1342 }
1343
1344 div.secondary-actions {
1345   padding: 10px;
1346   text-align: center;
1347 }
1348
1349 /* Create a single-line dl */
1350
1351 dl.dl-inline {
1352   dt, dd {
1353     display: inline-block;
1354   }
1355   dd {
1356     margin-right: 1em;
1357   }
1358 }
1359
1360 /* Rules for OpenID logo */
1361
1362 .openid_logo {
1363   vertical-align: text-bottom;
1364   border: 0;
1365 }
1366
1367 /* Rules for rich text */
1368
1369 .richtext,
1370 .prose {
1371   code {
1372     background: $lightgrey;
1373     padding: 2px 3px;
1374   }
1375
1376   pre {
1377     background: $lightgrey;
1378     padding: 2px 3px;
1379     white-space: pre-wrap;
1380
1381     code {
1382       padding: 0;
1383     }
1384   }
1385
1386   img {
1387     padding: $lineheight;
1388     background-color: $offwhite;
1389     display: block;
1390     max-width: 100%;
1391     margin: auto;
1392   }
1393
1394   blockquote {
1395     border-left: $lineheight solid $offwhite;
1396     padding-left: $lineheight;
1397     margin: 0;
1398     color: $darkgrey;
1399   }
1400 }
1401
1402 /* Rules for the user notes list */
1403
1404 .note_list {
1405   tr.creator {
1406     background-color: $offwhite;
1407   }
1408 }
1409
1410 /* Rules for the iD editor */
1411
1412 .id-embed {
1413   width: 100%;
1414   height: 100%;
1415 }
1416
1417 /* Rules for the "Welcome" page */
1418 .site-welcome, .site-fixthemap {
1419   .sprite {
1420     background-image: image-url("welcome-sprite.png");
1421     background-size: 500px 250px;
1422     display: block;
1423   }
1424
1425   .sprite.small {
1426     width: 50px;
1427     height: 50px;
1428   }
1429
1430   .sprite.x {
1431     /* no-r2 */ background-position: -50px 0;
1432   }
1433
1434   .sprite.term {
1435     margin-right: 10px;
1436     vertical-align: middle;
1437   }
1438
1439   .sprite.node {
1440     /* no-r2 */ background-position: -100px 0;
1441   }
1442
1443   .sprite.way {
1444     /* no-r2 */ background-position: -150px 0;
1445   }
1446
1447   .sprite.tag {
1448     /* no-r2 */ background-position: -200px 0;
1449   }
1450
1451   .sprite.editor {
1452     /* no-r2 */ background-position: -250px 0;
1453   }
1454
1455   .sprite.question {
1456     /* no-r2 */ background-position: -300px 0;
1457   }
1458
1459   .sprite.rules {
1460     /* no-r2 */ background-position: -350px 0;
1461   }
1462
1463   .icon.note {
1464     background-color: #333;
1465     border-radius: 4px;
1466   }
1467 }
1468
1469 .site-about #content {
1470   background-color: $lightgrey;
1471
1472   .content-inner {
1473     max-width: 760px;
1474   }
1475
1476   .attr {
1477     margin-top: -20px;
1478
1479     h1 {
1480       span {
1481         color: $vibrant-green;
1482       }
1483     }
1484
1485     .user-image {
1486       height: 150px;
1487       background-position: 0 50%;
1488       background-repeat: no-repeat;
1489       background-image: image-url('about/osm.png');
1490       background-size: cover;
1491       background-color: $vibrant-green;
1492     }
1493
1494     .byosm {
1495       background: $vibrant-green;
1496     }
1497
1498     .byosm span {
1499       display: inline-block;
1500       width: 1em;
1501       margin-left: -1em;
1502     }
1503   }
1504
1505   .icon {
1506     width: 30px;
1507     height: 30px;
1508     background: 40px 40px image-url('about/sprite.png') no-repeat;
1509
1510     &.local {
1511       /* no-r2 */
1512       background-position: 0px 0px;
1513     }
1514     &.community {
1515       /* no-r2 */
1516       background-position: 0px -40px;
1517     }
1518     &.open {
1519       /* no-r2 */
1520       background-position: 0px -80px;
1521     }
1522     &.partners {
1523       /* no-r2 */
1524       background-position: 0px -120px;
1525     }
1526     &.infringement {
1527       /* no-r2 */
1528       background-position: 0px -160px;
1529     }
1530     &.legal {
1531       /* no-r2 */
1532       background-position: -45px -160px;
1533     }
1534   }
1535 }
1536
1537 @import 'browse';