OLD | NEW |
---|---|
(Empty) | |
1 /* | |
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 | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 .request-cookies-view { | |
8 display: none; | |
9 position: absolute; | |
10 top: 0; | |
11 right: 0; | |
12 left: 0; | |
13 bottom: 0; | |
14 overflow: auto; | |
15 margin: 12px; | |
16 height: 100%; | |
17 } | |
18 | |
19 .request-cookies-view.visible { | |
20 display: flex; | |
21 } | |
22 | |
23 .request-cookies-view .data-grid { | |
24 flex: auto; | |
25 height: 100%; | |
26 } | |
27 | |
28 .request-cookies-view .data-grid .row-group { | |
29 font-weight: bold; | |
30 font-size: 11px; | |
31 } | |
OLD | NEW |