OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 border-top: 1px solid #EEEEEE; | 184 border-top: 1px solid #EEEEEE; |
185 margin: 0; | 185 margin: 0; |
186 padding: 12px; | 186 padding: 12px; |
187 } | 187 } |
188 | 188 |
189 .overrides-view label { | 189 .overrides-view label { |
190 display: flex; | 190 display: flex; |
191 height: auto; | 191 height: auto; |
192 } | 192 } |
193 | 193 |
194 /* Screen tab */ | 194 #metrics-override-section > span { |
| 195 padding: 0 10px 0 3px; |
| 196 } |
| 197 |
| 198 #metrics-override-section > select { |
| 199 width: 244px; |
| 200 } |
| 201 |
| 202 /* Media tab */ |
195 | 203 |
196 .overrides-media > label { | 204 .overrides-media > label { |
197 margin-bottom: 4px; | 205 margin-bottom: 4px; |
198 } | 206 } |
199 | 207 |
200 /* Sensors tab */ | 208 /* Sensors tab */ |
201 | 209 |
202 .overrides-sensors > label { | 210 .overrides-sensors > label { |
203 margin-bottom: 10px; | 211 margin-bottom: 10px; |
204 } | 212 } |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 | 291 |
284 @media (-webkit-min-device-pixel-ratio: 1.5) { | 292 @media (-webkit-min-device-pixel-ratio: 1.5) { |
285 .overrides-view .overrides-footer::before { | 293 .overrides-view .overrides-footer::before { |
286 background-image: url(Images/statusbarButtonGlyphs_2x.png); | 294 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
287 } | 295 } |
288 } /* media */ | 296 } /* media */ |
289 | 297 |
290 .overrides-view .overrides-footer .warning-icon-small { | 298 .overrides-view .overrides-footer .warning-icon-small { |
291 margin-right: 3px; | 299 margin-right: 3px; |
292 } | 300 } |
| 301 |
| 302 .overrides-splash-screen { |
| 303 display: flex; |
| 304 align-items: center; |
| 305 padding: 3px 10px; |
| 306 } |
| 307 |
| 308 .overrides-reset-button { |
| 309 margin: 9px 0 0 17px; |
| 310 } |
OLD | NEW |