blob: 4d4fd3a8664b47d48d27bb4af57f52a5e5658be7 (
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
|
/* 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 {
-webkit-user-select: text;
}
#about-container {
-webkit-box-align: center;
display: -webkit-box;
margin-top: 10px;
}
#product-description {
-webkit-margin-start: 10px;
}
#version-container {
font-size: 90%;
line-height: 1.5em;
margin-top: 30px;
}
#update-status-container {
margin-top: 5px;
}
#update-status {
vertical-align: middle;
}
#update-percentage {
font-size: 90%;
position: absolute;
}
#relaunch {
margin-top: 5px;
position: absolute;
}
#help-container {
margin-top: 16px;
}
#update-percentage {
-webkit-margin-start: 33px;
}
#get-help {
-webkit-margin-end: 4px;
}
#product-container {
line-height: 1.8em;
margin-top: 200px;
}
#update-status-icon {
background-repeat: no-repeat;
display: inline-block;
height: 17px;
margin-right: 4px;
vertical-align: middle;
width: 17px;
}
#update-status-icon.available {
background-image: url('chrome://theme/IDR_UPDATE_AVAILABLE');
}
#update-status-icon.up-to-date {
background-image: url('chrome://theme/IDR_UPDATE_UPTODATE');
}
#update-status-icon.working {
background-image: url('chrome://resources/images/throbber.svg');
}
#update-status-icon.failed {
background-image: url('chrome://theme/IDR_UPDATE_FAIL');
}
/* TODO(jhawkins): Copied from extensions.css; refactor. */
#overlay {
z-index: 5;
}
#overlay .page:not(.showing) {
display: none;
}
|