[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 | |
[email protected] | ee094b8 | 2010-08-24 15:55:51 | [diff] [blame] | 90 | #requestsListTableBody .source_HOST_RESOLVER_IMPL_JOB, |
| 91 | #requestsListTableBody .source_HOST_RESOLVER_IMPL_REQUEST { |
| 92 | color: #308080; |
| 93 | } |
| 94 | |
[email protected] | f02f2ae | 2010-05-07 23:00:15 | [diff] [blame] | 95 | #requestsListTableBody .source_SOCKET { |
| 96 | color: purple; |
| 97 | } |
| 98 | |
[email protected] | fd9c0d9 | 2010-03-23 17:47:49 | [diff] [blame] | 99 | #requestsListTableBody .source_INIT_PROXY_RESOLVER { |
[email protected] | f02f2ae | 2010-05-07 23:00:15 | [diff] [blame] | 100 | color: green; |
[email protected] | fd9c0d9 | 2010-03-23 17:47:49 | [diff] [blame] | 101 | } |
| 102 | |
[email protected] | 02d8d78 | 2010-07-12 18:15:20 | [diff] [blame] | 103 | #requestsListTableBody .source_NONE { |
| 104 | color: red; |
| 105 | } |
| 106 | |
[email protected] | fd9c0d9 | 2010-03-23 17:47:49 | [diff] [blame] | 107 | .tabSwitcher { |
| 108 | margin-top: 10px; |
| 109 | margin-left: 10px; |
| 110 | } |
| 111 | |
| 112 | .tabSwitcher th { |
| 113 | background: rgb(229,236,249); |
| 114 | cursor: pointer; |
| 115 | background-clip: border-box; |
| 116 | border-top-left-radius: 5px 5px; |
| 117 | border-top-right-radius: 5px 5px; |
| 118 | padding-left: 4px; |
| 119 | padding-top: 4px; |
| 120 | padding-right: 4px; |
| 121 | font-size: 12px; |
| 122 | margin-left: 30px; |
| 123 | } |
| 124 | |
| 125 | .tabSwitcher th.selected, .tabSwitcherLine { |
| 126 | background: rgb(195,217,255); |
| 127 | } |
| 128 | |
| 129 | .tabSwitcherLine { |
| 130 | height: 10px; |
| 131 | } |
| 132 | |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 133 | #detailsTabHandles { |
| 134 | border: 1px solid white; |
[email protected] | fd9c0d9 | 2010-03-23 17:47:49 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | .logSourceEntry { |
| 138 | margin: 5px; |
| 139 | } |
| 140 | |
| 141 | .logSourceEntry * p { |
| 142 | font-weight: bold; |
| 143 | font-size: 12px; |
| 144 | } |
| 145 | |
| 146 | .logSourceEntry * td { |
| 147 | font-size: 10px; |
| 148 | } |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 149 | |
| 150 | #categoryTabHandles ul { |
| 151 | list-style: none; |
| 152 | padding: 0; |
| 153 | margin: 0; |
| 154 | } |
| 155 | |
| 156 | #categoryTabHandles { |
| 157 | border-bottom: 1px solid #555; |
| 158 | background: #aaa; |
[email protected] | 2bd19d9b | 2010-05-11 00:58:24 | [diff] [blame] | 159 | overflow: hidden; |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | #categoryTabHandles li { |
| 163 | float: left; |
| 164 | margin-left: 5px; |
| 165 | } |
| 166 | |
| 167 | #categoryTabHandles a { |
| 168 | text-decoration: none; |
| 169 | text-align: center; |
[email protected] | 2bd19d9b | 2010-05-11 00:58:24 | [diff] [blame] | 170 | display: inline-block; |
| 171 | margin-top: 4px; |
| 172 | padding: 5px 10px 3px 10px; |
| 173 | -webkit-border-top-right-radius: 8px; |
| 174 | -webkit-border-top-left-radius: 8px; |
| 175 | background-clip: border-box; |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 176 | background: #ccc; |
| 177 | } |
| 178 | |
| 179 | #categoryTabHandles a:hover { |
| 180 | background: #eee; |
| 181 | } |
| 182 | |
| 183 | #categoryTabHandles a:visited, |
| 184 | #categoryTabHandles a { |
| 185 | color: blue; |
| 186 | } |
| 187 | |
| 188 | #categoryTabHandles .selected { |
| 189 | background: white; |
| 190 | } |
| 191 | |
| 192 | #categoryTabHandles a.selected { |
| 193 | position:relative; |
[email protected] | 2bd19d9b | 2010-05-11 00:58:24 | [diff] [blame] | 194 | top: 3px; |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 195 | color: black; |
| 196 | } |
| 197 | |
| 198 | #detailsLogBox, |
[email protected] | a0360d8 | 2010-04-05 19:28:36 | [diff] [blame] | 199 | #detailsTimelineBox, |
[email protected] | 41cc8f7 | 2010-05-10 17:52:02 | [diff] [blame] | 200 | #httpCacheTabContent, |
[email protected] | 483bf12 | 2010-05-04 20:41:24 | [diff] [blame] | 201 | #proxyTabContent, |
| 202 | #dataTabContent, |
| 203 | #dnsTabContent, |
[email protected] | 59d7a5a | 2010-08-30 16:44:27 | [diff] [blame] | 204 | #socketsTabContent, |
[email protected] | 483bf12 | 2010-05-04 20:41:24 | [diff] [blame] | 205 | #testTabContent { |
[email protected] | daac752 | 2010-04-02 18:28:52 | [diff] [blame] | 206 | overflow: auto; |
[email protected] | 483bf12 | 2010-05-04 20:41:24 | [diff] [blame] | 207 | padding: 10px; |
[email protected] | a0360d8 | 2010-04-05 19:28:36 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | #proxyTabContent td, |
| 211 | #proxyTabContent th { |
| 212 | font-size: 12px; |
| 213 | } |
[email protected] | 096559bd | 2010-05-11 06:14:51 | [diff] [blame] | 214 | |
| 215 | /* |
| 216 | * Styles for TABLE that uses a thin collapsed border. |
| 217 | */ |
| 218 | table.styledTable { |
| 219 | border-collapse:collapse; |
| 220 | } |
| 221 | |
| 222 | table.styledTable, |
| 223 | .styledTable th, |
| 224 | .styledTable td { |
| 225 | border: 1px solid #777; |
[email protected] | 59d7a5a | 2010-08-30 16:44:27 | [diff] [blame] | 226 | padding-right: 4px; |
| 227 | padding-left: 4px; |
[email protected] | 096559bd | 2010-05-11 06:14:51 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | .styledTable th { |
| 231 | background: rgb(224,236,255); |
| 232 | } |
| 233 | |
[email protected] | ba00b49 | 2010-09-08 14:53:38 | [diff] [blame^] | 234 | .styledTable th.title { |
| 235 | background: rgb(255,217,217); |
| 236 | } |
| 237 | |
[email protected] | 4f62f6565 | 2010-09-07 21:39:06 | [diff] [blame] | 238 | /* |
| 239 | * This is the box in the top right of the Data tab which shows how many |
| 240 | * events have been captured so far. |
| 241 | */ |
| 242 | .capturingBox { |
| 243 | border: 1px dashed black; |
| 244 | display: inline-block; |
| 245 | text-align: left; |
| 246 | padding: 5px; |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * Styling for an emphasized button. |
| 251 | */ |
| 252 | .bigButton { |
| 253 | font-size: 100%; |
| 254 | font-weight: bold; |
| 255 | } |