Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / policy.css
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
5 body.uber-frame {
6   -webkit-margin-start: 23px;
7 }
8
9 body.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
20 body.uber-frame header {
21   left: 23px;
22   max-width: none;
23 }
24
25 html[dir='rtl'] body.uber-frame header {
26   right: 23px;
27 }
28
29 body.uber-frame section {
30   max-width: none;
31 }
32
33 #status-box-container {
34   display: -webkit-flex;
35 }
36
37 fieldset {
38   border: 1px solid rgb(217, 217, 217);
39   display: inline;
40   margin: 0;
41   padding: 7px;
42 }
43
44 fieldset + fieldset {
45   -webkit-margin-start: 20px;
46 }
47
48 div.status-entry {
49   display: -webkit-flex;
50   margin-bottom: .8em;
51 }
52
53 div.status-entry:last-child {
54   margin-bottom: 0;
55 }
56
57 div.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
67 html[dir='rtl'] #show-unset-container {
68   float: left;
69   text-align: left;
70 }
71
72 div.reload-policies-button {
73   float: left;
74 }
75
76 html[dir='rtl'] div.reload-policies-button {
77   float: right;
78 }
79
80 div.show-unset-checkbox {
81   float: right;
82 }
83
84 html[dir='rtl'] div.show-unset-checkbox {
85   float: left;
86 }
87
88 section.reload-show-unset-section {
89   padding-bottom: 30px;
90   padding-top: 15px;
91 }
92
93 section.status-box-section {
94   clear: both;
95 }
96
97 div.table-description {
98   color: rgb(100, 100, 100);
99 }
100
101 div.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
109 table {
110   border-collapse: collapse;
111   margin-bottom: 5px;
112   margin-top: 17px;
113   table-layout: fixed;
114   width: 100%
115 }
116
117 section.empty > table {
118   display: none;
119 }
120
121 section:not(.empty) > div.no-policies-set {
122   display: none;
123 }
124
125 #main-section {
126   -webkit-padding-start: 0;
127 }
128
129 section.policy-table-section {
130   padding-bottom: 10px;
131 }
132
133 th,
134 td {
135   border: 1px solid rgb(217, 217, 217);
136   padding: 7px;
137 }
138
139 th {
140   background-color: rgb(240, 240, 240);
141   font-weight: normal;
142 }
143
144 div.elide,
145 span.value {
146   overflow: hidden;
147   text-overflow: ellipsis;
148   white-space: nowrap;
149 }
150
151 .toggle-expanded-value {
152   padding: 0;
153 }
154
155 tbody.has-overflowed-value span.value {
156   display: none;
157 }
158
159 tbody:not(.has-overflowed-value) .toggle-expanded-value {
160   display: none;
161 }
162
163 tbody:not(.has-overflowed-value) > tr.expanded-value-container,
164 tbody:not(.show-overflowed-value) > tr.expanded-value-container {
165   display: none;
166 }
167
168 td.expanded-value {
169   white-space: pre;
170   word-wrap: break-word;
171 }
172
173 html: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 }