blob: 990d55f1cd578b7d41bc454ad861a8533025de2f (
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/* 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. */
body.uber-frame {
-webkit-margin-start: 23px;
}
body.uber-frame > .page {
-webkit-margin-end: 0;
-webkit-padding-end: 24px;
}
#filter-overlay {
padding-bottom: 0;
position: fixed;
z-index: 4;
}
body.uber-frame header {
left: 23px;
max-width: none;
}
body.uber-frame section {
max-width: none;
}
#status-box-container {
display: -webkit-flex;
}
fieldset {
border: 1px solid rgb(217, 217, 217);
display: inline;
margin: 0;
padding: 7px;
}
fieldset + fieldset {
-webkit-margin-start: 20px;
}
div.status-entry {
display: -webkit-flex;
margin-bottom: .8em;
}
div.status-entry:last-child {
margin-bottom: 0;
}
div.label {
-webkit-margin-end: 1em;
white-space: nowrap;
}
#show-unset-container {
text-align: right;
}
html[dir='rtl'] #show-unset-container {
text-align: left;
}
div.no-policies-set {
color: rgb(180, 180, 180);
font-size: 125%;
margin-top: 70px;
text-align: center;
}
section:not(.empty) > div.no-policies-set {
display: none;
}
table {
border-collapse: collapse;
margin-bottom: 5px;
margin-top: 17px;
table-layout: fixed;
width: 100%
}
section.empty > table {
display: none;
}
th,
td {
border: 1px solid rgb(217, 217, 217);
padding: 7px;
}
th {
background-color: rgb(240, 240, 240);
font-weight: normal;
}
div.elide,
span.value {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
button.toggle-expanded-value {
padding: 0;
}
tbody.has-overflowed-value span.value {
display: none;
}
tbody:not(.has-overflowed-value) button.toggle-expanded-value {
display: none;
}
tbody:not(.has-overflowed-value) > tr.expanded-value-container,
tbody:not(.show-overflowed-value) > tr.expanded-value-container {
display: none;
}
td.expanded-value {
white-space: pre;
word-wrap: break-word;
}
|