• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/* Force tab strip to extend to the left and right edges of the window. */
6#internet-details-content-area {
7  -webkit-box-orient: vertical;
8  display: -webkit-box;
9  padding: 6px 0 0 0;
10}
11
12#network-details-header {
13  -webkit-padding-start: 20px;
14  margin: 0;
15  padding-bottom: 12px;
16  padding-top: 32px;
17}
18
19#network-details-title {
20  font-size: 18px;
21}
22
23#network-details-subtitle-status {
24  color: rgb(53, 174, 71);
25}
26
27
28/* Fix the height of the subpages so that the dialog does not resize when the
29   user switches tabs. */
30#internet-details-content-area > .subpages-tab-contents {
31  -webkit-box-flex: 1;
32  -webkit-box-sizing: border-box;
33  -webkit-padding-end: 10px;
34  height: 390px;
35  min-width: 480px;
36  overflow-y: auto;
37}
38
39/* Avoid additional margins between text fields and controlled setting
40   indicators as the fields in these dialogs have sufficient spacing around
41   them already. */
42#internet-details-content-area
43    input:-webkit-any([type='text'],[type='url'],:not([type])) +
44    .controlled-setting-indicator {
45  -webkit-margin-start: 0;
46}
47
48#vpn-tab td {
49  padding: 0;
50}
51
52#vpn-tab .option-value:not(input) {
53  padding: 4px;
54}
55
56#ip-config-list {
57  min-height: 96px !important;
58}
59
60/* Minimum and maximum height are integer multiples of the height of a list
61   entry. */
62#ignored-host-list {
63  -webkit-margin-start: 0;
64  border: 1px solid #bfbfbf;
65  min-height: 64px;
66  width: 400px;
67}
68
69#ignored-host-list[disabled] {
70  background-color: rgb(235, 235, 228);
71  color: #999;
72  opacity: 1;
73}
74
75#new-host {
76  -webkit-margin-start: 0;
77  margin-top: 8px;
78}
79
80#ipconfig-section {
81  border-top: 1px solid #eee;
82  margin-bottom: 8px;
83  padding-top: 8px;
84}
85
86#ipconfig-dns-section {
87  border-top: 1px solid #eee;
88  padding-top: 8px;
89}
90
91#user-dns-settings:not([selected]) {
92  display: none;
93}
94
95.dns-display {
96  -webkit-margin-start: 24px;
97  -webkit-transition: opacity 150ms ease-in-out;
98  color: #bbb;
99  font-style: italic;
100}
101
102.dns-display:not([selected]) {
103  -webkit-transition: opacity 150ms ease-in-out;
104  display: none;
105}
106
107.proxy-subsection {
108  padding-left: 24px;
109}
110