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