| 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 #events-view-filter-box { | 7 #events-view-filter-box { |
| 8 background: #efefef; | 8 background: #efefef; |
| 9 padding: 5px; | 9 padding: 5px; |
| 10 border-bottom: 1px solid gray; | 10 border-bottom: 1px solid gray; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 color: #803030; | 92 color: #803030; |
| 93 } | 93 } |
| 94 | 94 |
| 95 #events-view-source-list-tbody .source_INIT_PROXY_RESOLVER { | 95 #events-view-source-list-tbody .source_INIT_PROXY_RESOLVER { |
| 96 color: green; | 96 color: green; |
| 97 } | 97 } |
| 98 | 98 |
| 99 #events-view-source-list-tbody .source_NONE { | 99 #events-view-source-list-tbody .source_NONE { |
| 100 color: red; | 100 color: red; |
| 101 } | 101 } |
| 102 | |
| 103 .events-view-tab-switcher { | |
| 104 margin-top: 10px; | |
| 105 margin-left: 10px; | |
| 106 } | |
| 107 | |
| 108 .events-view-tab-switcher th { | |
| 109 background: rgb(229,236,249); | |
| 110 cursor: pointer; | |
| 111 background-clip: border-box; | |
| 112 border-top-left-radius: 5px 5px; | |
| 113 border-top-right-radius: 5px 5px; | |
| 114 padding-left: 4px; | |
| 115 padding-top: 4px; | |
| 116 padding-right: 4px; | |
| 117 font-size: 12px; | |
| 118 margin-left: 30px; | |
| 119 } | |
| 120 | |
| 121 .events-view-tab-switcher th.selected, .events-view-tab-switcher-line { | |
| 122 background: rgb(195,217,255); | |
| 123 } | |
| 124 | |
| 125 .events-view-tab-switcher-line { | |
| 126 height: 10px; | |
| 127 } | |
| 128 | |
| 129 #events-view-details-tab-handles { | |
| 130 border: 1px solid white; | |
| 131 } | |
| OLD | NEW |