OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 html, body { | 6 html, body { |
7 margin: 0; | 7 margin: 0; |
8 width: 100%; | 8 width: 100%; |
9 height: 100%; | 9 height: 100%; |
10 cursor: default; | 10 cursor: default; |
(...skipping 23 matching lines...) Expand all Loading... |
34 -webkit-box-sizing: border-box; | 34 -webkit-box-sizing: border-box; |
35 -webkit-padding-start: 20px; | 35 -webkit-padding-start: 20px; |
36 background: 0 50% no-repeat; | 36 background: 0 50% no-repeat; |
37 overflow: hidden; | 37 overflow: hidden; |
38 text-overflow: ellipsis; | 38 text-overflow: ellipsis; |
39 white-space: pre; /* Don't collapse whitespace */ | 39 white-space: pre; /* Don't collapse whitespace */ |
40 } | 40 } |
41 | 41 |
42 list > * > .label { | 42 list > * > .label { |
43 -webkit-transition: all .15s; | 43 -webkit-transition: all .15s; |
44 cursor: pointer; | |
45 color: black; | 44 color: black; |
46 display: inline-block; /* We need to use inline-block here due to RTL. */ | 45 display: inline-block; /* We need to use inline-block here due to RTL. */ |
47 } | 46 } |
48 | 47 |
49 list > :hover > .label { | |
50 text-decoration: underline; | |
51 color: blue; | |
52 } | |
53 | |
54 list > * > .url { | 48 list > * > .url { |
55 display: none; | 49 display: none; |
56 } | 50 } |
57 | 51 |
58 list > :hover > .url, | 52 list > :hover > .url, |
59 list > [selected] > .url { | 53 list > [selected] > .url { |
60 display: inline; | 54 display: inline; |
61 } | 55 } |
62 | 56 |
63 html[dir=rtl] list .label { | 57 html[dir=rtl] list .label { |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 background: -webkit-canvas(drop-down-arrow) 100% 50% no-repeat; | 289 background: -webkit-canvas(drop-down-arrow) 100% 50% no-repeat; |
296 padding-right: 11px; | 290 padding-right: 11px; |
297 -webkit-margin-start: 10px; | 291 -webkit-margin-start: 10px; |
298 } | 292 } |
299 | 293 |
300 html[dir=rtl] .summary button { | 294 html[dir=rtl] .summary button { |
301 background-position: 0% 50%; | 295 background-position: 0% 50%; |
302 padding-right: 0; | 296 padding-right: 0; |
303 padding-left: 11px; | 297 padding-left: 11px; |
304 } | 298 } |
OLD | NEW |