OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 <include src="../search_header.css"> | 5 <include src="../search_header.css"> |
6 | 6 |
7 html, | 7 html, |
8 body { | 8 body { |
9 cursor: default; | 9 cursor: default; |
10 height: 100%; | 10 height: 100%; |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 * |div.url||div.label| - so we need padding at the right of URL, not at the | 94 * |div.url||div.label| - so we need padding at the right of URL, not at the |
95 * left. And since url is always LTR, that is padding at the end, not the start. | 95 * left. And since url is always LTR, that is padding at the end, not the start. |
96 */ | 96 */ |
97 html[dir=rtl] list .url { | 97 html[dir=rtl] list .url { |
98 -webkit-padding-end: 20px; | 98 -webkit-padding-end: 20px; |
99 -webkit-padding-start: 0; | 99 -webkit-padding-start: 0; |
100 text-align: right; | 100 text-align: right; |
101 } | 101 } |
102 | 102 |
103 list > * > button { | 103 list > * > button { |
104 -webkit-transition: opacity 150ms; | |
105 background: #fff no-repeat center center; | 104 background: #fff no-repeat center center; |
106 border: 1px solid hsl(214, 91%, 85%); | 105 border: 1px solid hsl(214, 91%, 85%); |
107 border-radius: 3px; | 106 border-radius: 3px; |
108 bottom: 1px; | 107 bottom: 1px; |
109 display: none; | 108 display: none; |
110 overflow: hidden; | 109 overflow: hidden; |
111 padding: 0; | 110 padding: 0; |
112 position: absolute; | 111 position: absolute; |
113 right: 3px; | 112 right: 3px; |
114 top: 1px; | 113 top: 1px; |
| 114 transition: opacity 150ms; |
115 width: 15px; | 115 width: 15px; |
116 } | 116 } |
117 | 117 |
118 list > [selected]:hover > button, | 118 list > [selected]:hover > button, |
119 list > * > button[menu-shown] { | 119 list > * > button[menu-shown] { |
120 border-color: hsl(214, 91%, 65%); | 120 border-color: hsl(214, 91%, 65%); |
121 } | 121 } |
122 | 122 |
123 list > :hover > button { | 123 list > :hover > button { |
124 display: block; | 124 display: block; |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 | 383 |
384 list [editing] input, | 384 list [editing] input, |
385 .tree-item [editing] input { | 385 .tree-item [editing] input { |
386 padding: 3px 0; | 386 padding: 3px 0; |
387 } | 387 } |
388 | 388 |
389 .tree-row .expand-icon { | 389 .tree-row .expand-icon { |
390 top: 6px; | 390 top: 6px; |
391 } | 391 } |
392 } | 392 } |
OLD | NEW |