OLD | NEW |
1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2014 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 body { | 5 body { |
6 -webkit-user-select: none; | 6 -webkit-user-select: none; |
7 font-family: Noto Sans UI, sans-serif; | 7 font-family: Noto Sans UI, sans-serif; |
8 font-size: 84%; | 8 font-size: 84%; |
9 margin: 0; | 9 margin: 0; |
10 } | 10 } |
(...skipping 1322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1333 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) | 1333 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) |
1334 center; | 1334 center; |
1335 } | 1335 } |
1336 | 1336 |
1337 .gallery > .header > .close-button { | 1337 .gallery > .header > .close-button { |
1338 background: -webkit-image-set( | 1338 background: -webkit-image-set( |
1339 url(chrome://resources/images/apps/topbar_button_close.png) 1x, | 1339 url(chrome://resources/images/apps/topbar_button_close.png) 1x, |
1340 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) | 1340 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) |
1341 center; | 1341 center; |
1342 } | 1342 } |
| 1343 |
| 1344 .debug-me .load-target-content-metadata::before, |
| 1345 .debug-me .load-target-external-metadata::before, |
| 1346 .debug-me .load-target-file-entry::before { |
| 1347 bottom: 0; |
| 1348 content: ''; |
| 1349 display: block; |
| 1350 left: 0; |
| 1351 position: absolute; |
| 1352 right: 0; |
| 1353 top: 0; |
| 1354 z-index: 1; |
| 1355 } |
| 1356 |
| 1357 .debug-me .load-target-content-metadata::before { |
| 1358 background-color: rgba(255, 0, 0, 0.3); |
| 1359 } |
| 1360 |
| 1361 .debug-me .load-target-external-metadata::before { |
| 1362 background-color: rgba(0, 255, 0, 0.3); |
| 1363 } |
| 1364 |
| 1365 .debug-me .load-target-file-entry::before { |
| 1366 background-color: rgba(0, 0, 255, 0.3); |
| 1367 } |
OLD | NEW |