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