1/* Copyright 2014 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
6#about-container {
7  align-items: center;
8  display: flex;
9  margin-top: 10px;
10}
11
12#product-description {
13  -webkit-margin-start: 10px;
14}
15
16#version-container {
17  margin-top: 30px;
18}
19
20#update-buttons-container {
21  margin-top: 5px;
22}
23
24#update-status-container {
25  margin-top: 10px;
26}
27
28#update-status {
29  vertical-align: middle;
30}
31
32#update-percentage {
33  font-size: 90%;
34}
35
36#get-help,
37#promote {
38  -webkit-margin-end: 4px;
39}
40
41#help-container {
42  margin-top: 16px;
43}
44
45#product-container {
46  line-height: 1.8em;
47  margin-top: 200px;
48}
49
50.overlay #product-container {
51  margin-top: 40px;
52}
53
54.help-page-icon,
55.help-page-icon-large {
56  background-repeat: no-repeat;
57  display: inline-block;
58  margin-right: 4px;
59  vertical-align: top;
60}
61
62.help-page-icon {
63  height: 17px;
64  width: 17px;
65}
66
67.help-page-icon-large {
68  height: 22px;
69  width: 22px;
70}
71
72#update-status-icon.up-to-date {
73  background-image: url('chrome://theme/IDR_UPDATE_UPTODATE');
74  background-size: 17px;
75}
76
77#update-status-icon.working {
78  background-image: url('chrome://resources/images/throbber.svg');
79}
80
81#update-status-icon.failed {
82  background-image: url('chrome://theme/IDR_UPDATE_FAILED');
83  background-size: 17px;
84}
85
86#update-status-message-container {
87  display: inline-block;
88  vertical-align: top;
89}
90
91#more-info-expander {
92  -webkit-padding-start: 0;
93}
94
95#more-info-container.visible {
96  margin-bottom: 1.5em;
97}
98
99#more-info-container {
100  -webkit-transition: all 200ms;
101  height: 0;
102  margin-bottom: 0;
103  overflow: hidden;
104}
105
106#build-date-container.empty {
107  visibility: hidden;
108}
109
110#channel-change-confirmation {
111  margin-top: 5px;
112}
113
114#change-channel {
115  margin-top: 8px;
116}
117
118#channel-change-disallowed-icon {
119  -webkit-margin-start: 4px;
120  background-image: url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY');
121  background-size: 17px;
122  vertical-align: middle;
123}
124
125.channel-change-error-bubble {
126  display: flex;
127}
128
129.channel-change-error-icon {
130  -webkit-margin-start: 4px;
131  background-image: url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY');
132  background-size: 22px;
133  vertical-align: top;
134}
135
136.channel-change-error-text {
137  -webkit-margin-start: 4px;
138  display: block;
139  vertical-align: top;
140  width: 240px;
141}
142