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

Side by Side Diff: chrome/browser/resources/net_internals/events_view.css

Issue 8474001: Add a timeline view to about:net-internals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Update comments Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 2 Copyright (c) 2011 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 #events-view-filter-box { 7 #events-view-filter-box {
8 background: #efefef; 8 background: #efefef;
9 padding: 5px; 9 padding: 5px;
10 border-bottom: 1px solid gray; 10 border-bottom: 1px solid gray;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 color: #803030; 92 color: #803030;
93 } 93 }
94 94
95 #events-view-source-list-tbody .source_INIT_PROXY_RESOLVER { 95 #events-view-source-list-tbody .source_INIT_PROXY_RESOLVER {
96 color: green; 96 color: green;
97 } 97 }
98 98
99 #events-view-source-list-tbody .source_NONE { 99 #events-view-source-list-tbody .source_NONE {
100 color: red; 100 color: red;
101 } 101 }
102
103 .events-view-tab-switcher {
104 margin-top: 10px;
105 margin-left: 10px;
106 }
107
108 .events-view-tab-switcher th {
109 background: rgb(229,236,249);
110 cursor: pointer;
111 background-clip: border-box;
112 border-top-left-radius: 5px 5px;
113 border-top-right-radius: 5px 5px;
114 padding-left: 4px;
115 padding-top: 4px;
116 padding-right: 4px;
117 font-size: 12px;
118 margin-left: 30px;
119 }
120
121 .events-view-tab-switcher th.selected, .events-view-tab-switcher-line {
122 background: rgb(195,217,255);
123 }
124
125 .events-view-tab-switcher-line {
126 height: 10px;
127 }
128
129 #events-view-details-tab-handles {
130 border: 1px solid white;
131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698