OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * @constructor | 6 * @constructor |
7 * @extends {HTMLSpanElement} | 7 * @extends {HTMLSpanElement} |
8 */ | 8 */ |
9 UI.Icon = class extends HTMLSpanElement { | 9 UI.Icon = class extends HTMLSpanElement { |
10 constructor() { | 10 constructor() { |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 }, | 200 }, |
201 'largeicon-hide-bottom-sidebar': { | 201 'largeicon-hide-bottom-sidebar': { |
202 x: -192, | 202 x: -192, |
203 y: -72, | 203 y: -72, |
204 width: 28, | 204 width: 28, |
205 height: 24, | 205 height: 24, |
206 spritesheet: 'largeicons', | 206 spritesheet: 'largeicons', |
207 isMask: true, | 207 isMask: true, |
208 transform: 'translate(4px, 1px) rotate(-90deg)' | 208 transform: 'translate(4px, 1px) rotate(-90deg)' |
209 }, | 209 }, |
| 210 'largeicon-navigator-file': {x: -224, y: -72, width: 32, height: 24, spriteshe
et: 'largeicons', isMask: true}, |
| 211 'largeicon-navigator-folder': {x: -64, y: -120, width: 32, height: 24, sprites
heet: 'largeicons', isMask: true}, |
| 212 'largeicon-navigator-domain': {x: -160, y: -144, width: 32, height: 24, sprite
sheet: 'largeicons', isMask: true}, |
| 213 'largeicon-navigator-frame': {x: -256, y: -144, width: 32, height: 24, sprites
heet: 'largeicons', isMask: true}, |
| 214 'largeicon-navigator-worker': {x: -320, y: -144, width: 32, height: 24, sprite
sheet: 'largeicons', isMask: true}, |
| 215 'largeicon-navigator-snippet': {x: -224, y: -96, width: 32, height: 24, sprite
sheet: 'largeicons', isMask: true}, |
210 }; | 216 }; |
OLD | NEW |