| 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; | |
| 9 width: 720px; | 8 width: 720px; |
| 10 } | 9 } |
| 11 | 10 |
| 12 /* Styles for the cookies list elements in cookies_view.html. */ | 11 /* Styles for the cookies list elements in cookies_view.html. */ |
| 13 .cookies-list { | 12 .cookies-list { |
| 14 -webkit-box-flex: 1; | 13 -webkit-box-flex: 1; |
| 15 /* This property overrides the |min-height: 192px;| property above due to | 14 /* This property overrides the |min-height: 192px;| property above due to |
| 16 * special behavior of the cookies list. */ | 15 * special behavior of the cookies list. */ |
| 17 border: 1px solid #D9D9D9; | 16 border: 1px solid #D9D9D9; |
| 18 margin: 0; | 17 margin: 0; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 188 |
| 190 .cookie-details-label { | 189 .cookie-details-label { |
| 191 vertical-align: top; | 190 vertical-align: top; |
| 192 white-space: pre; | 191 white-space: pre; |
| 193 width: 10em; | 192 width: 10em; |
| 194 } | 193 } |
| 195 | 194 |
| 196 .cookie-details-value { | 195 .cookie-details-value { |
| 197 word-wrap: break-word; | 196 word-wrap: break-word; |
| 198 } | 197 } |
| OLD | NEW |