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 | 6 |
7 /* styles for the cookies list elements in cookies_view.html */ | 7 /* styles for the cookies list elements in cookies_view.html */ |
8 #remove-all-cookies-search-column { | 8 #remove-all-cookies-search-column { |
9 bottom: 10px; | 9 bottom: 10px; |
10 position: absolute; | 10 position: absolute; |
(...skipping 24 matching lines...) Expand all Loading... |
35 } | 35 } |
36 | 36 |
37 #cookies-data-column { | 37 #cookies-data-column { |
38 -webkit-padding-start: 7px; | 38 -webkit-padding-start: 7px; |
39 display: inline-block; | 39 display: inline-block; |
40 font-weight: bold; | 40 font-weight: bold; |
41 } | 41 } |
42 | 42 |
43 #cookies-list { | 43 #cookies-list { |
44 border: 1px solid #D9D9D9; | 44 border: 1px solid #D9D9D9; |
45 /* it would be nice if we could make this expand as necessary up to the height | |
46 * of the window, but the panel doesn't have a known height and that would | |
47 * probably confuse cr.ui.List (which doesn't expect that) anyway */ | |
48 height: 600px; | |
49 margin: 0; | 45 margin: 0; |
50 } | 46 } |
51 | 47 |
52 | 48 |
53 /* enable animating the height of items */ | 49 /* enable animating the height of items */ |
54 list.cookie-list .deletable-item { | 50 list.cookie-list .deletable-item { |
55 -webkit-transition: height .15s ease-in-out; | 51 -webkit-transition: height .15s ease-in-out; |
56 } | 52 } |
57 | 53 |
58 /* disable webkit-box display */ | 54 /* disable webkit-box display */ |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 | 167 |
172 .cookie-details-label { | 168 .cookie-details-label { |
173 vertical-align: top; | 169 vertical-align: top; |
174 white-space: pre; | 170 white-space: pre; |
175 width: 10em; | 171 width: 10em; |
176 } | 172 } |
177 | 173 |
178 .cookie-details-value { | 174 .cookie-details-value { |
179 word-wrap: break-word; | 175 word-wrap: break-word; |
180 } | 176 } |
OLD | NEW |