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

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

Issue 1172643002: DevTools: migrate sidebar pane's titleElement to use Toolbar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: only using latin1 in css Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 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 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 .request-cookies-view { 7 .request-cookies-view {
8 display: none; 8 display: flex;
9 overflow: auto; 9 overflow: auto;
10 margin: 12px; 10 margin: 12px;
11 height: 100%; 11 height: 100%;
12 } 12 }
13 13
14 .request-cookies-view.visible {
15 display: flex;
16 }
17
18 .request-cookies-view .data-grid { 14 .request-cookies-view .data-grid {
19 flex: auto; 15 flex: auto;
20 height: 100%; 16 height: 100%;
21 } 17 }
22 18
23 .request-cookies-view .data-grid .row-group { 19 .request-cookies-view .data-grid .row-group {
24 font-weight: bold; 20 font-weight: bold;
25 font-size: 11px; 21 font-size: 11px;
26 } 22 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/network/networkPanel.css ('k') | Source/devtools/front_end/profiler/profilesPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698