Chromium Code Reviews| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 51 #import-view-tab-content, | 51 #import-view-tab-content, |
| 52 #export-view-tab-content, | 52 #export-view-tab-content, |
| 53 #dns-view-tab-content, | 53 #dns-view-tab-content, |
| 54 #sockets-view-tab-content, | 54 #sockets-view-tab-content, |
| 55 #spdy-view-tab-content, | 55 #spdy-view-tab-content, |
| 56 #service-providers-view-tab-content, | 56 #service-providers-view-tab-content, |
| 57 #test-view-tab-content, | 57 #test-view-tab-content, |
| 58 #hsts-view-tab-content, | 58 #hsts-view-tab-content, |
| 59 #http-throttling-view-tab-content, | 59 #http-throttling-view-tab-content, |
| 60 #prerender-view-tab-content, | 60 #prerender-view-tab-content, |
| 61 #chromeos-view-tab-content, | |
| 61 #logs-view-tab-content { | 62 #logs-view-tab-content { |
|
mmenke
2011/12/02 15:07:55
While you're modifying this file, mind putting log
achuithb
2011/12/02 19:49:10
Done.
| |
| 62 overflow: auto; | 63 overflow: auto; |
| 63 padding: 10px; | 64 padding: 10px; |
| 64 } | 65 } |
| 65 | 66 |
| 66 /* | 67 /* |
| 67 * Styles for TABLE that uses a thin collapsed border. | 68 * Styles for TABLE that uses a thin collapsed border. |
| 68 */ | 69 */ |
| 69 table.styledTable { | 70 table.styledTable { |
| 70 border-collapse:collapse; | 71 border-collapse:collapse; |
| 71 } | 72 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 105 background: red; | 106 background: red; |
| 106 color: #eee; | 107 color: #eee; |
| 107 padding: 4px; | 108 padding: 4px; |
| 108 } | 109 } |
| 109 | 110 |
| 110 #status-view-for-file { | 111 #status-view-for-file { |
| 111 background: #88c; | 112 background: #88c; |
| 112 color: #eee; | 113 color: #eee; |
| 113 padding: 4px; | 114 padding: 4px; |
| 114 } | 115 } |
| OLD | NEW |