OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 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 .request-cookies-view { | 7 .request-cookies-view { |
8 display: none; | 8 display: flex; |
9 overflow: auto; | 9 overflow: auto; |
10 margin: 12px; | 10 margin: 12px; |
11 height: 100%; | 11 height: 100%; |
12 } | 12 } |
13 | 13 |
14 .request-cookies-view.visible { | |
15 display: flex; | |
16 } | |
17 | |
18 .request-cookies-view .data-grid { | 14 .request-cookies-view .data-grid { |
19 flex: auto; | 15 flex: auto; |
20 height: 100%; | 16 height: 100%; |
21 } | 17 } |
22 | 18 |
23 .request-cookies-view .data-grid .row-group { | 19 .request-cookies-view .data-grid .row-group { |
24 font-weight: bold; | 20 font-weight: bold; |
25 font-size: 11px; | 21 font-size: 11px; |
26 } | 22 } |
OLD | NEW |