OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 .responsive-design { | 7 .responsive-design { |
8 overflow: hidden; | 8 overflow: hidden; |
9 position: relative; | 9 position: relative; |
10 } | 10 } |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 } | 81 } |
82 | 82 |
83 .responsive-design-toolbar fieldset, | 83 .responsive-design-toolbar fieldset, |
84 .responsive-design-toolbar p { | 84 .responsive-design-toolbar p { |
85 margin: 0; | 85 margin: 0; |
86 padding: 0; | 86 padding: 0; |
87 border: 0; | 87 border: 0; |
88 display: inline-block; | 88 display: inline-block; |
89 } | 89 } |
90 | 90 |
| 91 .responsive-design-screen-section > fieldset, |
| 92 .responsive-design-user-agent-section > p { |
| 93 margin-left: 7px; |
| 94 } |
| 95 |
91 .responsive-design-toolbar .responsive-design-section { | 96 .responsive-design-toolbar .responsive-design-section { |
92 display: flex; | 97 display: flex; |
93 flex: 1 0 auto; | 98 flex: 1 0 auto; |
94 flex-direction: row; | 99 flex-direction: row; |
95 height: 24px; | 100 height: 24px; |
96 margin-top: -1px; | 101 margin-top: -1px; |
97 white-space: nowrap; | 102 white-space: nowrap; |
98 align-items: center; | 103 align-items: center; |
99 justify-content: flex-start; | 104 justify-content: flex-start; |
100 padding-right: 3px; | 105 padding-right: 3px; |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 float: left; | 310 float: left; |
306 margin-right: 4px; | 311 margin-right: 4px; |
307 margin-left: 2px; | 312 margin-left: 2px; |
308 } | 313 } |
309 | 314 |
310 @media (-webkit-min-device-pixel-ratio: 1.5) { | 315 @media (-webkit-min-device-pixel-ratio: 1.5) { |
311 .responsive-design-warning::before { | 316 .responsive-design-warning::before { |
312 background-image: url(Images/statusbarButtonGlyphs_2x.png); | 317 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
313 } | 318 } |
314 } /* media */ | 319 } /* media */ |
OLD | NEW |