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

Side by Side Diff: Source/devtools/front_end/requestCookiesView.css

Issue 422293002: DevTools: NetworkPanel: split networkPanel.css (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 (c) 2014 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 .request-cookies-view {
8 display: none;
9 position: absolute;
10 top: 0;
11 right: 0;
12 left: 0;
13 bottom: 0;
14 overflow: auto;
15 margin: 12px;
16 height: 100%;
17 }
18
19 .request-cookies-view.visible {
20 display: flex;
21 }
22
23 .request-cookies-view .data-grid {
24 flex: auto;
25 height: 100%;
26 }
27
28 .request-cookies-view .data-grid .row-group {
29 font-weight: bold;
30 font-size: 11px;
31 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/networkPanel.css ('k') | Source/devtools/front_end/requestHeadersView.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698