1/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5body.uber-frame {
6  -webkit-margin-start: 23px;
7}
8
9body.uber-frame > .page {
10  -webkit-margin-end: 0;
11  -webkit-padding-end: 24px;
12}
13
14#filter-overlay {
15  padding-bottom: 0;
16  position: fixed;
17  z-index: 4;
18}
19
20body.uber-frame header {
21  left: 23px;
22  max-width: none;
23}
24
25html[dir='rtl'] body.uber-frame header {
26  right: 23px;
27}
28
29body.uber-frame section {
30  max-width: none;
31}
32
33#status-box-container {
34  display: -webkit-flex;
35}
36
37fieldset {
38  border: 1px solid rgb(217, 217, 217);
39  display: inline;
40  margin: 0;
41  padding: 7px;
42}
43
44fieldset + fieldset {
45  -webkit-margin-start: 20px;
46}
47
48div.status-entry {
49  display: -webkit-flex;
50  margin-bottom: .8em;
51}
52
53div.status-entry:last-child {
54  margin-bottom: 0;
55}
56
57div.label {
58  -webkit-margin-end: 1em;
59  white-space: nowrap;
60}
61
62#show-unset-container {
63  float: right;
64  text-align: right;
65}
66
67html[dir='rtl'] #show-unset-container {
68  float: left;
69  text-align: left;
70}
71
72div.reload-policies-button {
73  float: left;
74}
75
76html[dir='rtl'] div.reload-policies-button {
77  float: right;
78}
79
80div.show-unset-checkbox {
81  float: right;
82}
83
84html[dir='rtl'] div.show-unset-checkbox {
85  float: left;
86}
87
88section.reload-show-unset-section {
89  padding-bottom: 30px;
90  padding-top: 15px;
91}
92
93section.status-box-section {
94  clear: both;
95}
96
97div.table-description {
98  color: rgb(100, 100, 100);
99}
100
101div.no-policies-set {
102  color: rgb(180, 180, 180);
103  font-size: 125%;
104  margin-bottom: 10px;
105  margin-top: 20px;
106  text-align: center;
107}
108
109table {
110  border-collapse: collapse;
111  margin-bottom: 5px;
112  margin-top: 17px;
113  table-layout: fixed;
114  width: 100%
115}
116
117section.empty > table {
118  display: none;
119}
120
121section:not(.empty) > div.no-policies-set {
122  display: none;
123}
124
125#main-section {
126  -webkit-padding-start: 0;
127}
128
129section.policy-table-section {
130  padding-bottom: 10px;
131}
132
133th,
134td {
135  border: 1px solid rgb(217, 217, 217);
136  padding: 7px;
137}
138
139th {
140  background-color: rgb(240, 240, 240);
141  font-weight: normal;
142}
143
144div.elide,
145span.value {
146  overflow: hidden;
147  text-overflow: ellipsis;
148  white-space: nowrap;
149}
150
151button.toggle-expanded-value {
152  padding: 0;
153}
154
155tbody.has-overflowed-value span.value {
156  display: none;
157}
158
159tbody:not(.has-overflowed-value) button.toggle-expanded-value {
160  display: none;
161}
162
163tbody:not(.has-overflowed-value) > tr.expanded-value-container,
164tbody:not(.show-overflowed-value) > tr.expanded-value-container {
165  display: none;
166}
167
168td.expanded-value {
169  white-space: pre;
170  word-wrap: break-word;
171}
172
173html:not(.focus-outline-visible)
174:enabled:focus:-webkit-any(input[type='checkbox'],
175                           input[type='radio'], button) {
176  /* Cancel border-color for :focus specified in widgets.css. */
177  border-color: rgba(0, 0, 0, 0.25);
178}
179