summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/chromeos/diagnostics/main.css
blob: 62e8063101bfbd44a95c7eafe39b9848c599c992 (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
/* 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 {
  padding: 0;
}

.navigation {
  color: rgb(92, 97, 102);
}

.navigation h1 {
  margin: 0;
  padding: 21px 23px 13px;
}

.navigation ul {
  list-style-type: none;
  padding: 0;
}

.navigation ul > li {
  -webkit-border-start: 6px solid transparent;
  -webkit-padding-start: 18px;
  -webkit-user-select: none;
  line-height: 29px;
}

.navigation ul > li.selected {
  -webkit-border-start-color: rgb(78, 87, 100);
  cursor: default;
  pointer-events: none;
}

.page {
  color: rgb(48, 57, 66);
  left: 155px;
  max-width: 738px;
  min-width: 600px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 3;
}

.page header > h1 {
  margin: 0;
  padding: 21px 0 13px;
}

.page header > button {
  position: absolute;
  right: 20px;
  top: 21px;
}

html[dri=rtl] .page header > button {
  left: 20px;
}

/* Create a border under the h1 (but before anything that gets appended
 * to the end of the header, such as the managed prefs banner). */
.page header > h1::after {
  -webkit-margin-end: 20px;
  background-color: rgb(238, 238, 238);
  content: '';
  display: block;
  height: 1px;
  position: relative;
  top: 13px;
}

.page div {
  line-height: 29px;
}

.page img {
  vertical-align: middle;
}

.page input {
  -webkit-margin-end: 4px;
}

/* TODO(hshi): the layout is wrong in RTL. */
#connectivity-status div {
  clear: both;
  float: left;
  position: relative;
}

#choose-adapter {
  font-size: 14px;
}

.test-performed {
  color: rgb(70, 78, 90);
  font-size: 14px;
}

.test-pending {
  color: rgb(153, 153, 153);
  font-size: 14px;
}

.test-error {
  color: rgb(206, 57, 38);
  top: -13px;
}

div.recommendation {
  background: -webkit-gradient(linear, left top, left bottom,
                               from(rgb(171, 253, 182)),
                               to(rgb(94, 191, 107)));
  border: 1px solid rgb(17, 102, 27);
  line-height: 16px;
  margin-bottom: 13px;
  margin-top: -13px;
  max-width: 600px;
  padding: 2px;
}