OLD | NEW |
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 /* TODO(eroman): Split this file up, so the styles are defined close to where | 7 /* TODO(eroman): Split this file up, so the styles are defined close to where |
8 they are used. For instance, the proxy tab styles should | 8 they are used. For instance, the proxy tab styles should |
9 either be part of proxy_view.html, or proxy_view.css. Only | 9 either be part of proxy_view.html, or proxy_view.css. Only |
10 common styles should be declared here */ | 10 common styles should be declared here */ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 | 81 |
82 .styledTable th { | 82 .styledTable th { |
83 background: rgb(224,236,255); | 83 background: rgb(224,236,255); |
84 } | 84 } |
85 | 85 |
86 .styledTable th.title { | 86 .styledTable th.title { |
87 background: rgb(255,217,217); | 87 background: rgb(255,217,217); |
88 } | 88 } |
89 | 89 |
90 /** | 90 /** |
| 91 * Styling for event logs. |
| 92 */ |
| 93 .event-log p { |
| 94 white-space: nowrap; |
| 95 } |
| 96 |
| 97 .event-log h4 { |
| 98 margin: 0; |
| 99 } |
| 100 |
| 101 .event-log a { |
| 102 text-decoration: none; |
| 103 font-weight: bold; |
| 104 } |
| 105 |
| 106 /** |
91 * Styling for an emphasized button. | 107 * Styling for an emphasized button. |
92 */ | 108 */ |
93 .bigButton { | 109 .bigButton { |
94 font-size: 100%; | 110 font-size: 100%; |
95 font-weight: bold; | 111 font-weight: bold; |
96 } | 112 } |
97 | 113 |
98 /** | 114 /** |
99 * Styling for text indicating a potential problem or error state. | 115 * Styling for text indicating a potential problem or error state. |
100 */ | 116 */ |
101 .warningText { | 117 .warningText { |
102 color: red; | 118 color: red; |
103 } | 119 } |
104 | 120 |
105 #status-view-for-capture { | 121 #status-view-for-capture { |
106 background: red; | 122 background: red; |
107 color: #eee; | 123 color: #eee; |
108 padding: 4px; | 124 padding: 4px; |
109 } | 125 } |
110 | 126 |
111 #status-view-for-file { | 127 #status-view-for-file { |
112 background: #88c; | 128 background: #88c; |
113 color: #eee; | 129 color: #eee; |
114 padding: 4px; | 130 padding: 4px; |
115 } | 131 } |
OLD | NEW |