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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/resources/clearStorageView.css

Issue 1963803002: DevTools: rename Resources panel into Application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 /* 1 /*
2 * Copyright 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 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 .report-row { 7 .report-row {
8 display: flex; 8 display: flex;
9 align-items: center; 9 align-items: center;
10 } 10 }
11 11
12 .clear-storage-button .report-row { 12 .clear-storage-button .report-row {
13 margin: 0; 13 margin: 0 0 0 20px;
14 display: flex; 14 display: flex;
15 justify-content: flex-end;
16 } 15 }
17 16
18 .link { 17 .link {
19 margin-left: 10px; 18 margin-left: 10px;
20 display: none; 19 display: none;
21 } 20 }
22 21
23 .report-row:hover .link { 22 .report-row:hover .link {
24 display: inline; 23 display: inline;
25 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698