blob: 3ee2f5048788f201948b2a97fda339adaadafc35 (
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
|
/* Copyright 2013 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.
*/
#channel-change-page {
min-height: 200px;
width: 500px;
}
.channel-change-page-channel label {
margin-left: 10px;
}
.channel-change-page-channel {
display: block;
margin: 15px 25px;
}
.show-when-selected-channel-requires-powerwash,
.show-when-selected-channel-requires-delayed-update,
.show-when-selected-channel-good,
.show-when-selected-channel-unstable {
display: none !important;
}
.selected-channel-requires-powerwash
.show-when-selected-channel-requires-powerwash,
.selected-channel-requires-delayed-update
.show-when-selected-channel-requires-delayed-update,
.selected-channel-good .show-when-selected-channel-good,
.selected-channel-unstable .show-when-selected-channel-unstable {
display: block !important;
}
|