]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/small.scss
Merge remote-tracking branch 'upstream/pull/2018'
[rails.git] / app / assets / stylesheets / small.scss
1 @import "parameters";
2
3 /* Styles specific to a small screen, such as iPhone, Android, etc... */
4
5 body.small {
6
7   input[type="submit"],
8   input[type="text"] {
9     -webkit-appearance: none;
10   }
11
12   .column-1 {
13     width: 100%;
14   }
15
16   #menu-icon {
17     display: inline-block !important;
18   }
19
20   nav.primary,
21   nav.secondary {
22     float: none !important;
23     position: relative;
24     display: block;
25     clear: both;
26   }
27
28   header {
29     height: auto;
30     min-height: $headerHeight;
31     background: #fff;
32
33     h1 {
34       padding-bottom: 15px;
35     }
36
37     &.closed nav {
38       display: none;
39     }
40
41     .search_forms {
42       display: block;
43     }
44   }
45
46   #sidebar .search_forms,
47   #edit_tab,
48   #export_tab {
49     display: none;
50   }
51
52   nav.primary {
53     padding: 0;
54
55     ul, li {
56       border: none;
57       border-radius: 0;
58       width: 100%;
59     }
60
61     ul {
62       border-top: 1px solid #eee;
63       li {
64         border-bottom: 1px solid #eee;
65         border-right: none;
66         > a {
67           border-radius: 0;
68           width: 100%;
69           text-align: center;
70           font-size: 15px;
71         }
72       }
73     }
74   }
75
76   nav.secondary {
77     border-bottom: 1px solid #eee;
78
79     .user-menu {
80       display: block;
81       width: 100%;
82       margin-left: 0;
83       > li {
84         width: 49%;
85         > a {
86           width: 100%;
87           text-align: center;
88         }
89       }
90     }
91   }
92
93   #compact-secondary-nav {
94     display: none;
95   }
96
97   .compact-hide {
98     display: inline-block;
99   }
100
101   &.map-layout {
102     #sidebar, #map {
103       position: relative;
104       overflow-x: hidden;
105       width: 100%;
106       height: 50%;
107     }
108
109     .overlay-sidebar {
110       #sidebar {
111         position: absolute;
112         width: 300px;
113         height: auto;
114         overflow: hidden;
115       }
116
117       #map {
118         height: 100%;
119       }
120     }
121
122     #map-ui {
123       z-index: 9999;
124       width: 100%;
125       overflow-y: scroll;
126     }
127   }
128
129   .overlay-sidebar #sidebar .welcome.visible {
130     display: none;
131   }
132
133   .overlay-sidebar #sidebar #banner {
134     display: none;
135   }
136
137   .leaflet-top.leaflet-right {
138     top: 10px !important;
139   }
140
141   .content_map {
142     width: 100%;
143     border: none;
144     float: none;
145     height: 200px;
146     max-height: none;
147     min-height: auto;
148   }
149
150   /* Rules for the login form */
151
152   #login_login input#user_email {
153     width: 100%;
154     max-width: 18em;
155   }
156
157   #login_login input#user_password {
158     width: 100%;
159     max-width: 18em;
160   }
161
162   #login_login input#openid_url {
163     width: 100%;
164     max-width: 18em;
165   }
166
167   #login_openid_buttons td {
168     padding: 2px;
169   }
170
171   /* Rules for the user view */
172
173   .user_map {
174     width: 100% !important;
175     height: 300px !important;
176   }
177
178   #userinformation .deemphasize {
179     position: relative;
180     right: auto; left: auto;
181     margin-top: 10px;
182     top: auto;
183   }
184
185   /* Rules for the sign-up page */
186
187   &.user-new,
188   &.user-create {
189     .col6 {
190       width: 100%;
191     }
192
193     .aside {
194       display: none;
195     }
196   }
197
198   &.site-about #content .attr h1 {
199     font-size: 28px;
200   }
201
202 }