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

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

Issue 1461783003: [DevTools] Get rid of floats in treeoutline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 5 years 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) 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-headers-view { 7 .request-headers-view {
8 -webkit-user-select: text; 8 -webkit-user-select: text;
9 overflow: auto; 9 overflow: auto;
10 } 10 }
(...skipping 14 matching lines...) Expand all
25 color: #616161; 25 color: #616161;
26 margin-top: -1px; 26 margin-top: -1px;
27 height: 20px; 27 height: 20px;
28 border-top: solid 1px #e0e0e0; 28 border-top: solid 1px #e0e0e0;
29 display: flex; 29 display: flex;
30 align-items: center; 30 align-items: center;
31 } 31 }
32 32
33 .request-headers-view .outline-disclosure li.parent::before { 33 .request-headers-view .outline-disclosure li.parent::before {
34 position: static; 34 position: static;
35 width: 9px; 35 width: 13px;
36 height: 9px; 36 height: 9px;
37 -webkit-mask-position: -4px -98px; 37 -webkit-mask-position: -4px -98px;
38 background-image: none; 38 background-image: none;
39 opacity: 1; 39 opacity: 1;
40 } 40 }
41 41
42 .request-headers-view .outline-disclosure li.parent.expanded::before { 42 .request-headers-view .outline-disclosure li.parent.expanded::before {
43 -webkit-mask-position: -20px -98px; 43 -webkit-mask-position: -20px -98px;
44 } 44 }
45 45
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 margin-right: 3px; 108 margin-right: 3px;
109 } 109 }
110 110
111 .request-headers-view .filter-input { 111 .request-headers-view .filter-input {
112 outline: none !important; 112 outline: none !important;
113 border: none; 113 border: none;
114 border-bottom: solid 1px #ccc; 114 border-bottom: solid 1px #ccc;
115 flex: 0 0 19px; 115 flex: 0 0 19px;
116 padding: 0 4px; 116 padding: 0 4px;
117 } 117 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698