blob: 737c9103d36ea983009410115f4653eafd59ea7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
Copyright (c) 2010 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
*/
.cookies-info-table {
width: 100%;
}
.cookies-details-pane {
background-color: lightgrey;
border: 1px solid grey;
margin: 5px 0;
}
.cookie-details-label {
white-space: pre;
vertical-align: top;
}
html[dir=ltr] .cookie-details-label {
text-align: right;
}
#cookiesSearchBox {
border: 1px solid lightgrey;
display: box;
width: 366px;
}
#cookiesTree {
border: 1px solid lightgrey;
height: 200px;
margin: 0;
padding: 5px;
}
#cookieContent {
display: block;
width: 520px;
word-wrap: break-word;
}
|