| 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 /* Styles for the cookies list page. */ | 5 /* Styles for the cookies list page. */ |
| 6 .cookies-view-page { | 6 .cookies-view-page { |
| 7 height: 90%; | 7 height: 90%; |
| 8 margin-left: -15px; | 8 margin-left: -15px; |
| 9 width: 720px; | 9 width: 720px; |
| 10 } | 10 } |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 width: 14em; | 50 width: 14em; |
| 51 } | 51 } |
| 52 | 52 |
| 53 .cookies-data-column { | 53 .cookies-data-column { |
| 54 -webkit-box-flex: 1; | 54 -webkit-box-flex: 1; |
| 55 -webkit-padding-start: 7px; | 55 -webkit-padding-start: 7px; |
| 56 } | 56 } |
| 57 | 57 |
| 58 /* Enable animating the height of items. */ | 58 /* Enable animating the height of items. */ |
| 59 list.cookie-list .deletable-item { | 59 list.cookie-list .deletable-item { |
| 60 -webkit-transition: height 150ms ease-in-out; | 60 transition: height 150ms ease-in-out; |
| 61 } | 61 } |
| 62 | 62 |
| 63 /* Disable webkit-box display. */ | 63 /* Disable webkit-box display. */ |
| 64 list.cookie-list .deletable-item > :first-child { | 64 list.cookie-list .deletable-item > :first-child { |
| 65 display: block; | 65 display: block; |
| 66 } | 66 } |
| 67 | 67 |
| 68 /* Force the X for deleting an origin to stay at the top. */ | 68 /* Force the X for deleting an origin to stay at the top. */ |
| 69 list.cookie-list > .deletable-item > .close-button { | 69 list.cookie-list > .deletable-item > .close-button { |
| 70 position: absolute; | 70 position: absolute; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 list.cookie-list > .deletable-item[selected] .cookie-data { | 108 list.cookie-list > .deletable-item[selected] .cookie-data { |
| 109 -webkit-user-select: text; | 109 -webkit-user-select: text; |
| 110 } | 110 } |
| 111 | 111 |
| 112 | 112 |
| 113 /* Styles for the individual items (cookies, etc.). */ | 113 /* Styles for the individual items (cookies, etc.). */ |
| 114 .cookie-items { | 114 .cookie-items { |
| 115 /* Notice that the margin and padding match up with those above. */ | 115 /* Notice that the margin and padding match up with those above. */ |
| 116 -webkit-margin-start: 14em; | 116 -webkit-margin-start: 14em; |
| 117 -webkit-padding-start: 7px; | 117 -webkit-padding-start: 7px; |
| 118 -webkit-transition: 150ms ease-in-out; | |
| 119 display: none; | 118 display: none; |
| 120 height: 0; | 119 height: 0; |
| 121 opacity: 0; | 120 opacity: 0; |
| 121 transition: 150ms ease-in-out; |
| 122 /* Make the cookie items wrap correctly. */ | 122 /* Make the cookie items wrap correctly. */ |
| 123 white-space: normal; | 123 white-space: normal; |
| 124 } | 124 } |
| 125 | 125 |
| 126 .measure-items .cookie-items { | 126 .measure-items .cookie-items { |
| 127 -webkit-transition: none; | |
| 128 height: auto; | 127 height: auto; |
| 128 transition: none; |
| 129 visibility: hidden; | 129 visibility: hidden; |
| 130 } | 130 } |
| 131 | 131 |
| 132 .show-items .cookie-items { | 132 .show-items .cookie-items { |
| 133 display: block; | 133 display: block; |
| 134 opacity: 1; | 134 opacity: 1; |
| 135 } | 135 } |
| 136 | 136 |
| 137 .cookie-items .cookie-item { | 137 .cookie-items .cookie-item { |
| 138 background: rgb(224, 233, 245); | 138 background: rgb(224, 233, 245); |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 191 |
| 192 .cookie-details-label { | 192 .cookie-details-label { |
| 193 vertical-align: top; | 193 vertical-align: top; |
| 194 white-space: pre; | 194 white-space: pre; |
| 195 width: 10em; | 195 width: 10em; |
| 196 } | 196 } |
| 197 | 197 |
| 198 .cookie-details-value { | 198 .cookie-details-value { |
| 199 word-wrap: break-word; | 199 word-wrap: break-word; |
| 200 } | 200 } |
| OLD | NEW |