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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/networkPanel.css

Issue 2353033004: [DevTools] Expose left and right toolbar in TabbedPane. (Closed)
Patch Set: review comment Created 4 years, 2 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 (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 18 matching lines...) Expand all
29 29
30 .panel.network > .toolbar { 30 .panel.network > .toolbar {
31 position: relative; 31 position: relative;
32 border-bottom: 1px solid #dadada; 32 border-bottom: 1px solid #dadada;
33 } 33 }
34 34
35 .network-details-view { 35 .network-details-view {
36 background: rgb(203, 203, 203); 36 background: rgb(203, 203, 203);
37 } 37 }
38 38
39 .network-close-button {
40 margin: auto -1px auto 4px;
41 }
42
43 .network-details-view-tall-header { 39 .network-details-view-tall-header {
44 margin-top: 4px; 40 margin-top: 4px;
45 } 41 }
46 42
47 .network-item-view { 43 .network-item-view {
48 display: flex; 44 display: flex;
49 background: white; 45 background: white;
50 } 46 }
51 47
52 .network-item-preview-toolbar { 48 .network-item-preview-toolbar {
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 251
256 .network-film-strip { 252 .network-film-strip {
257 border-bottom: solid 1px #cdcdcd; 253 border-bottom: solid 1px #cdcdcd;
258 flex: none !important; 254 flex: none !important;
259 } 255 }
260 256
261 .network-blocked-urls { 257 .network-blocked-urls {
262 border-top: 1px solid #dadada; 258 border-top: 1px solid #dadada;
263 flex: 104px 0 0; 259 flex: 104px 0 0;
264 } 260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698