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/main.css

Issue 21944004: Enable the accessibility audit for chrome://net-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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 /* Only common styles should be declared here. */ 6 /* Only common styles should be declared here. */
7 7
8 * { 8 * {
9 box-sizing: border-box; 9 box-sizing: border-box;
10 } 10 }
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 96
97 .event-log a { 97 .event-log a {
98 font-weight: bold; 98 font-weight: bold;
99 text-decoration: none; 99 text-decoration: none;
100 } 100 }
101 101
102 /** 102 /**
103 * Styling for text indicating a potential problem or error state. 103 * Styling for text indicating a potential problem or error state.
104 */ 104 */
105 .warning-text { 105 .warning-text {
106 color: red; 106 color: rgb(238, 0, 0);
107 } 107 }
108 108
109 /** 109 /**
110 * Styling for help windows that appear when mousing over an element. 110 * Styling for help windows that appear when mousing over an element.
111 */ 111 */
112 .mouse-over-help { 112 .mouse-over-help {
113 background: #EEE; 113 background: #EEE;
114 border: 1px solid black; 114 border: 1px solid black;
115 font-size: 80%; 115 font-size: 80%;
116 padding: 5px; 116 padding: 5px;
117 z-index: 1; 117 z-index: 1;
118 } 118 }
119 119
120 /** 120 /**
121 * Styling for elements that show a help window on mouse over. 121 * Styling for elements that show a help window on mouse over.
122 */ 122 */
123 .mouse-over-help-hover { 123 .mouse-over-help-hover {
124 color: blue; 124 color: blue;
125 cursor: help; 125 cursor: help;
126 } 126 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/import_view.html ('k') | chrome/browser/resources/net_internals/source_row.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698