| 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 18 matching lines...) Expand all Loading... |
| 29 .responsive-design-slider-height { | 29 .responsive-design-slider-height { |
| 30 flex: none; | 30 flex: none; |
| 31 justify-content: center; | 31 justify-content: center; |
| 32 } | 32 } |
| 33 | 33 |
| 34 .responsive-design-slider-thumb { | 34 .responsive-design-slider-thumb { |
| 35 border: 1px solid rgb(231, 231, 231); | 35 border: 1px solid rgb(231, 231, 231); |
| 36 background-color: lightgray; | 36 background-color: lightgray; |
| 37 box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); | 37 box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); |
| 38 background-repeat: no-repeat; | 38 background-repeat: no-repeat; |
| 39 display: flex; |
| 40 justify-content: center; |
| 41 align-items: center; |
| 42 flex: 0 1 100px; |
| 39 } | 43 } |
| 40 | 44 |
| 41 .responsive-design-slider-width .responsive-design-slider-thumb { | 45 .responsive-design-slider-width .responsive-design-slider-thumb { |
| 42 padding: 44px 5px; | |
| 43 border-radius: 0 3px 3px 0; | 46 border-radius: 0 3px 3px 0; |
| 44 border-left: none; | 47 border-left: none; |
| 45 } | 48 } |
| 46 | 49 |
| 47 .responsive-design-slider-height .responsive-design-slider-thumb { | 50 .responsive-design-slider-height .responsive-design-slider-thumb { |
| 48 padding: 4px 44px; | |
| 49 border-radius: 0 0 3px 3px; | 51 border-radius: 0 0 3px 3px; |
| 50 border-top: none; | 52 border-top: none; |
| 51 } | 53 } |
| 52 | 54 |
| 53 .responsive-design-thumb-handle { | 55 .responsive-design-thumb-handle { |
| 54 content: url(Images/statusbarResizerHorizontal.png); | 56 content: url(Images/statusbarResizerHorizontal.png); |
| 55 pointer-events: none; | 57 pointer-events: none; |
| 56 } | 58 } |
| 57 | 59 |
| 58 .responsive-design-slider-height .responsive-design-thumb-handle { | 60 .responsive-design-slider-height .responsive-design-thumb-handle { |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 float: left; | 239 float: left; |
| 238 margin-right: 4px; | 240 margin-right: 4px; |
| 239 margin-left: 2px; | 241 margin-left: 2px; |
| 240 } | 242 } |
| 241 | 243 |
| 242 @media (-webkit-min-device-pixel-ratio: 1.5) { | 244 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 243 .responsive-design-warning::before { | 245 .responsive-design-warning::before { |
| 244 background-image: url(Images/statusbarButtonGlyphs_2x.png); | 246 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
| 245 } | 247 } |
| 246 } /* media */ | 248 } /* media */ |
| OLD | NEW |