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