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

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

Issue 21944004: Enable the accessibility audit for chrome://net-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 #events-view-filter-box { 6 #events-view-filter-box {
7 background: #efefef; 7 background: #efefef;
8 border-bottom: 1px solid #aaa; 8 border-bottom: 1px solid #aaa;
9 font-family: sans-serif; 9 font-family: sans-serif;
10 font-size: 75%; 10 font-size: 75%;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 #events-view-source-list-tbody .source-download { 93 #events-view-source-list-tbody .source-download {
94 color: rgb(112, 112, 0); 94 color: rgb(112, 112, 0);
95 } 95 }
96 96
97 #events-view-source-list-tbody .source-filestream { 97 #events-view-source-list-tbody .source-filestream {
98 color: rgb(112, 0, 112); 98 color: rgb(112, 0, 112);
99 } 99 }
100 100
101 #events-view-source-list-tbody .source-ipv6-probe-job { 101 #events-view-source-list-tbody .source-ipv6-probe-job {
102 color: red; 102 color: rgb(235, 0, 0);
103 } 103 }
104 104
105 #events-view-source-list-tbody .source-none { 105 #events-view-source-list-tbody .source-none {
106 color: red; 106 color: rgb(235, 0, 0);
mmenke 2013/08/05 16:23:13 Any reason we're using rgb(235,0,0) here and #e00
107 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698