Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: ui/file_manager/gallery/css/gallery.css

Issue 809803006: Gallery: Add debugMe method to Gallery. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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-size: 84%; 7 font-size: 84%;
8 margin: 0; 8 margin: 0;
9 } 9 }
10 10
(...skipping 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) 1332 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x)
1333 center; 1333 center;
1334 } 1334 }
1335 1335
1336 .gallery > .header > .close-button { 1336 .gallery > .header > .close-button {
1337 background: -webkit-image-set( 1337 background: -webkit-image-set(
1338 url(chrome://resources/images/apps/topbar_button_close.png) 1x, 1338 url(chrome://resources/images/apps/topbar_button_close.png) 1x,
1339 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) 1339 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x)
1340 center; 1340 center;
1341 } 1341 }
1342
1343 .debug-me .load-target-content-metadata::before,
1344 .debug-me .load-target-external-metadata::before,
1345 .debug-me .load-target-file-entry::before {
1346 bottom: 0;
1347 content: '';
1348 display: block;
1349 left: 0;
1350 position: absolute;
1351 right: 0;
1352 top: 0;
1353 z-index: 1;
1354 }
1355
1356 .debug-me .load-target-content-metadata::before {
1357 background-color: rgba(255, 0, 0, 0.3);
1358 }
1359
1360 .debug-me .load-target-external-metadata::before {
1361 background-color: rgba(0, 255, 0, 0.3);
1362 }
1363
1364 .debug-me .load-target-file-entry::before {
1365 background-color: rgba(0, 0, 255, 0.3);
1366 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/file_manager/gallery_jstest.cc ('k') | ui/file_manager/gallery/js/gallery.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698