[email protected] | fd9c0d9 | 2010-03-23 17:47:49 | [diff] [blame] | 1 | /* |
| 2 | Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 3 | Use of this source code is governed by a BSD-style license that can be |
| 4 | found in the LICENSE file. |
| 5 | */ |
| 6 | |
| 7 | * { |
| 8 | -webkit-box-sizing: border-box; |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 9 | -moz-box-sizing: border-box; |
[email protected] | fd9c0d9 | 2010-03-23 17:47:49 | [diff] [blame] | 10 | } |
| 11 | body { |
| 12 | font-family: sans-serif; |
| 13 | } |
| 14 | |
| 15 | #filterBox { |
| 16 | background: #efefef; |
| 17 | padding: 5px; |
| 18 | border-bottom: 1px solid gray; |
| 19 | overflow: hidden; |
| 20 | } |
| 21 | |
| 22 | #filterBox * { |
| 23 | white-space: nowrap; |
| 24 | font-family: sans-serif; |
| 25 | font-size: 12px; |
| 26 | } |
| 27 | |
| 28 | #filterBox input { |
| 29 | width: 100%; |
| 30 | } |
| 31 | |
| 32 | #actionBox { |
| 33 | background: #efefef; |
| 34 | white-space: nowrap; |
| 35 | border-top: 1px solid gray; |
| 36 | overflow: hidden; |
| 37 | } |
| 38 | |
| 39 | #requestsBox { |
| 40 | overflow-x: hidden; |
| 41 | overflow-y: auto |
| 42 | } |
| 43 | |
| 44 | #detailsBox { |
| 45 | overflow: auto; |
| 46 | } |
| 47 | |
| 48 | #splitterBox { |
| 49 | background: #bfbfbf; |
| 50 | border-left: 1px inset black; |
| 51 | border-right: 1px solid black; |
| 52 | position:absolute; |
| 53 | width: 8px; |
| 54 | cursor: col-resize; |
| 55 | user-select: none; |
| 56 | } |
| 57 | |
| 58 | #requestsListTable { |
| 59 | cursor: pointer; |
| 60 | } |
| 61 | |
| 62 | #requestsListTable thead td { |
| 63 | text-align: left; |
| 64 | font-weight: bold; |
| 65 | background: rgb(229, 236, 249); |
| 66 | } |
| 67 | |
| 68 | #requestsListTable td { |
| 69 | padding: 3px; |
| 70 | border-left: 1px solid #afafaf; |
| 71 | border-bottom: 1px solid #afafaf; |
| 72 | text-overflow: ellipsis; |
| 73 | font-size: 12px; |
| 74 | white-space: nowrap; |
| 75 | } |
| 76 | |
| 77 | #requestsListTableBody .mouseover { |
| 78 | background: rgb(244,244,255); |
| 79 | } |
| 80 | |
| 81 | #requestsListTableBody .selected, |
| 82 | #requestsListTableBody .mouseover .selected { |
| 83 | background: #C3D9FF; |
| 84 | } |
| 85 | |
| 86 | #requestsListTableBody .source_CONNECT_JOB { |
| 87 | color: blue; |
| 88 | } |
| 89 | |
| 90 | #requestsListTableBody .source_INIT_PROXY_RESOLVER { |
| 91 | color: orange; |
| 92 | } |
| 93 | |
| 94 | .tabSwitcher { |
| 95 | margin-top: 10px; |
| 96 | margin-left: 10px; |
| 97 | } |
| 98 | |
| 99 | .tabSwitcher th { |
| 100 | background: rgb(229,236,249); |
| 101 | cursor: pointer; |
| 102 | background-clip: border-box; |
| 103 | border-top-left-radius: 5px 5px; |
| 104 | border-top-right-radius: 5px 5px; |
| 105 | padding-left: 4px; |
| 106 | padding-top: 4px; |
| 107 | padding-right: 4px; |
| 108 | font-size: 12px; |
| 109 | margin-left: 30px; |
| 110 | } |
| 111 | |
| 112 | .tabSwitcher th.selected, .tabSwitcherLine { |
| 113 | background: rgb(195,217,255); |
| 114 | } |
| 115 | |
| 116 | .tabSwitcherLine { |
| 117 | height: 10px; |
| 118 | } |
| 119 | |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 120 | #detailsTabHandles { |
| 121 | border: 1px solid white; |
[email protected] | fd9c0d9 | 2010-03-23 17:47:49 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | .logSourceEntry { |
| 125 | margin: 5px; |
| 126 | } |
| 127 | |
| 128 | .logSourceEntry * p { |
| 129 | font-weight: bold; |
| 130 | font-size: 12px; |
| 131 | } |
| 132 | |
| 133 | .logSourceEntry * td { |
| 134 | font-size: 10px; |
| 135 | } |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 136 | |
| 137 | #categoryTabHandles ul { |
| 138 | list-style: none; |
| 139 | padding: 0; |
| 140 | margin: 0; |
| 141 | } |
| 142 | |
| 143 | #categoryTabHandles { |
| 144 | border-bottom: 1px solid #555; |
| 145 | background: #aaa; |
| 146 | } |
| 147 | |
| 148 | #categoryTabHandles li { |
| 149 | float: left; |
| 150 | margin-left: 5px; |
| 151 | } |
| 152 | |
| 153 | #categoryTabHandles a { |
| 154 | text-decoration: none; |
| 155 | text-align: center; |
| 156 | display: block; |
| 157 | width: 9em; |
| 158 | padding: 5px; |
| 159 | background: #ccc; |
| 160 | } |
| 161 | |
| 162 | #categoryTabHandles a:hover { |
| 163 | background: #eee; |
| 164 | } |
| 165 | |
| 166 | #categoryTabHandles a:visited, |
| 167 | #categoryTabHandles a { |
| 168 | color: blue; |
| 169 | } |
| 170 | |
| 171 | #categoryTabHandles .selected { |
| 172 | background: white; |
| 173 | } |
| 174 | |
| 175 | #categoryTabHandles a.selected { |
| 176 | position:relative; |
| 177 | top: 1px; |
| 178 | font-weight: bold; |
| 179 | color: black; |
| 180 | } |
| 181 | |
| 182 | #detailsLogBox, |
[email protected] | a0360d8 | 2010-04-05 19:28:36 | [diff] [blame^] | 183 | #detailsTimelineBox, |
| 184 | #proxyTabContent { |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 185 | overflow: auto; |
| 186 | } |
[email protected] | a0360d8 | 2010-04-05 19:28:36 | [diff] [blame^] | 187 | |
| 188 | #proxyTabContent { |
| 189 | padding-left: 20px; |
| 190 | } |
| 191 | |
| 192 | #proxyTabContent td, |
| 193 | #proxyTabContent th { |
| 194 | font-size: 12px; |
| 195 | } |