| 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 text-align: right; |
| 10 position: absolute; | |
| 11 right: 0; | |
| 12 } | 10 } |
| 13 | 11 |
| 14 html[dir=rtl] #remove-all-cookies-search-column { | 12 html[dir=rtl] #remove-all-cookies-search-column { |
| 15 left: 0; | 13 left: 0; |
| 16 right: auto; | 14 right: auto; |
| 17 } | 15 } |
| 18 | 16 |
| 19 #cookies-column-headers { | 17 #cookies-column-headers { |
| 20 position: relative; | 18 position: relative; |
| 21 width: 100%; | 19 width: 100%; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 33 font-weight: bold; | 31 font-weight: bold; |
| 34 width: 11em; | 32 width: 11em; |
| 35 } | 33 } |
| 36 | 34 |
| 37 #cookies-data-column { | 35 #cookies-data-column { |
| 38 -webkit-padding-start: 7px; | 36 -webkit-padding-start: 7px; |
| 39 display: inline-block; | 37 display: inline-block; |
| 40 font-weight: bold; | 38 font-weight: bold; |
| 41 } | 39 } |
| 42 | 40 |
| 41 #cookies-size-column { |
| 42 display: inline-block; |
| 43 font-weight: bold; |
| 44 float: right; |
| 45 margin-right: 3em; |
| 46 } |
| 47 |
| 43 #cookies-list { | 48 #cookies-list { |
| 44 border: 1px solid #D9D9D9; | 49 border: 1px solid #D9D9D9; |
| 45 margin: 0; | 50 margin: 0; |
| 46 } | 51 } |
| 47 | 52 |
| 48 | 53 |
| 49 /* enable animating the height of items */ | 54 /* enable animating the height of items */ |
| 50 list.cookie-list .deletable-item { | 55 list.cookie-list .deletable-item { |
| 51 -webkit-transition: height .15s ease-in-out; | 56 -webkit-transition: height .15s ease-in-out; |
| 52 } | 57 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 81 } | 86 } |
| 82 | 87 |
| 83 list.cookie-list > .deletable-item[selected] .cookie-site { | 88 list.cookie-list > .deletable-item[selected] .cookie-site { |
| 84 -webkit-user-select: text; | 89 -webkit-user-select: text; |
| 85 } | 90 } |
| 86 | 91 |
| 87 .cookie-data { | 92 .cookie-data { |
| 88 display: inline-block; | 93 display: inline-block; |
| 89 } | 94 } |
| 90 | 95 |
| 96 .cookie-size { |
| 97 display: inline-block; |
| 98 float: right; |
| 99 margin-right: 3em; |
| 100 } |
| 101 |
| 91 list.cookie-list > .deletable-item[selected] .cookie-data { | 102 list.cookie-list > .deletable-item[selected] .cookie-data { |
| 92 -webkit-user-select: text; | 103 -webkit-user-select: text; |
| 93 } | 104 } |
| 94 | 105 |
| 95 | 106 |
| 96 /* styles for the individual items (cookies, etc.) */ | 107 /* styles for the individual items (cookies, etc.) */ |
| 97 .cookie-items { | 108 .cookie-items { |
| 98 /* notice that the margin and padding match up with those above */ | 109 /* notice that the margin and padding match up with those above */ |
| 99 -webkit-margin-start: 11em; | 110 -webkit-margin-start: 11em; |
| 100 -webkit-padding-start: 7px; | 111 -webkit-padding-start: 7px; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 178 |
| 168 .cookie-details-label { | 179 .cookie-details-label { |
| 169 vertical-align: top; | 180 vertical-align: top; |
| 170 white-space: pre; | 181 white-space: pre; |
| 171 width: 10em; | 182 width: 10em; |
| 172 } | 183 } |
| 173 | 184 |
| 174 .cookie-details-value { | 185 .cookie-details-value { |
| 175 word-wrap: break-word; | 186 word-wrap: break-word; |
| 176 } | 187 } |
| OLD | NEW |