Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 2013 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 #channel-change-page { | |
| 7 min-height: 200px; | |
| 8 padding: 20px 25px; | |
| 9 width: 500px; | |
| 10 } | |
| 11 | |
| 12 .channel-change-page-title { | |
|
Nikita (slow)
2013/06/21 12:21:33
nit: "Do not create a class for only one element;
ygorshenin1
2013/06/21 17:24:58
Done.
| |
| 13 margin-bottom: 30px; | |
| 14 } | |
| 15 | |
| 16 .channel-change-page-channel label { | |
| 17 margin-left: 10px; | |
| 18 } | |
| 19 | |
| 20 .channel-change-page-message-title { | |
| 21 margin-bottom: 25px; | |
| 22 } | |
| 23 | |
| 24 .channel-change-page-channel { | |
| 25 display: block; | |
| 26 margin: 15px 25px; | |
| 27 } | |
| 28 | |
| 29 .show-when-selected-channel-requires-powerwash, | |
| 30 .show-when-selected-channel-requires-delayed-update, | |
| 31 .show-when-selected-channel-good, | |
| 32 .show-when-selected-channel-unstable { | |
| 33 display: none !important; | |
| 34 } | |
| 35 | |
| 36 .selected-channel-requires-powerwash | |
| 37 .show-when-selected-channel-requires-powerwash, | |
| 38 .selected-channel-requires-delayed-update | |
| 39 .show-when-selected-channel-requires-delayed-update, | |
| 40 .selected-channel-good .show-when-selected-channel-good, | |
| 41 .selected-channel-unstable .show-when-selected-channel-unstable { | |
| 42 display: block !important; | |
| 43 } | |
| OLD | NEW |