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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 } | 81 } |
82 | 82 |
83 list.cookie-list > .deletable-item[selected] .cookie-site { | 83 list.cookie-list > .deletable-item[selected] .cookie-site { |
84 -webkit-user-select: text; | 84 -webkit-user-select: text; |
85 } | 85 } |
86 | 86 |
87 .cookie-data { | 87 .cookie-data { |
88 display: inline-block; | 88 display: inline-block; |
89 } | 89 } |
90 | 90 |
| 91 .cookie-size { |
| 92 display: inline-block; |
| 93 float: right; |
| 94 margin-right: 3em; |
| 95 } |
| 96 |
91 list.cookie-list > .deletable-item[selected] .cookie-data { | 97 list.cookie-list > .deletable-item[selected] .cookie-data { |
92 -webkit-user-select: text; | 98 -webkit-user-select: text; |
93 } | 99 } |
94 | 100 |
95 | 101 |
96 /* styles for the individual items (cookies, etc.) */ | 102 /* styles for the individual items (cookies, etc.) */ |
97 .cookie-items { | 103 .cookie-items { |
98 /* notice that the margin and padding match up with those above */ | 104 /* notice that the margin and padding match up with those above */ |
99 -webkit-margin-start: 11em; | 105 -webkit-margin-start: 11em; |
100 -webkit-padding-start: 7px; | 106 -webkit-padding-start: 7px; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 | 173 |
168 .cookie-details-label { | 174 .cookie-details-label { |
169 vertical-align: top; | 175 vertical-align: top; |
170 white-space: pre; | 176 white-space: pre; |
171 width: 10em; | 177 width: 10em; |
172 } | 178 } |
173 | 179 |
174 .cookie-details-value { | 180 .cookie-details-value { |
175 word-wrap: break-word; | 181 word-wrap: break-word; |
176 } | 182 } |
OLD | NEW |