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

Side by Side Diff: netlog_viewer/events_view.css

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 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
« no previous file with comments | « netlog_viewer/events_tracker.js ('k') | netlog_viewer/events_view.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 #events-view-filter-box {
7 background: #efefef;
8 border-bottom: 1px solid #aaa;
9 overflow: hidden;
10 padding: 5px;
11 white-space: nowrap;
12 }
13
14 #events-view-filter-box input {
15 width: 100%;
16 }
17
18 #events-view-action-box {
19 background: #efefef;
20 border-top: 1px solid gray;
21 overflow: hidden;
22 white-space: nowrap;
23 }
24
25 #events-view-source-list {
26 overflow-x: hidden;
27 overflow-y: auto
28 }
29
30 #events-view-source-list-table {
31 cursor: pointer;
32 }
33
34 #events-view-source-list-table thead td {
35 background: rgb(229, 236, 249);
36 font-weight: bold;
37 text-align: left;
38 }
39
40 #events-view-source-list-table td {
41 border-bottom: 1px solid #afafaf;
42 border-left: 1px solid #afafaf;
43 padding: 3px;
44 text-overflow: ellipsis;
45 white-space: nowrap;
46 }
47
48 #events-view-source-list-tbody .mouseover {
49 background: rgb(244,244,255);
50 }
51
52 #events-view-source-list-tbody .selected {
53 background: rgb(195, 217, 255);
54 }
55
56 #events-view-source-list-tbody .error {
57 background: rgb(255, 245, 245);
58 }
59
60 #events-view-source-list-tbody .inactive {
61 background: rgb(245, 255, 245);
62 }
63
64 #events-view-source-list-tbody .source-connect-job {
65 color: blue;
66 }
67
68 #events-view-source-list-tbody .source-host-resolver-impl-job,
69 #events-view-source-list-tbody .source-host-resolver-impl-request {
70 color: rgb(32, 96, 96);
71 }
72
73 #events-view-source-list-tbody .source-disk-cache-entry,
74 #events-view-source-list-tbody .source-memory-cache-entry {
75 color: #707070;
76 }
77
78 #events-view-source-list-tbody .source-socket {
79 color: purple;
80 }
81
82 #events-view-source-list-tbody .source-udp-socket {
83 color: rgb(128, 48, 48);
84 }
85
86 #events-view-source-list-tbody .source-proxy-script-decider {
87 color: green;
88 }
89
90 #events-view-source-list-tbody .source-download {
91 color: rgb(112, 112, 0);
92 }
93
94 #events-view-source-list-tbody .source-filestream {
95 color: rgb(112, 0, 112);
96 }
97
98 #events-view-source-list-tbody .source-ipv6-probe-job {
99 color: rgb(235, 0, 0);
100 }
101
102 #events-view-source-list-tbody .source-none {
103 color: rgb(235, 0, 0);
104 }
105
OLDNEW
« no previous file with comments | « netlog_viewer/events_tracker.js ('k') | netlog_viewer/events_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698