| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 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 .elements-disclosure { | 7 .elements-disclosure { |
| 8 width: 100%; | 8 width: 100%; |
| 9 display: inline-block; | 9 display: inline-block; |
| 10 line-height: normal; | 10 line-height: normal; |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 height: 20px; | 352 height: 20px; |
| 353 transform: scale(0.8) rotate(90deg); | 353 transform: scale(0.8) rotate(90deg); |
| 354 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | 354 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); |
| 355 -webkit-mask-size: 352px 168px; | 355 -webkit-mask-size: 352px 168px; |
| 356 background-color: #FFFFFF; | 356 background-color: #FFFFFF; |
| 357 z-index: 1; | 357 z-index: 1; |
| 358 margin-top: -3px; | 358 margin-top: -3px; |
| 359 cursor: pointer; | 359 cursor: pointer; |
| 360 } | 360 } |
| 361 | 361 |
| 362 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 363 .node-actions-toggle { |
| 364 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 365 } |
| 366 } /* media */ |
| 367 |
| 362 .gutter-container.has-decorations .node-actions-toggle { | 368 .gutter-container.has-decorations .node-actions-toggle { |
| 363 opacity: 0; | 369 opacity: 0; |
| 364 } | 370 } |
| 365 | 371 |
| 366 .node-actions-container.expanded > .node-actions-toolbar { | 372 .node-actions-container.expanded > .node-actions-toolbar { |
| 367 visibility: visible; | 373 visibility: visible; |
| 368 } | 374 } |
| 369 | 375 |
| 370 .node-actions-toolbar-below { | 376 .node-actions-toolbar-below { |
| 371 margin-top: 2px; | 377 margin-top: 2px; |
| 372 } | 378 } |
| OLD | NEW |