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

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

Issue 474453002: DevTools: [network] make timing colors consistent in popover and tab, remove box shadows and round … (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/networkLogView.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 } 77 }
78 78
79 .resource-timing-view { 79 .resource-timing-view {
80 display: none; 80 display: none;
81 position: absolute; 81 position: absolute;
82 top: 0; 82 top: 0;
83 right: 0; 83 right: 0;
84 left: 0; 84 left: 0;
85 bottom: 0; 85 bottom: 0;
86 margin: 6px; 86 margin: 6px;
87 font-weight: bold;
88 font-size: 11px;
89 color: rgb(30%, 30%, 30%); 87 color: rgb(30%, 30%, 30%);
90 } 88 }
91 89
92 .resource-timing-view table { 90 .resource-timing-view table {
93 border-spacing: 21px 0; 91 border-spacing: 21px 0;
94 } 92 }
95 93
96 .resource-timing-view .network-timing-bar { 94 /* Network timing is shared between popover and network item view pane */
97 opacity: 1; 95
96 .network-timing-table td {
97 padding: 2px 0;
98 } 98 }
99 99
100 .resource-timing-view .network-timing-bar.blocking, 100 .network-timing-table td.caution {
101 .resource-timing-view .network-timing-bar.proxy { 101 font-weight: bold;
102 background-image: linear-gradient(to bottom, rgb(242, 242, 194), rgb(204, 20 4, 102)); 102 color: rgb(255, 128, 0);
103 padding: 2px 0;
104 }
105
106 .network-timing-row {
107 position: relative;
108 height: 16px;
109 }
110
111 .network-timing-bar {
112 position: absolute;
113 background-color: red;
114 border-left: 1px solid red;
115 top: 0;
116 bottom: 0;
117 }
118
119 .network-timing-bar-title {
120 position: absolute;
121 color: #222;
122 top: 2px;
123 }
124
125 .network-timing-bar.blocking,
126 .network-timing-bar.proxy {
127 background-color: rgb(242, 242, 194);
103 border-left: 1px solid rgb(204, 204, 102); 128 border-left: 1px solid rgb(204, 204, 102);
104 } 129 }
105 130
106 .resource-timing-view .network-timing-bar.dns { 131 .network-timing-bar.dns {
107 background-image: linear-gradient(to bottom, rgb(194, 242, 194), rgb(102, 20 4, 102));
108 border-left: 1px solid rgb(102, 204, 102); 132 border-left: 1px solid rgb(102, 204, 102);
133 background-color: rgb(194, 242, 194);
109 } 134 }
110 135
111 .resource-timing-view .network-timing-bar.connecting, 136 .network-timing-bar.connecting,
112 .resource-timing-view .network-timing-bar.ssl { 137 .network-timing-bar.ssl {
113 background-image: linear-gradient(to bottom, rgb(194, 242, 242), rgb(102, 20 4, 204)); 138 background-color: rgb(194, 242, 242);
114 border-left: 1px solid rgb(102, 204, 204); 139 border-left: 1px solid rgb(102, 204, 204);
115 } 140 }
116 141
117 .resource-timing-view .network-timing-bar.sending { 142 .network-timing-bar.sending {
118 background-image: linear-gradient(to bottom, rgb(194, 194, 242), rgb(102, 10 2, 204)); 143 background-color: rgb(194, 194, 242);
119 border-left: 1px solid rgb(102, 102, 204); 144 border-left: 1px solid rgb(102, 102, 204);
120 } 145 }
121 146
122 .resource-timing-view .network-timing-bar.waiting { 147 .network-timing-bar.waiting {
123 background-image: linear-gradient(to bottom, rgb(242, 194, 242), rgb(204, 10 2, 204)); 148 background-color: rgb(242, 194, 242);
124 border-left: 1px solid rgb(204, 102, 204); 149 border-left: 1px solid rgb(204, 102, 204);
125 } 150 }
126 151
127 .resource-timing-view .network-timing-bar.receiving { 152 .network-timing-bar.receiving {
128 background-image: linear-gradient(to bottom, rgb(242, 194, 194), rgb(204, 10 2, 102)); 153 background-color: rgb(242, 194, 194);
129 border-left: 1px solid rgb(204, 102, 102); 154 border-left: 1px solid rgb(204, 102, 102);
130 } 155 }
131 156
132 .resource-timing-view.visible { 157 .resource-timing-view.visible {
133 display: block; 158 display: block;
134 } 159 }
135 160
136 .panel.network .split-view { 161 .panel.network .split-view {
137 flex: auto; 162 flex: auto;
138 position: relative; 163 position: relative;
139 } 164 }
140 165
141 .network-filters-header { 166 .network-filters-header {
142 flex: 0 0 23px; 167 flex: 0 0 23px;
143 padding-right: 4px; 168 padding-right: 4px;
144 } 169 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/networkLogView.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698