| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 #capture-view-tab-content, | 50 #capture-view-tab-content, |
| 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 #logs-view-tab-content, |
| 60 #prerender-view-tab-content, | 61 #prerender-view-tab-content, |
| 61 #logs-view-tab-content { | 62 #chromeos-view-tab-content { |
| 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 } |
| 72 | 73 |
| 73 table.styledTable, | 74 table.styledTable, |
| 74 .styledTable th, | 75 .styledTable th, |
| 75 .styledTable td { | 76 .styledTable td { |
| 76 border: 1px solid #777; | 77 border: 1px solid #777; |
| 77 padding-right: 4px; | 78 padding-right: 4px; |
| 78 padding-left: 4px; | 79 padding-left: 4px; |
| 79 } | 80 } |
| 80 | 81 |
| (...skipping 24 matching lines...) Expand all 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 |