| 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 position: relative; | 8 position: relative; |
| 9 background-color: rgb(0, 0, 0); | 9 background-color: rgb(0, 0, 0); |
| 10 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 } | 303 } |
| 304 | 304 |
| 305 @media (-webkit-min-device-pixel-ratio: 1.5) { | 305 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 306 .responsive-design-icon { | 306 .responsive-design-icon { |
| 307 -webkit-mask-image: url(Images/responsiveDesign_2x.png); | 307 -webkit-mask-image: url(Images/responsiveDesign_2x.png); |
| 308 } | 308 } |
| 309 } /* media */ | 309 } /* media */ |
| 310 | 310 |
| 311 .responsive-design-toolbar input[type='checkbox']:after { | 311 .responsive-design-toolbar input[type='checkbox']:after { |
| 312 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | 312 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); |
| 313 -webkit-mask-size: 320px 144px; | 313 -webkit-mask-size: 352px 144px; |
| 314 -webkit-mask-position: -128px -110px; | 314 -webkit-mask-position: -128px -110px; |
| 315 } | 315 } |
| 316 | 316 |
| 317 @media (-webkit-min-device-pixel-ratio: 1.5) { | 317 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 318 .responsive-design-toolbar input[type='checkbox']:after { | 318 .responsive-design-toolbar input[type='checkbox']:after { |
| 319 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); | 319 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 320 } | 320 } |
| 321 } /* media */ | 321 } /* media */ |
| 322 | 322 |
| 323 .responsive-design-icon-resolution { | 323 .responsive-design-icon-resolution { |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 pointer-events: none; | 523 pointer-events: none; |
| 524 } | 524 } |
| 525 | 525 |
| 526 .media-inspector-label-right { | 526 .media-inspector-label-right { |
| 527 right: 4px; | 527 right: 4px; |
| 528 } | 528 } |
| 529 | 529 |
| 530 .media-inspector-label-left { | 530 .media-inspector-label-left { |
| 531 left: 4px; | 531 left: 4px; |
| 532 } | 532 } |
| OLD | NEW |