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