blob: c3402326b05e2ecbfbc8dda755068a9b6086db50 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* Copyright (c) 2012 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.
*/
#connection-history-dialog {
margin-top: -80px;
height: 580px;
width: 880px;
}
#connection-history-options {
margin-top: 30px;
display: -webkit-flex;
}
#connection-history-scroller {
margin-top: 30px;
height: 370px;
width: 100%;
overflow: auto;
}
#connection-history-table {
width: 100%;
line-height: 2.1;
border-bottom: 1px solid #ebebeb;
border-collapse: separate;
border-spacing: 0;
}
#connection-history-table td:last-child {
text-align: right;
}
#connection-history-table thead td {
font-weight: bold;
}
#close-connection-history {
position: absolute;
bottom: 0;
__MSG_@@bidi_end_edge__: 0;
}
.internal-frame-of-reference {
position: relative;
width: 100%;
height: 100%;
}
.link-list > a {
margin-right: 16px;
}
a.no-link {
color: inherit;
cursor: inherit;
}
.connection-history-summary td {
border-top: 1px solid #EBEBEB;
}
.connection-history-summary:hover,
.connection-history-summary.expanded,
.connection-history-summary.expanded + .connection-history-detail {
background-color: #f8f8f8;
}
.connection-history-detail td div {
height: 0;
overflow: hidden;
}
.connection-history-summary.expanded + .connection-history-detail td div {
height: auto;
}
.connection-history-summary.expanded .zippy {
background-image: url('disclosure_arrow_down.webp');
}
.zippy {
width: 30px;
height: 11px;
background-image: url('disclosure_arrow_right.webp');
background-repeat: no-repeat;
background-position: 10px 50%;
}
|