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 .cookies-info-table { | 7 .cookies-info-table { |
| 8 table-layout: fixed; |
8 width: 100%; | 9 width: 100%; |
9 } | 10 } |
10 | 11 |
11 .cookies-details-pane { | 12 .cookies-details-pane { |
12 background-color: lightgrey; | 13 background-color: lightgrey; |
13 border: 1px solid grey; | 14 border: 1px solid grey; |
14 margin: 5px 0; | 15 margin: 5px 0; |
15 } | 16 } |
16 | 17 |
17 .cookie-details-label { | 18 .cookie-details-label { |
(...skipping 13 matching lines...) Expand all Loading... |
31 | 32 |
32 #cookiesTree { | 33 #cookiesTree { |
33 border: 1px solid lightgrey; | 34 border: 1px solid lightgrey; |
34 height: 200px; | 35 height: 200px; |
35 margin: 0; | 36 margin: 0; |
36 padding: 5px; | 37 padding: 5px; |
37 } | 38 } |
38 | 39 |
39 #cookieContent { | 40 #cookieContent { |
40 display: block; | 41 display: block; |
41 width: 520px; | 42 width: 300px; |
42 word-wrap: break-word; | 43 word-wrap: break-word; |
43 } | 44 } |
OLD | NEW |