blob: d08633155fad70f9a9fd342bcf41ca05cd2a53c4 (
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
|
/* 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. */
/* These additional styles constrain the size of the proxy page to the height of
the dialog containing them. */
html {
height: 100%;
}
body {
-webkit-box-sizing: border-box;
height: 100%;
margin: 0;
padding: 8px;
}
#proxyPage {
height: 100%;
}
#proxy-page-title {
/* We have a title on the window, so the title in domui should be hidden. */
display: none;
}
#internet-details-content-area > .subpages-tab-contents {
height: 100% !important;
}
#advanced-config {
padding-top: 10px;
}
html[highlight=strong] input[type='button']:focus,
html[highlight=strong] input[type='checkbox']:focus,
html[highlight=strong] input[type='radio']:focus,
html[highlight=strong] input[type='text']:focus,
html[highlight=strong] input[type='url']:focus,
html[highlight=strong] button:focus,
html[highlight=strong] list:focus {
box-shadow: 0 0 23px rgb(77, 144, 254) !important;
}
html[highlight=strong] #network-proxy-tab {
padding: 10px;
}
|