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

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

Issue 33143002: DevTools: Unify filtering UI (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 right: 0; 59 right: 0;
60 width: auto; 60 width: auto;
61 border: none; 61 border: none;
62 background: inherit; 62 background: inherit;
63 } 63 }
64 64
65 .network.panel:not(.viewing-resource) .sidebar-resizer-vertical { 65 .network.panel:not(.viewing-resource) .sidebar-resizer-vertical {
66 display: none; 66 display: none;
67 } 67 }
68 68
69 .network.panel .scope-bar {
70 height: 23px;
71 padding-top: 5px;
72 }
73
74 .network.panel .data-grid th.sort-descending, 69 .network.panel .data-grid th.sort-descending,
75 .network.panel .data-grid th.sort-ascending { 70 .network.panel .data-grid th.sort-ascending {
76 background: white; 71 background: white;
77 } 72 }
78 73
79 #network-views .network-item-view .tabbed-pane-header { 74 #network-views .network-item-view .tabbed-pane-header {
80 height: 31px; 75 height: 31px;
81 padding-top: 8px; 76 padding-top: 8px;
82 padding-left: 13px; 77 padding-left: 13px;
83 white-space: nowrap; 78 white-space: nowrap;
(...skipping 15 matching lines...) Expand all
99 } 94 }
100 95
101 .network-item-view.visible { 96 .network-item-view.visible {
102 display: -webkit-flex; 97 display: -webkit-flex;
103 } 98 }
104 99
105 .network-item-view .tabbed-pane-header { 100 .network-item-view .tabbed-pane-header {
106 border-bottom: 1px solid rgb(163, 163, 163); 101 border-bottom: 1px solid rgb(163, 163, 163);
107 } 102 }
108 103
109 .network-item-view .scope-bar li {
110 border-bottom-left-radius: 0;
111 border-bottom-right-radius: 0;
112 }
113
114 .resource-headers-view { 104 .resource-headers-view {
115 display: none; 105 display: none;
116 margin: 6px; 106 margin: 6px;
117 -webkit-user-select: text; 107 -webkit-user-select: text;
118 position: absolute; 108 position: absolute;
119 top: 0; 109 top: 0;
120 left: 0; 110 left: 0;
121 right: 0; 111 right: 0;
122 bottom: 0; 112 bottom: 0;
123 overflow: auto; 113 overflow: auto;
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 } 305 }
316 306
317 .resource-websocket-row-opcode td, .resource-websocket-row-opcode + tr td { 307 .resource-websocket-row-opcode td, .resource-websocket-row-opcode + tr td {
318 border-top-color: rgb(248, 240, 210); 308 border-top-color: rgb(248, 240, 210);
319 } 309 }
320 310
321 .resource-websocket-row-error { 311 .resource-websocket-row-error {
322 background-color: rgb(255, 237, 237); 312 background-color: rgb(255, 237, 237);
323 color: rgb(182, 0, 0); 313 color: rgb(182, 0, 0);
324 } 314 }
315
316 .panel.network.filters-toggled .split-view {
317 top: 23px;
318 }
319
320 .network-filters-header {
321 position: absolute;
322 top: 0;
323 left: 0;
324 right: 0;
325 height: 23px;
pfeldman 2013/10/22 15:15:01 What happened to flex?
326 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698