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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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; | 118 -webkit-transition: 150ms ease-in-out; |
| 119 display: none; |
119 height: 0; | 120 height: 0; |
120 opacity: 0; | 121 opacity: 0; |
121 /* Make the cookie items wrap correctly. */ | 122 /* Make the cookie items wrap correctly. */ |
122 white-space: normal; | 123 white-space: normal; |
123 } | 124 } |
124 | 125 |
125 .measure-items .cookie-items { | 126 .measure-items .cookie-items { |
126 -webkit-transition: none; | 127 -webkit-transition: none; |
127 height: auto; | 128 height: auto; |
128 visibility: hidden; | 129 visibility: hidden; |
129 } | 130 } |
130 | 131 |
131 .show-items .cookie-items { | 132 .show-items .cookie-items { |
| 133 display: block; |
132 opacity: 1; | 134 opacity: 1; |
133 } | 135 } |
134 | 136 |
135 .cookie-items .cookie-item { | 137 .cookie-items .cookie-item { |
136 background: rgb(224, 233, 245); | 138 background: rgb(224, 233, 245); |
137 border: 1px solid rgb(131, 146, 174); | 139 border: 1px solid rgb(131, 146, 174); |
138 border-radius: 5px; | 140 border-radius: 5px; |
139 display: inline-block; | 141 display: inline-block; |
140 font-size: 85%; | 142 font-size: 85%; |
141 height: auto; | 143 height: auto; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 | 191 |
190 .cookie-details-label { | 192 .cookie-details-label { |
191 vertical-align: top; | 193 vertical-align: top; |
192 white-space: pre; | 194 white-space: pre; |
193 width: 10em; | 195 width: 10em; |
194 } | 196 } |
195 | 197 |
196 .cookie-details-value { | 198 .cookie-details-value { |
197 word-wrap: break-word; | 199 word-wrap: break-word; |
198 } | 200 } |
OLD | NEW |