]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Remove more reset styles that are handled by bootstrap
[rails.git] / app / assets / stylesheets / common.scss
1 @import "parameters";
2 @import "bootstrap-custom";
3
4 /* Styles common to large and small screens */
5
6 /* Minimal CSS reset */
7
8 html, body {
9   margin: 0;
10   padding: 0;
11   border: 0;
12 }
13
14 table {
15   border-collapse: collapse;
16   border-spacing: 0;
17 }
18
19 .fillL { background-color: white; }
20
21 /* Default rules for the body of every page */
22
23 body {
24   font-family: 'Helvetica Neue',Arial,sans-serif;
25   font-size: $typeheight;
26   line-height: 1.6666;
27   color: #222;
28   background-color: #fff;
29   margin: 0px;
30   padding: 0px;
31   text-align: left;
32   height: 100%;
33 }
34
35 p > img {
36   width: auto;
37   max-width: 100%;
38 }
39
40 small, aside {
41   font-size: 12px;
42 }
43
44 #container { position: relative; }
45
46 .column-1 {
47   width: 50%;
48   margin: 0 0 $lineheight/2 0;
49 }
50
51 .small_icon {
52   vertical-align: middle;
53   margin-right: $lineheight/4;
54 }
55
56 .red { color: $red; }
57
58 .piwik { border: 0; }
59
60 [dir=rtl] { /* no-r2 */ text-align: right; }
61
62 [dir=ltr] { /* no-r2 */ text-align: left; }
63
64 /* Rules for icons */
65
66 .icon {
67   display: inline-block;
68   vertical-align: top;
69   width: 20px;
70   height: 20px;
71   background: transparent image-url("sprite.png") no-repeat 0 0;
72   background-image: image-url("sprite.svg");
73   text-indent: -9999px;
74   overflow: hidden;
75 }
76
77 .icon.search      { /* no-r2 */ background-position: 0 0; }
78 .icon.donate      { /* no-r2 */ background-position: -20px 0; }
79 .icon.zoomin      { /* no-r2 */ background-position: -40px 0; }
80 .icon.zoomout     { /* no-r2 */ background-position: -60px 0; }
81 .icon.geolocate   { /* no-r2 */ background-position: -80px 0; }
82 .active .icon.geolocate   { /* no-r2 */ background-position: -80px -20px; }
83 .icon.layers      { /* no-r2 */ background-position: -100px 0; }
84 .icon.key         { /* no-r2 */ background-position: -120px 0; }
85 .icon.share       { /* no-r2 */ background-position: -140px 0; }
86 .icon.clipboard   { /* no-r2 */ background-position: -160px 0; }
87 .icon.link        { /* no-r2 */ background-position: -180px 0; }
88 .icon.close       { /* no-r2 */ background-position: -200px 0; }
89 .close-wrap:hover .icon.close,
90 .icon.close:hover { /* no-r2 */ background-position: -200px -20px; }
91 .icon.check       { /* no-r2 */ background-position: -220px 0; }
92 .icon.note        { /* no-r2 */ background-position: -240px 0; }
93 .icon.note.grey   { /* no-r2 */ background-position: -240px -20px; }
94 .icon.query       { /* no-r2 */ background-position: -260px 0; }
95
96 /* Rules for links */
97
98 a {
99   color: #24d;
100   text-decoration: none;
101   -webkit-appearance: none;
102   outline: 0;
103   &:hover {
104     text-decoration: underline;
105   }
106 }
107
108 /* General styles for tables */
109
110 table {
111   width: 100%;
112   margin-bottom: $lineheight;
113   th, td {
114     text-align: left;
115     padding: $lineheight/4;
116     line-height: $lineheight;
117   }
118   th {
119     font-weight: 600;
120     vertical-align: top;
121   }
122   td {
123     vertical-align: middle;
124   }
125 }
126
127 /* Utility for de-emphasizing content */
128
129 .deemphasize {
130   color: $darkgrey;
131   a {
132     color: $blue;
133   }
134 }
135
136 /* Rules for the header */
137
138 #menu-icon {
139   display: none !important;
140   float: right;
141   background: image-url("menu-icon.png") no-repeat;
142   background-size: 30px 30px;
143   display: block;
144   width: 30px;
145   height: 30px;
146   margin: 14px 10px 0 0;
147   opacity: 0.6;
148 }
149
150 header {
151   height: $headerHeight;
152   position: relative;
153   z-index: 1001;
154   font-size: 14px;
155
156   h1, nav, nav > ul, nav > ul > li, .dropdown {
157     display: inline-block;
158   }
159
160   > * {
161     height: 100%;
162     padding: $lineheight/2;
163   }
164
165   h1, nav.primary {
166     float: left;
167   }
168
169   a, a:hover {
170     text-decoration: none;
171   }
172
173   img.logo {
174     width: 30px;
175     height: 30px;
176     margin-top: -2px;
177     vertical-align: middle;
178   }
179
180   h1 {
181     font-size: 18px;
182     font-weight: 600;
183     line-height: 1.2;
184     margin: 0;
185     padding-top: 15px;
186
187     a {
188       color: #000;
189     }
190
191     a:hover {
192       color: #000;
193     }
194   }
195 }
196
197 nav.primary {
198   > ul {
199     padding: 0;
200     $border: 1px solid $green;
201
202     border: $border;
203     border-radius: $border-radius;
204
205     > li {
206       border-right: $border;
207       float: left;
208       &:last-child {
209         border-right: 0;
210       }
211       > a:hover { background: lighten($green, 30%); }
212       &.current > a:hover { background: $green; }
213       &.disabled > a:hover { background: lighten($green, 38%); }
214       &.dropdown {
215         > a.tab { border-right: 1px solid lighten($green, 30%); }
216         &.current > a.tab { border-right: 1px solid lighten($green, 10%); }
217       }
218     }
219   }
220
221   a.tab,
222   .dropdown-toggle {
223     display: inline-block;
224     font-weight: 500;
225     color: $green;
226     padding: 5px 15px;
227   }
228
229   .dropdown-toggle {
230     padding: 5px 6px;
231   }
232
233   .caret {
234     border-top-color: $green;
235     margin-top: 10px;
236   }
237
238   .disabled a {
239     color: $grey;
240     cursor: default;
241
242     .caret {
243       border-top-color: $grey;
244     }
245   }
246
247   > ul li.current {
248     background-color: $green;
249
250     .tab {
251       color: #fff;
252     }
253
254     .caret {
255       border-top-color: #fff;
256     }
257   }
258 }
259
260 nav.secondary {
261   position: absolute;
262   right: 0;
263
264   > ul {
265     vertical-align: middle;
266     margin: 0;
267     padding: 0;
268
269     a, .dropdown-toggle {
270       display: inline-block;
271       text-decoration: none;
272       color: $darkgrey;
273       padding: 5px;
274
275       &:hover { color: darken($darkgrey, 25%); }
276     }
277   }
278
279   > ul li.current a {
280     color: darken($darkgrey, 25%);
281   }
282
283   .user-menu {
284     $border: 1px solid $grey;
285     border: $border;
286     border-radius: $border-radius;
287     margin-left: 10px;
288     padding: 0;
289
290     > li {
291       border-right: $border;
292       float: left;
293       &:last-child {
294         border-right: 0;
295
296         > a {
297           border-radius: 0 $border-radius $border-radius 0;
298         }
299       }
300       &:first-child > a { border-radius: $border-radius 0 0 $border-radius; }
301       &:hover a { background: lighten($darkgrey, 30%); }
302     }
303
304     a {
305       padding: 5px 15px;
306
307     }
308
309     &.logged-in > a {
310       padding: 0;
311       > .user-button {
312         line-height: 1.8;
313         padding: 5px 10px 3px 6px;
314         display: inline-block;
315         color: $darkgrey;
316       }
317       &:hover > .user-button { color: darken($darkgrey, 5%); }
318     }
319   }
320
321   .caret {
322     border-top-color: $grey;
323     margin-top: 9px;
324   }
325
326   img.user_thumbnail_tiny {
327     border: 0;
328     vertical-align: top;
329     margin-top: 0px;
330     margin: 4px 0 0 4px;
331     border-radius: 2px;
332   }
333
334   #inboxanchor {
335     display: inline-block;
336     vertical-align: top;
337     height: 25px;
338     margin: 3px 0 3px 3px;
339     background-color: lighten($grey, 10%);
340     line-height: 20px;
341     border-radius: 2;
342   }
343
344   .dropdown-menu {
345     left: auto;
346     right: -1px;
347     border-radius: 3px 0 3px 3px;
348
349     .count-number {
350       float: right;
351       padding: 0 5px;
352       margin: 0;
353     }
354   }
355 }
356
357 #compact-secondary-nav {
358   display: none;
359   ul li a {
360     width: 100%;
361     color: #333;
362     &:hover { color: #fff; }
363   }
364 }
365
366 body.compact {
367   #compact-secondary-nav {
368     display: inline-block;
369   }
370   .compact-hide {
371     display: none;
372   }
373 }
374
375 /* Utility for styling notification numbers */
376
377 .count-number {
378   padding: 2px $lineheight/4;
379   border-radius: 2px;
380   background: lighten($green, 30%);
381   margin: 0 2px;
382   font-size: 11px;
383   color: #333;
384 }
385
386 /* Rules for the message shown in place of the map when javascript is disabled */
387
388 #noscript {
389   z-index: 20000000;
390   margin-left: 400px;
391   margin-top: 50px;
392 }
393
394 /* Rules for Leaflet maps */
395
396 .leaflet-control .control-button {
397   display: block;
398   height: 40px;
399   width: 40px;
400   background-color: #333;
401   background-color: rgba(0,0,0,.6);
402   border-radius: 4px 0 0 4px;
403   margin-bottom: 10px;
404   outline: none;
405
406   &:hover {
407     background-color: black;
408   }
409
410   &.disabled,
411   &.leaflet-disabled {
412     background-color: #333;
413     background-color: rgba(0,0,0,.5);
414     cursor: default;
415   }
416
417   &.active {
418     background-color: $vibrant-green;
419   }
420
421   .icon {
422     margin: 10px;
423   }
424 }
425
426 .leaflet-control .zoomin,
427 .control-layers .control-button {
428   margin-bottom: 0px;
429   border-radius: 4px 0 0 0;
430 }
431
432 .leaflet-control .zoomout,
433 .control-key .control-button {
434   margin-bottom: 0;
435   border-radius: 0;
436 }
437
438 .control-locate .control-button,
439 .control-share .control-button {
440   border-radius: 0 0 0 4px;
441 }
442
443 /* Rules for the sidebar and main map area */
444
445 .map-layout {
446   #content {
447     overflow: hidden;
448     position: absolute;
449     top: $headerHeight;
450     bottom: 0;
451     width: 100%;
452   }
453
454   #sidebar, #map {
455     position: relative;
456     height: 100%;
457     overflow-x: hidden;
458     overflow-y: auto;
459   }
460
461   #sidebar {
462     float: left;
463     width: $sidebarWidth;
464     background: #fff;
465
466     #sidebar_loader {
467       display: none;
468     }
469
470     > div {
471       position: relative;
472       float: left;
473       clear: both;
474       width: 100%;
475     }
476
477     h2 {
478       padding: $lineheight $lineheight $lineheight/2;
479       font-size: 1.5rem;
480     }
481
482     h3, h4 {
483       margin-top: $lineheight;
484       margin-bottom: $lineheight/2;
485       font-size: 1.25rem;
486     }
487
488     .close-wrap {
489       cursor: pointer;
490       position: absolute;
491       top: 0;
492       right: 0;
493       width: 60px;
494       height: 60px;
495
496       .icon.close {
497         pointer-events: none;
498         position: absolute;
499         right: 20px;
500         top: 20px;
501       }
502     }
503
504     .icon.close {
505       float: right;
506       cursor: pointer;
507     }
508
509     .flash {
510       padding: 15px;
511
512       picture {
513         margin-right: -25px;
514       }
515
516       div.message {
517         margin-left: 30px;
518       }
519     }
520   }
521
522   .overlay-sidebar #sidebar {
523     position: absolute;
524     z-index: 1000;
525     height: auto;
526     overflow: hidden;
527
528     #banner {
529       display: block;
530     }
531
532     .welcome {
533       display: none;
534
535       &.visible {
536         display: block;
537       }
538     }
539
540     #sidebar_content {
541       display: none;
542     }
543   }
544
545   .welcome {
546     display: none;
547     padding-bottom: 5px;
548
549     p {
550       padding: $lineheight/2 $lineheight $lineheight;
551       font-size: 110%;
552       font-weight: 300;
553     }
554
555     .button {
556       width: 50%;
557       float: left;
558       margin: 0;
559       border-radius: 0;
560       font-weight: normal;
561       padding: .6em;
562
563       &.learn-more {
564         border-right: 1px solid #fff;
565       }
566     }
567   }
568
569   #banner {
570     display: none;
571
572     img {
573       display: block;
574       width: $sidebarWidth;
575     }
576   }
577
578   #map {
579     height: 100%;
580     overflow: hidden;
581
582     &.query-active {
583       cursor: help;
584     }
585
586     &.query-disabled {
587       cursor: not-allowed;
588     }
589
590     .leaflet-marker-draggable {
591       cursor: move;
592     }
593   }
594
595   #map-ui {
596     display: none;
597     position: relative;
598     float: right;
599     width: 250px;
600     height: 100%;
601     background: white;
602     overflow: auto;
603
604     .section {
605       border-bottom: 1px solid $grey;
606       padding: 10px 20px;
607     }
608
609     a.close-button {
610       float: right;
611       padding:5px;
612       font-size:20px;
613       line-height:10px;
614       color:#222;
615       border:1px solid $grey;
616     }
617
618     .tooltip {
619       opacity: 1;
620       border: 1px solid $grey;
621       .tooltip-arrow {
622         border-top-color: $grey;
623       }
624     }
625   }
626 }
627
628 .layers-ui,
629 .share-ui {
630   li:last-child {
631     margin-bottom: 0;
632   }
633 }
634
635 .layers-ui {
636   .base-layers {
637     .leaflet-container {
638       width: 100%;
639       height: 50px;
640       cursor: pointer;
641     }
642
643     li  {
644       overflow: hidden;
645       border-radius: 3px;
646       border: 2px solid #fff;
647       margin-bottom: 8px;
648       position: relative;
649       transition: border-color 0.08s ease-in;
650
651       label {
652         position: absolute;
653         top: 0;
654         left: 0;
655         padding: 2px 6px;
656         border-bottom-right-radius: 3px;
657         cursor: pointer;
658         font-weight: 600;
659         font-size: 16px;
660         text-stroke: 2px #fff;
661         background: rgba(255,255,255,.9);
662         z-index: 1000;
663         input[type="radio"] {
664           display: none;
665         }
666       }
667
668       &.active { border-color: darken($green, 10%); }
669       &:hover {
670         border-color: $grey;
671         &.active { border-color: darken($green, 20%); }
672       }
673     }
674   }
675
676   .overlay-layers {
677     p {
678       font-size: 13px;
679       margin-bottom: 8px;
680     }
681     li.disabled { color: $darkgrey; }
682   }
683 }
684
685 .share-ui {
686   .share-tabs {
687     margin-bottom: 10px;
688
689     a {
690       color: #fff;
691       text-decoration: none;
692       background-color: $lightblue;
693       padding: 5px 10px;
694       border-right: 1px solid #fff;
695     }
696
697     a:first-child {
698       border-right: 1px solid #fff;
699       border-radius: 4px 0 0 4px;
700     }
701
702     a:last-child {
703       border-radius: 0 4px 4px 0;
704     }
705
706     a.active {
707       background-color: $blue;
708     }
709   }
710
711   .share-tab {
712     display: none;
713   }
714
715   .share-link {
716     input[type=text],
717     textarea {
718       width: 100%;
719       font-family: monospace;
720       font-size: small;
721       line-height: 1.3;
722     }
723   }
724
725   .share-image {
726     label {
727       margin-right: 10px;
728     }
729   }
730
731   #embed_html {
732     resize: vertical;
733   }
734
735   #mapnik_scale {
736     width: 100px;
737   }
738 }
739
740 .leaflet-top {
741   top: $lineheight/2 !important;
742   .leaflet-control {
743     margin-right: 0px !important;
744     margin-top: 0px !important;
745   }
746 }
747
748 .leaflet-popup-scrolled {
749   padding-right: $lineheight;
750   border-bottom: 0px !important;
751   border-top: 0px !important;
752 }
753
754 .leaflet-popup-content-wrapper {
755   border-radius: 4px !important;
756 }
757
758 /* Rules for attribution text under the main map shown on printouts */
759
760 #attribution {
761   display: none;
762
763   table {
764     width: 100%
765   }
766 }
767
768 .attribution_license,
769 .attribution_project {
770   text-align: left;
771 }
772
773 .attribution_notice {
774   text-align: center;
775 }
776
777 .donate-attr { color: darken($green, 10%) !important; }
778
779 /* Rules for the sidebar */
780
781 .sidebar_heading {
782   position: relative;
783   padding: $lineheight/2 $lineheight;
784   // background: $offwhite;
785   // border-bottom: 1px solid $grey;
786   > .close {
787     float: right;
788     margin-top: 2px;
789     cursor: pointer;
790   }
791 }
792
793 #browse_status {
794   p {
795     padding: $lineheight;
796   }
797
798   input {
799     display: block;
800     margin-left: auto;
801     margin-right: auto;
802   }
803 }
804
805 #sidebar {
806   #sidebar_loader,
807   .search_more {
808     width: 100%;
809     margin: $lineheight auto;
810   }
811
812   .loader,
813   .load_more {
814     text-align: center;
815     margin: auto;
816     width: 40px;
817     display: block;
818   }
819 }
820
821 /* Rules for the search and direction forms */
822
823 header .search_forms,
824 .directions_form {
825   display: none;
826 }
827
828 .search_form,
829 .directions_form {
830   position: relative;
831   padding: $lineheight/2;
832   background-color: $lightgrey;
833
834   .query_wrapper {
835     position: relative;
836     overflow: hidden;
837     border-radius: 2px 0 0 2px;
838   }
839
840   input[type=text] {
841     width: 100%;
842     height: 30px;
843     transition: 300ms linear;
844   }
845
846   input[type=text].overflow {
847     border-right: none;
848   }
849
850   input:focus {
851     outline: none;
852     box-shadow: 0px 0px 7px $vibrant-green;
853   }
854
855   input[type=submit].float {
856     float: right;
857     width: auto;
858     min-width: 0;
859     border-radius: 0 2px 2px 0;
860   }
861
862   input.error {
863     background-color: rgba($red, 0.4);
864   }
865
866   select {
867     /* this next line is to polyfill the vertical alignment of text within a select element,
868      * which is different between firefox and chrome. */
869     padding: 0.3em 0;
870   }
871
872   .query_options {
873     text-align: right;
874     font-size: 10px;
875     color: $blue;
876   }
877
878   .describe_location {
879     position: absolute;
880     top: 6px;
881     right: 6px;
882     font-size: 10px;
883     color: $blue;
884   }
885
886   .switch_link {
887     float: right;
888     width: auto;
889     min-width: 0;
890     margin-left: 6px;
891   }
892
893   img.button {
894     display: block;
895     width: 20px;
896     height: 20px;
897   }
898
899   span.force_width {
900     width: 100%;
901     padding-right: 25px;
902     display: block;
903   }
904
905   select.routing_engines {
906     min-height: 30px;
907     margin: 0px 0px 5px 25px;
908   }
909
910   input.routing_go {
911     min-width: 100px;
912     float: right;
913   }
914
915   div.header {
916     width: 100%;
917     height: 30px;
918   }
919
920   div.line {
921     width: 100%;
922     margin: 0px 0px 5px 0px;
923   }
924
925   div.loader_copy {
926     display: none;
927
928     img {
929       vertical-align: middle;
930     }
931   }
932
933   a.reverse_directions {
934     cursor: pointer;
935     margin: 0px 0px 5px 25px;
936   }
937 }
938
939 /* Rules for the map key which appears in the popout sidebar */
940
941 #mapkey {
942  .mapkey-table-key img {
943     display: block;
944     margin-left: auto;
945     margin-right: auto;
946   }
947   td {
948     padding: 0 $lineheight/4 $lineheight/4 $lineheight/4;
949   }
950 }
951
952 /* Rules for search sidebar */
953
954 #sidebar .search_results_entry {
955   ul {
956    padding: 0;
957   }
958
959   ul li {
960     border-bottom: $keyline;
961     cursor: pointer;
962     list-style-type: none;
963     &:first-child { border-top: $keyline; }
964     &.selected { background: $list-highlight; }
965   }
966
967   .search_more .loader {
968     display: none;
969     width: 100%;
970   }
971 }
972
973 .search_results_error {
974   color: #f00;
975   padding: 10px 20px;
976 }
977
978 /* Rules for routing */
979
980 #sidebar_content>table {
981     padding: 5px 20px 10px 15px;
982     width: 100%;
983     border-collapse: separate;
984 }
985
986 div.direction {
987   background-image: image-url('routing-sprite.png');
988   width: 20px;
989   height: 20px;
990   background-repeat: no-repeat;
991 }
992 @for $i from 0 through 25 {
993 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
994 }
995
996 p#routing_summary {
997     padding: 0 $lineheight $lineheight/4;
998 }
999
1000 td.instruction, td.distance {
1001     padding-top: $lineheight/5;
1002     padding-bottom: $lineheight/5;
1003     border-bottom: 1px solid $grey;
1004 }
1005 td.distance {
1006     color: $darkgrey;
1007     text-align: right;
1008     font-size: x-small;
1009 }
1010 tr.turn {
1011     cursor: pointer;
1012 }
1013 tr.turn:hover {
1014     background: $list-highlight;
1015 }
1016 .routing_engines, #route_from, #route_to { margin-left: 25px; }
1017 .routing_marker { width: 15px; position: absolute; cursor: move; }
1018
1019 /* Rules for entity history */
1020
1021 #sidebar_content {
1022   .browse_details {
1023     position: relative;
1024     border-bottom: $keyline;
1025   }
1026 }
1027
1028 .browse_status {
1029   display: none;
1030 }
1031
1032 /* Rules for the history sidebar */
1033
1034 #sidebar .changesets {
1035   li {
1036     cursor: pointer;
1037
1038     &.selected { background: $list-highlight; }
1039     /* color is derived from changeset bbox fillColor in history.js */
1040   }
1041
1042   .comments {
1043     float: right;
1044     color: $darkgrey;
1045   }
1046
1047   .comments-0 {
1048     opacity: 0.5;
1049   }
1050
1051   .changeset_more .loader {
1052     display: none;
1053     width: 100%;
1054   }
1055 }
1056
1057 /* Rules for the browse sidebar */
1058
1059 #sidebar_content {
1060   .browse-section {
1061     padding: $lineheight/2 $lineheight;
1062     border-bottom: 1px solid $grey;
1063
1064     h4:first-child {
1065       margin-top: 0;
1066       word-wrap: break-word;
1067     }
1068   }
1069
1070   .browse-section:last-of-type {
1071     border-bottom: none;
1072   }
1073
1074   .paginate {
1075     float: right;
1076     padding: 1px 6px;
1077     border: 1px solid $lightgrey;
1078     border-radius: 3px;
1079   }
1080
1081   .browse-field {
1082     margin-bottom: 10px;
1083
1084     h4 {
1085       padding: 5px 0 5px 10px;
1086       font-size: 12px;
1087       border: 1px solid $grey;
1088       border-radius: 4px 4px 0 0;
1089       background-color: $offwhite;
1090     }
1091
1092     p {
1093       padding: 7px 10px;
1094       font-size: 12px;
1095       background-color: #FFF;
1096       border: 1px solid $grey;
1097       border-top: 0;
1098       border-radius: 0 0 4px 4px;
1099     }
1100   }
1101
1102   .browse-tag-list {
1103     background-color: $offwhite;
1104     border: 1px solid $grey;
1105     border-radius: 3px;
1106     table-layout: fixed;
1107     border-collapse: separate;
1108
1109     th, td {
1110       border-bottom: 1px solid $grey;
1111     }
1112
1113     tr:last-child th, tr:last-child td {
1114       border-bottom: 0;
1115     }
1116
1117     .browse-tag-k,
1118     .browse-tag-v {
1119       width: 50%;
1120       padding: 6px 10px;
1121       word-wrap: break-word;
1122       white-space: pre-wrap;
1123     }
1124
1125     .browse-tag-k {
1126       font-weight: 500;
1127       background-color: $offwhite;
1128     }
1129
1130     .browse-tag-v {
1131       border-left: 1px solid $grey;
1132       background-color: #fff;
1133     }
1134
1135     .colour-preview-box {
1136       float: right;
1137       width: 14px;
1138       height: 14px;
1139       margin: 4px 0px;
1140       border: 1px solid rgba(0, 0, 0, .1);
1141       // add color via inline css on element: background-color: <tag value>;
1142     }
1143   }
1144
1145   .warning {
1146     margin: 0 0 $lineheight/2 0;
1147     padding: 0 $lineheight/2;
1148   }
1149
1150   .note-comments li, .changeset-comments li {
1151     margin: $lineheight/2 0;
1152
1153     p {
1154       margin: 10px 6px 0 6px;
1155       line-height: 1.5;
1156     }
1157   }
1158
1159   .comments-header {
1160     float: left;
1161   }
1162
1163   .subscribe-buttons {
1164     float: left;
1165     margin: 18px 10px 10px;
1166     min-width: 80px;
1167   }
1168
1169   .subscribe-buttons input {
1170     font-size: 90%;
1171     line-height: 15px;
1172     min-height: 20px;
1173   }
1174
1175   span.action-button:hover {
1176     cursor: pointer;
1177     text-decoration: underline;
1178   }
1179
1180   .note-description {
1181     overflow: hidden;
1182     margin: 0 0 10px 10px;
1183   }
1184
1185   .query-intro p {
1186     padding: $lineheight $lineheight $lineheight/2;
1187   }
1188
1189   .query-results {
1190     display: none;
1191     padding-bottom: $lineheight/2;
1192
1193     h3 {
1194       padding: 0 $lineheight;
1195     }
1196
1197     ul {
1198       li {
1199         &.query-result {
1200           cursor: pointer;
1201         }
1202
1203         &.selected {
1204           background: $list-highlight;
1205         }
1206       }
1207     }
1208   }
1209 }
1210
1211 /* Rules for export sidebar */
1212
1213 .export_form {
1214   padding: $lineheight;
1215
1216   .export_area_inputs,
1217   .export_button {
1218     text-align: center;
1219   }
1220
1221   .export_area_inputs {
1222     margin-bottom: $lineheight/2;
1223     input[type="text"] {
1224       width: 80px;
1225       text-align: center;
1226       margin-bottom: 5px;
1227     }
1228   }
1229
1230   .export_boxy {
1231     background: $lightgrey;
1232     border: 1px solid $grey;
1233     border-radius: 3px;
1234
1235     #maxlat { margin-top: -1px; }
1236     #minlon {
1237       float: left;
1238       /* no-r2 */ margin-left: -1px;
1239     }
1240     #maxlon {
1241       float: right;
1242       /* no-r2 */ margin-right: -1px;
1243     }
1244     #minlat { margin-bottom: 0; }
1245   }
1246
1247   .export_bound {
1248     margin: $lineheight/4;
1249   }
1250
1251   .export_button {
1252     margin-top: $lineheight;
1253     margin-bottom: $lineheight;
1254   }
1255
1256   dl {
1257     padding-left: $lineheight/2;
1258     dd {
1259       margin-left: 0;
1260       margin-bottom: 10px;
1261     }
1262   }
1263 }
1264
1265 /* Rules for the routing sidebar */
1266
1267 #sidebar_content {
1268   #routing_credit {
1269     text-align: center;
1270     padding: 0.5em;
1271   }
1272 }
1273
1274 /* Rules for edit pages */
1275
1276 .site-edit {
1277   #content {
1278     position: absolute;
1279     top: $headerHeight;
1280     bottom: 0;
1281     width: 100%;
1282   }
1283
1284   #map {
1285     height: 100%;
1286     overflow: hidden;
1287   }
1288 }
1289
1290 /* Rules for non-map content pages */
1291
1292 .content-heading {
1293   background: $lightgrey;
1294 }
1295
1296 .content-body {
1297   h1, h2, h3, p, ul, ol {
1298     margin-bottom: $lineheight;
1299   }
1300
1301   h1, h2, h3 {
1302     margin-top: $lineheight/2;
1303   }
1304 }
1305
1306 .content-inner {
1307   position: relative;
1308   max-width: 900px;
1309   margin: auto;
1310   padding: $lineheight;
1311 }
1312
1313 /* Overrides for pages that use new layout conventions */
1314
1315 .users-new,
1316 .users-create,
1317 .users-terms,
1318 .users-confirm {
1319   .content-heading .content-inner {
1320     height: 200px;
1321   }
1322 }
1323
1324 .header-illustration {
1325   background-position: 0 0;
1326   background-repeat: no-repeat;
1327   position: absolute;
1328   height: 200px;
1329   width: 100%;
1330   left: 0;
1331   bottom: 0;
1332
1333   &.new-user-main {
1334     background-image: image-url("sign-up-illustration.png");
1335   }
1336
1337   &.confirm-main {
1338     background-image: image-url("confirm-illustration.png");
1339   }
1340
1341   &.new-user-terms {
1342     background-image: image-url("terms-illustration.png");
1343   }
1344
1345   &.new-user-arm {
1346     height: 110px;
1347     width: 130px;
1348     left: 260px;
1349     top: 160px;
1350     background-image: image-url("sign-up-illustration-arm.png");
1351     z-index: 100;
1352   }
1353 }
1354
1355 [dir=rtl] .header-illustration {
1356   transform: scaleX(-1);
1357 }
1358
1359 #content.maximised {
1360   top: 0;
1361   left: 0;
1362   right: 0;
1363   bottom: 0;
1364   border: 0;
1365   z-index: 2000;
1366 }
1367
1368 /* Rules for small maps in content areas */
1369
1370 .content_map {
1371   position: relative;
1372   width: 45%;
1373   height: 400px;
1374   border: 1px solid $grey;
1375   margin-bottom: $lineheight;
1376   float: right;
1377 }
1378
1379 /* Rules for the trace list shown by the traces tab etc */
1380
1381 #trace_list {
1382   border-width: 0px;
1383   text-align: right;
1384
1385   .trace_summary {
1386     font-size: 12px;
1387     color: gray;
1388   }
1389 }
1390
1391 /* Rules for the new trace form */
1392
1393 #new_trace {
1394   input[type=text] {
1395     width: 50%;
1396     width: calc(100% - 150px);
1397     max-width: 500px;
1398   }
1399 }
1400
1401 /* Rules for the edit trace form */
1402
1403 .edit_trace {
1404   .standard-form-row p {
1405     margin-bottom: 0px;
1406   }
1407
1408   input[type=text] {
1409     width: 50%;
1410     width: calc(100% - 150px);
1411     max-width: 500px;
1412   }
1413 }
1414
1415 /* Rules for the user profile page */
1416
1417 #userinformation {
1418
1419   min-height: 100px;
1420   .userinformation-inner {
1421     float: left;
1422   }
1423   h2 {
1424     margin-top: 0;
1425   }
1426   .user-description {
1427     width: 100%;
1428     clear: both;
1429   }
1430   .deemphasize {
1431     margin: 0;
1432   }
1433 }
1434
1435 .admin-user-info small {
1436   margin-bottom: $lineheight/2;
1437   display: inline;
1438   margin-right: $lineheight;
1439 }
1440
1441 .activity-block {
1442   clear: left;
1443   border-bottom: 1px solid $grey;
1444   padding-bottom: $lineheight;
1445   float: left;
1446   h3 {
1447     margin-bottom: $lineheight/2;
1448   }
1449 }
1450
1451 .contact-activity {
1452   margin-top: $lineheight;
1453   width: 100%;
1454 }
1455
1456 .activity-details p {
1457   margin-left: 70px;
1458   margin-bottom: 0;
1459 }
1460
1461 .users-show {
1462   // Silly exception; remove when user page is redesigned.
1463   .content-inner {
1464     max-width: none;
1465   }
1466   p#no_home_location {
1467     margin: $lineheight;
1468   }
1469   .user_thumbnail {
1470     margin-top: $lineheight/4;
1471     float: left;
1472   }
1473 }
1474
1475 /* Rules for the user map */
1476
1477 .content_map .leaflet-popup-content {
1478   margin: $lineheight/2;
1479   min-height: 50px;
1480 }
1481
1482 /* Rules for user popups on maps */
1483
1484 .user_popup {
1485   min-width: 200px;
1486   p {
1487     padding: 0 0 5px 0;
1488     margin-top: 0 0 0 60px;
1489     font-size: 12px;
1490   }
1491   img.user_thumbnail {
1492     float: left;
1493     margin: 0 $lineheight/2 0 0;
1494   }
1495 }
1496
1497 /* Rules for the user list */
1498
1499 #user_list {
1500   width: 100%;
1501
1502   tr {
1503     vertical-align: middle;
1504   }
1505
1506   p {
1507     margin-top: 0px;
1508     margin-bottom: 0px;
1509   }
1510 }
1511
1512 #user_list_actions {
1513   float: right;
1514   margin-top: $lineheight/2;
1515 }
1516
1517 /* Rules for the diary list page */
1518
1519 .diary_post {
1520   position: relative;
1521   padding-top: $lineheight;
1522   padding-bottom: $lineheight/2;
1523   border-top: 1px solid $grey;
1524
1525   &:first-of-type {
1526     margin-top: $lineheight/2;
1527   }
1528
1529   &.deemphasize {
1530     background-color: #fee;
1531   }
1532
1533   .post_heading {
1534     margin-bottom: $lineheight;
1535
1536     h2 {
1537       margin-top: 0;
1538       margin-bottom: $lineheight/2;
1539     }
1540   }
1541
1542   img.user_thumbnail {
1543     float: left;
1544   }
1545
1546   small.deemphasize {
1547     float: left;
1548     display: block;
1549   }
1550 }
1551
1552 .pagination {
1553   padding-top: $lineheight;
1554 }
1555
1556 /* Rules for the diary entry page */
1557
1558 .diary_entries {
1559   #map {
1560     position: relative;
1561     width: 90%;
1562     height: 400px;
1563     border: 1px solid $grey;
1564     display: none;
1565     margin-bottom: $lineheight;
1566   }
1567   #newcomment {
1568     border-top: 1px solid $grey;
1569     padding-top: $lineheight;
1570     margin-top: $lineheight/2;
1571   }
1572   .comments {
1573     max-width: 740px;
1574   }
1575   .diary-comment {
1576     border-top: 1px dashed $grey;
1577     padding-top: $lineheight/2;
1578     padding-bottom: $lineheight/2;
1579     &:first-child {
1580       margin-top: $lineheight/2;
1581       padding-top: $lineheight;
1582       border-top: 1px solid $grey;
1583     }
1584     &.deemphasize {
1585       background-color: #fee;
1586     }
1587     p {
1588       margin-bottom: $lineheight/2;
1589     }
1590     .comment-heading {
1591       margin-bottom: 0;
1592       margin-top: 0;
1593     }
1594   }
1595 }
1596
1597 .diary_entries-show img.user_thumbnail {
1598   float: left;
1599 }
1600
1601
1602 .diary-subscribe-buttons {
1603   position:relative;
1604   top: -30px;
1605   left: 130px;
1606 }
1607
1608 /* Rules for the log in page */
1609
1610 #login_auth_buttons {
1611   margin-bottom: 0;
1612 }
1613
1614 #login_auth_buttons li {
1615   float: left;
1616   padding: $lineheight/4 $lineheight/2;
1617 }
1618
1619 /* Rules for the account confirmation page */
1620
1621 .users-terms {
1622   .legale {
1623     border: 1px solid $grey;
1624     padding: $lineheight;
1625     margin-bottom: $lineheight;
1626     overflow: auto;
1627     height: 20em;
1628
1629     li {
1630       list-style: inherit;
1631     }
1632
1633     ol ol {
1634       list-style-type: lower-alpha;
1635     }
1636   }
1637
1638   #decline {
1639     background: $lightblue;
1640     &:hover {
1641       background: darken($lightblue, $hovercolor);
1642     }
1643   }
1644 }
1645
1646 /* Rules for the account settings page */
1647
1648 #accountForm .user_map {
1649   position: relative;
1650   width: 500px;
1651   height: 400px;
1652   border: 1px solid $grey;
1653 }
1654
1655 #accountForm .user_image {
1656   margin-bottom: 0;
1657 }
1658
1659 #accountForm #user_image {
1660   margin-left: 20px;
1661 }
1662
1663 #accountForm ul.accountImage-options {
1664   margin-left: 120px;
1665 }
1666
1667 .nohome .location {
1668   display: none;
1669 }
1670
1671 #homerow .message {
1672   display: none;
1673 }
1674
1675 .nohome .message {
1676   display: inline !important;
1677 }
1678
1679 .content_map.settings_map {
1680   width: 50%;
1681   float: none;
1682 }
1683
1684 /* Rules for the oauth settings page */
1685
1686 .oauth_clients .buttons .oauth-edit {
1687   border-radius: 2px 0 0 2px;
1688 }
1689
1690 .oauth_clients .buttons .oauth-delete {
1691   border-radius: 0 2px 2px 0;
1692 }
1693
1694 /* Rules for the oauth authorization page */
1695
1696 .oauth-authorize ul {
1697   list-style: none;
1698 }
1699
1700 /* Rules for messages pages */
1701
1702 .messages {
1703   width: 100%;
1704   border: 1px solid $grey;
1705
1706   input[type="submit"] {
1707     margin: auto;
1708   }
1709   tbody tr {
1710     border-top: 1px solid $grey;
1711   }
1712
1713   .inbox-row {
1714     background: $offwhite;
1715   }
1716
1717   .inbox-row-unread {
1718     background:#CBEEA7;
1719   }
1720
1721   .right {
1722     float: right;
1723   }
1724
1725   tr td,
1726   tr th {
1727     padding: $lineheight/4;
1728   }
1729   p:last-child,
1730   h2:last-child,
1731   h3:last-child,
1732   ol:last-child,
1733   ul:last-child {
1734     margin-bottom:0;
1735   }
1736   tr td {
1737     height: 30px;
1738     border-right: 1px solid $lightgrey;
1739   }
1740 }
1741
1742 .inbox-row .inbox-mark-read {
1743   display: none;
1744 }
1745
1746 .info-line {
1747   margin-bottom: $lineheight;
1748   padding: $lineheight/4 0px 4px 0px;
1749   border-bottom: 1px solid $grey;
1750
1751   form, form div {
1752     display: inline;
1753   }
1754 }
1755
1756 .info-line .user_thumbnail_tiny {
1757   vertical-align: middle;
1758 }
1759
1760 .inbox-sent {
1761   white-space: nowrap;
1762 }
1763
1764 .inbox-mark-unread,
1765 .inbox-mark-read,
1766 .inbox-delete {
1767   width: 1%;
1768 }
1769
1770 .inbox-row-unread .inbox-mark-unread {
1771   display: none;
1772 }
1773
1774 .messages-show .message-buttons {
1775   margin-top: $lineheight;
1776   margin-bottom: $lineheight * 1.5;
1777   padding-top: $lineheight;
1778   border-top: 1px solid $lightgrey;
1779 }
1780
1781 .messages-show .buttons .mark-unread-button {
1782   border-radius: 0;
1783 }
1784
1785 /* Rules for "flash" notice boxes shown at the top of the content area */
1786
1787 .flash {
1788   padding: $lineheight;
1789
1790   &.error {
1791     background-color: #ff7070;
1792   }
1793
1794   &.warning {
1795     background-color: #ffe0cc;
1796   }
1797
1798   &.notice {
1799     background-color: #CBEEA7;
1800   }
1801
1802   div.message {
1803     display: inline-block;
1804     margin-left: $lineheight / 2;
1805     vertical-align: middle;
1806
1807     p {
1808       margin-top: $lineheight * 0.5;
1809       margin-bottom: $lineheight * 0.5;
1810
1811       &:first-child {
1812         margin-top: 0px;
1813       }
1814
1815       &:last-child {
1816         margin-bottom: 0px;
1817       }
1818     }
1819   }
1820 }
1821
1822 /* Rules for highlighting fields with rails validation errors */
1823
1824 .formError {
1825   display: inline-block;
1826   padding: 5px 10px;
1827   margin-top: 5px;
1828   border-radius: 4px;
1829   font-size: 12px;
1830   color: #fff;
1831   background-color: #ff7070;
1832 }
1833
1834 /* Rules for rails validation error boxes */
1835
1836 #errorExplanation {
1837   width: 400px;
1838   border: 2px solid #ff7070;
1839   padding: 0 $lineheight/2;
1840   margin-bottom: $lineheight;
1841   background-color: #f0f0f0;
1842
1843   h2 {
1844     margin: 0 -10px 10px -10px;
1845     padding: $lineheight/4 $lineheight/4 $lineheight/4 15px;
1846     font-weight: bold;
1847     font-size: 12px;
1848     background-color: #c00;
1849     color: #fff;
1850     text-align: left;
1851   }
1852
1853   p {
1854     color: #333;
1855     margin-bottom: 0px;
1856     padding: $lineheight/4;
1857   }
1858 }
1859
1860 /* Rules for forms */
1861
1862 .standard-form {
1863   fieldset {
1864     margin-bottom: $lineheight;
1865   }
1866   label.standard-label {
1867     display: block;
1868     margin-bottom: $lineheight/4;
1869     font-size: $typeheight;
1870     font-weight: bold;
1871     line-height: 1.5;
1872   }
1873   label.standard-label.secondary {
1874     display: inline-block;
1875     font-weight: normal;
1876   }
1877   .form-help {
1878     font-weight: normal;
1879   }
1880   .form-column {
1881     float: left;
1882     margin-right: 20px;
1883   }
1884   .form-divider {
1885     margin-top: $lineheight;
1886     padding-top: $lineheight;
1887     border-top: 1px solid $lightgrey;
1888   }
1889   .horizontal-list .standard-form-row {
1890     float: left;
1891     padding-right: 10px;
1892   }
1893   .standard-form-row {
1894     margin-bottom: $lineheight/2;
1895   }
1896   .form-list {
1897     margin-bottom: 0;
1898   }
1899   .form-list li {
1900     margin-bottom: 5px;
1901     list-style-type: none;
1902   }
1903   input[type="checkbox"],
1904   input[type="radio"] {
1905     float: left;
1906     margin-top: 5px;
1907   }
1908 }
1909
1910 #remember_me_openid {
1911   display: block;
1912 }
1913
1914 select {
1915   padding: 2px;
1916 }
1917
1918 input[type="checkbox"],
1919 input[type="radio"] {
1920     margin-right: 5px;
1921 }
1922
1923 input[type="text"],
1924 input[type="email"],
1925 input[type="url"],
1926 input[type="password"],
1927 textarea {
1928   color: #222;
1929   background-color: #fff;
1930   border: 1px solid $grey;
1931   border-radius: 3px;
1932   padding: 2px 5px;
1933   margin: 0;
1934   width: 200px;
1935
1936   &.field_with_errors {
1937     border: 2px solid #ff7070;
1938   }
1939 }
1940
1941 textarea {
1942   padding: 5px;
1943   width: 100%;
1944   min-height: 50px;
1945   resize: vertical;
1946 }
1947
1948 /* Rules for user images */
1949
1950 img.user_image {
1951   max-width: 100px;
1952   max-height: 100px;
1953   border: 1px solid $grey;
1954   margin-bottom: $lineheight;
1955   float: left;
1956   margin-right: $lineheight;
1957 }
1958
1959 img.user_thumbnail {
1960   max-width: 50px;
1961   max-height: 50px;
1962   border: 1px solid $grey;
1963   margin-right: $lineheight;
1964 }
1965
1966 img.user_thumbnail_tiny {
1967   width: auto;
1968   height: auto;
1969   max-width: 25px;
1970   max-height: 25px;
1971   border: 1px solid $grey;
1972 }
1973
1974 /* Rules for geo microformats */
1975
1976 abbr.geo {
1977   border-bottom: none;
1978 }
1979
1980 /* General styles for action lists / subnavs / pager navs */
1981
1982 ul.secondary-actions {
1983   font-style: normal;
1984   margin-bottom: 0;
1985   margin-left: 0;
1986   padding: 0;
1987   &.pager {
1988     display: inline-block;
1989     margin-right: 60px;
1990   }
1991   > li {
1992     display: block;
1993     float: left;
1994     list-style: none;
1995     border-left: 1px solid $grey;
1996     padding-left: $lineheight/2;
1997     margin-right: $lineheight/2;
1998     &:first-child {
1999       border-left: 0;
2000       padding-left: 0;
2001     }
2002     &:last-child {
2003       margin-right: 0px;
2004     }
2005   }
2006 }
2007
2008 div.secondary-actions {
2009   padding: 10px;
2010   text-align: center;
2011 }
2012
2013 /* Utility for managing inner content areas */
2014
2015 .inner22 { padding: $lineheight;}
2016
2017 .inner12 { padding: $lineheight/2 $lineheight;}
2018
2019 .inner11 { padding: $lineheight/2;}
2020
2021 .inner20 { padding: $lineheight 0;}
2022
2023 .inner02 { padding: 0 $lineheight;}
2024
2025 /* Utility for general button styles */
2026
2027 input[type="button"],
2028 input[type="submit"],
2029 input[type="reset"],
2030 a.button {
2031   cursor: pointer;
2032   border: 0;
2033   display: inline-block;
2034   padding: $lineheight/4 $lineheight/2;
2035   min-height: 20px + $lineheight/2;
2036   min-width: 120px;
2037   margin: 0 0 $lineheight/2 0;
2038   color: white;
2039   background: $blue;
2040   text-align: center;
2041   border-radius: 2px;
2042   &:hover {
2043     background: darken($blue, $hovercolor);
2044     text-decoration: none;
2045   }
2046   &.deemphasize {
2047     background: $lightblue;
2048     &:hover {
2049       background: darken($lightblue, $hovercolor);
2050     }
2051   }
2052   &:disabled {
2053     background: $lightgrey;
2054     &:hover {
2055       background: $lightgrey;
2056     }
2057   }
2058   &:last-child {
2059     margin-bottom: 0;
2060   }
2061 }
2062
2063 input[type="button"],
2064 input[type="submit"],
2065 input[type="reset"] {
2066   line-height: normal;
2067 }
2068
2069 a.button {
2070   line-height: 20px;
2071 }
2072
2073 .buttons {
2074   min-width: 200px;
2075   input[type="submit"],
2076   input[type="button"],
2077   input[type="reset"],
2078   .button,
2079   .button_to {
2080     box-sizing: border-box;
2081     float: left;
2082     border-radius: 0;
2083     margin:0;
2084     min-width: 75px;
2085     max-width: 180px;
2086     border-right:1px solid white;
2087     text-overflow: ellipsis;
2088     white-space: nowrap;
2089     overflow: hidden;
2090   }
2091   input:first-child,
2092   .button:first-child,
2093   .button_to:first-child {
2094     border-radius:2px 0 0 2px;
2095   }
2096   input:last-child,
2097   .button:last-child,
2098   .button_to:last-child {
2099     border-radius:0 2px 2px 0;
2100     border-right-width: 0;
2101   }
2102   input:only-child,
2103   .button:only-child,
2104   .button_to:only-child,
2105   *[value="Hide"] + input:last-child,
2106   *[value="Hide"] + .button:last-child,
2107   *[value="Hide"] + .button_to:last-child {
2108     border-radius:2px;
2109     border-right-width: 0;
2110   }
2111     /* if a 3-button set has a hidden middle button */
2112   *[value="Hide"] + input:nth-child(3),
2113   *[value="Hide"] + .button:nth-child(3),
2114   *[value="Hide"] + .button_to:nth-child(3) {
2115     border-radius:0 2px 2px 0;
2116     border-right-width: 0;
2117   }
2118   /* if a 3-button set starts with a hidden button */
2119   *[value="Hide"] + input:nth-child(2):not(:last-child),
2120   *[value="Hide"] + .button:nth-child(2):not(:last-child),
2121   *[value="Hide"] + .button_to:nth-child(2):not(:last-child) {
2122     border-radius:2px 0 0 2px;
2123     border-right-width: 1px;
2124   }
2125 }
2126
2127 /* Rules for doing distinct colour of alternate table rows */
2128
2129 .table0,
2130 .item0 {
2131   background: $offwhite;
2132 }
2133
2134 .table1,
2135 .item1 {
2136   background: #fff;
2137 }
2138
2139 /* Rules for OpenID logo */
2140
2141 .openid_logo {
2142   vertical-align: text-bottom;
2143   border: 0;
2144 }
2145
2146 /* Rules for rich text */
2147
2148 .richtext,
2149 .prose {
2150   code {
2151     font-size: 13px;
2152     background: $lightgrey;
2153     padding: 2px 3px;
2154   }
2155
2156   pre {
2157     font-size: 13px;
2158     background: $lightgrey;
2159     padding: 2px 3px;
2160     white-space: pre-wrap;
2161
2162     code {
2163       padding: 0;
2164     }
2165   }
2166
2167   img {
2168     padding: $lineheight;
2169     background-color: $offwhite;
2170     display: block;
2171     max-width: 100%;
2172     margin: auto;
2173   }
2174
2175   blockquote {
2176     border-left: $lineheight solid $offwhite;
2177     padding-left: $lineheight;
2178     margin: 0;
2179     color: $darkgrey;
2180   }
2181 }
2182
2183 .diary_post .richtext {
2184     margin-top: $lineheight;
2185   }
2186
2187 .comments .richtext {
2188   margin-left: 70px;
2189   margin-top: 0;
2190 }
2191
2192 /* Rules for rich text editors */
2193
2194 input.richtext_title[type="text"] {
2195   width: 50%;
2196   width: calc(100% - 235px);
2197
2198   @media only screen and (max-width:768px) {
2199     width: 100%;
2200   }
2201 }
2202
2203 .richtext_container {
2204   margin-bottom: $lineheight;
2205
2206   .richtext_content {
2207     width: 50%;
2208     width: calc(100% - 235px);
2209     display: inline-block;
2210     vertical-align: top;
2211
2212     @media only screen and (max-width:768px) {
2213       width: 100%;
2214     }
2215
2216     .richtext_preview {
2217       display: inline-block;
2218       padding: $lineheight;
2219       background-color: $offwhite;
2220       overflow-x: auto;
2221
2222       &.loading {
2223         background-image: image-url("loading.gif");
2224         background-repeat: no-repeat;
2225         background-position: center;
2226       }
2227
2228       > :first-child {
2229         margin-top: 0px;
2230       }
2231     }
2232   }
2233
2234   .richtext_help {
2235     display: inline-block;
2236     vertical-align: top;
2237     margin-left: 15px;
2238     background-color: $offwhite;
2239     padding: $lineheight/2;
2240     width: 220px;
2241
2242     ul {
2243       margin-bottom: 0;
2244     }
2245
2246     h4.heading, li {
2247       border-bottom: 1px solid $grey;
2248       margin-bottom: $lineheight/4;
2249       padding-bottom: $lineheight/4;
2250     }
2251
2252     li h4, li span, li p {
2253       display: inline-block;
2254       vertical-align: top;
2255       font-size: 11px;
2256     }
2257
2258     li h4 {
2259       width: 40%;
2260       margin: 0;
2261     }
2262
2263     li span, li p {
2264       width: 50%;
2265       margin-left: $lineheight/2;
2266       margin-bottom: $lineheight/4;
2267       white-space: nowrap;
2268     }
2269   }
2270 }
2271
2272 /* Rules for the user notes list */
2273
2274 .note_list {
2275   tr.creator {
2276     background-color: $lightgrey;
2277   }
2278
2279   td {
2280     padding: 3px;
2281   }
2282
2283   p {
2284     margin-bottom: 0px;
2285   }
2286 }
2287
2288 /* Rules for the iD editor */
2289
2290 .id-embed {
2291   width: 100%;
2292   height: 100%;
2293 }
2294
2295 /* Rules for dropdown menus */
2296
2297 .dropdown {
2298   position: relative;
2299 }
2300
2301 .dropdown-toggle {
2302   *margin-bottom: -3px;
2303 }
2304
2305 .dropdown-toggle:active,
2306 .open .dropdown-toggle {
2307   outline: 0;
2308 }
2309
2310 .caret {
2311   display: inline-block;
2312   width: 0;
2313   height: 0;
2314   vertical-align: top;
2315   border-top: 4px solid #000000;
2316   border-right: 4px solid transparent;
2317   border-left: 4px solid transparent;
2318   content: "";
2319 }
2320
2321 .dropdown .caret {
2322   margin-top: 8px;
2323   margin-left: 2px;
2324 }
2325
2326 .dropdown-menu {
2327   position: absolute;
2328   top: 100%;
2329   left: -1px;
2330   z-index: 1000;
2331   display: none;
2332   float: left;
2333   min-width: 160px;
2334   padding: 5px 0;
2335   margin: 0;
2336   list-style: none;
2337   background-color: #ffffff;
2338   border: 1px solid $grey;
2339   border-radius: 0 3px 3px;
2340   *border-right-width: 2px;
2341   *border-bottom-width: 2px;
2342   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2343   background-clip: padding-box;
2344 }
2345
2346 .dropdown-menu.pull-right {
2347   right: 0;
2348   left: auto;
2349 }
2350
2351 .dropdown-menu .divider {
2352   *width: 100%;
2353   height: 1px;
2354   margin: 9px 1px;
2355   *margin: -5px 0 5px;
2356   overflow: hidden;
2357   background-color: $lightgrey;
2358   border-bottom: 1px solid #ffffff;
2359 }
2360
2361 .dropdown-menu > li > a {
2362   display: block;
2363   padding: 3px 10px;
2364   clear: both;
2365   font-weight: normal;
2366   line-height: 20px;
2367   color: #333333;
2368   white-space: nowrap;
2369 }
2370
2371 .dropdown-menu > li > a:hover,
2372 .dropdown-menu > li > a:focus,
2373 .dropdown-submenu:hover > a,
2374 .dropdown-submenu:focus > a {
2375   color: #ffffff;
2376   text-decoration: none;
2377   background-color: $green;
2378 }
2379
2380 .dropdown-menu > .active > a,
2381 .dropdown-menu > .active > a:hover,
2382 .dropdown-menu > .active > a:focus {
2383   color: #ffffff;
2384   text-decoration: none;
2385   background-color: $green;
2386   outline: 0;
2387 }
2388
2389 .dropdown-menu > .disabled > a,
2390 .dropdown-menu > .disabled > a:hover,
2391 .dropdown-menu > .disabled > a:focus {
2392   color: $darkgrey;
2393 }
2394
2395 .dropdown-menu > .disabled > a:hover,
2396 .dropdown-menu > .disabled > a:focus {
2397   text-decoration: none;
2398   cursor: default;
2399   background-color: transparent;
2400   background-image: none;
2401 }
2402
2403 .open {
2404   *z-index: 1000;
2405 }
2406
2407 .open > .dropdown-menu {
2408   display: block;
2409 }
2410
2411 .dropdown-backdrop {
2412   position: fixed;
2413   top: 0;
2414   right: 0;
2415   bottom: 0;
2416   left: 0;
2417   z-index: 990;
2418 }
2419
2420 /* Rules for the "Welcome" page */
2421 .site-welcome, .site-fixthemap {
2422   .center {
2423     text-align: center;
2424     .sprite {
2425       float: none;
2426       margin: auto;
2427     }
2428   }
2429
2430   .sprite {
2431     background-image: image-url("welcome-sprite.png");
2432     background-size: 500px 250px;
2433     display: block;
2434     float: left;
2435   }
2436
2437   .icon-list {
2438     padding-bottom: 20px;
2439     div {
2440       margin-bottom: 10px;
2441       p {
2442         padding-top: 10px;
2443       }
2444     }
2445   }
2446   .sprite.small {
2447     width: 50px;
2448     height: 50px;
2449   }
2450
2451   .sprite.x {
2452     /* no-r2 */ background-position: -50px 0;
2453   }
2454
2455   .sprite.term {
2456     margin-right: 10px;
2457     vertical-align: middle;
2458   }
2459
2460   .sprite.node {
2461     /* no-r2 */ background-position: -100px 0;
2462   }
2463
2464   .sprite.way {
2465     /* no-r2 */ background-position: -150px 0;
2466   }
2467
2468   .sprite.tag {
2469     /* no-r2 */ background-position: -200px 0;
2470   }
2471
2472   .sprite.editor {
2473     /* no-r2 */ background-position: -250px 0;
2474   }
2475
2476   .sprite.question {
2477     /* no-r2 */ background-position: -300px 0;
2478   }
2479
2480   .sprite.rules {
2481     /* no-r2 */ background-position: -350px 0;
2482   }
2483
2484   .start-mapping {
2485     margin: auto;
2486     cursor: pointer;
2487     border: none;
2488     padding: 20px 40px;
2489     font-size: 30px;
2490     text-decoration: none;
2491   }
2492
2493   .icon.note {
2494     background-color: #333;
2495     border-radius: 4px;
2496   }
2497 }
2498
2499 .site-about #content {
2500   background-color: $lightgrey;
2501   background-position: 50% 50%;
2502   background-repeat: no-repeat;
2503   background-size: cover;
2504   background-attachment: fixed;
2505
2506
2507   .content-inner {
2508     position: relative;
2509     color: #333;
2510     min-width: 320px;
2511     max-width: 640px;
2512   }
2513
2514   .text {
2515     background: white;
2516     padding: 40px;
2517   }
2518
2519   .attr {
2520     position: relative;
2521     padding: 170px 40px 20px;
2522     background: #333;
2523     background: rgba(0, 0, 0, .8);
2524     margin-bottom: 0;
2525     margin-top: -20px;
2526
2527     h1 {
2528       display: block;
2529       color: white;
2530       font-weight: 300;
2531       font-size: 34px;
2532       span {
2533         color: $vibrant-green;
2534       }
2535     }
2536
2537     .user-image {
2538       position: absolute;
2539       top: 0px;
2540       right: 240px;
2541       left: 0px;
2542       height: 150px;
2543       background-position: 0 50%;
2544       background-repeat: no-repeat;
2545       background-image: image-url('about/osm.png');
2546       background-size: cover;
2547       background-color: $vibrant-green;
2548     }
2549
2550     .byosm {
2551       position: absolute;
2552       top: 0px;
2553       right: 0px;
2554       z-index: 1;
2555       width: 240px;
2556       height: 150px;
2557       padding: 20px 20px 20px 40px;
2558       font: 500 20px/24px Helvetica, Arial, sans-serif;
2559       white-space: nowrap;
2560       color: #fff;
2561       background: $vibrant-green;
2562     }
2563
2564     .byosm span {
2565       display: inline-block;
2566       width: 20px;
2567       margin-left: -20px;
2568     }
2569   }
2570
2571   .icon {
2572     width: 30px;
2573     height: 30px;
2574     margin-right: 10px;
2575     vertical-align: middle;
2576     background: 40px 40px image-url('about/sprite.png') no-repeat;
2577
2578     &.local {
2579       /* no-r2 */
2580       background-position: 0px 0px;
2581     }
2582     &.community {
2583       /* no-r2 */
2584       background-position: 0px -40px;
2585     }
2586     &.open {
2587       /* no-r2 */
2588       background-position: 0px -80px;
2589     }
2590     &.partners {
2591       /* no-r2 */
2592       background-position: 0px -120px;
2593     }
2594     &.infringement {
2595       /* no-r2 */
2596       background-position: 0px -160px;
2597     }
2598     &.legal {
2599       /* no-r2 */
2600       background-position: -45px -160px;
2601     }
2602   }
2603 }
2604
2605 @import 'browse';
2606
2607 @media only screen and (max-width:960px) {
2608   .header-illustration.new-user-arm {
2609     display: none;
2610   }
2611 }
2612
2613 .read-reports {
2614   background: $lightgrey;
2615   opacity: 0.7;
2616 }
2617
2618 .issues-list {
2619   td:nth-child(2) {
2620     white-space: nowrap;
2621   }
2622 }