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

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

Issue 1960663003: DevTools: introduce the Clear storage pane in the resources panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tests fixed 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
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 .report-row {
8 display: flex;
9 align-items: center;
10 }
11
12 .clear-storage-button .report-row {
13 margin: 0;
14 display: flex;
15 justify-content: flex-end;
16 }
17
18 .link {
19 margin-left: 10px;
20 display: none;
21 }
22
23 .report-row:hover .link {
24 display: inline;
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698