Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: chrome/browser/resources/help/channel_change_page.css

Issue 449623003: Integrate About page into Settings for Chrome OS settings in a window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix tests Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 #channel-change-page { 6 #channel-change-page {
7 min-height: 200px; 7 min-height: 200px;
8 width: 500px; 8 width: 500px;
9 } 9 }
10 10
11 .channel-change-page-channel label { 11 .channel-change-page-channel label {
12 margin-left: 10px; 12 margin-left: 10px;
13 } 13 }
14 14
15 .channel-change-page-channel { 15 .channel-change-page-channel {
16 display: block; 16 display: block;
17 margin: 15px 25px; 17 margin: 0 25px;
Dan Beam 2014/08/13 02:50:46 why are you making design changes in this CL?
michaelpg 2014/08/13 08:12:11 SettingsFormatWebUITest.RadioCheckboxStyleCheck re
Dan Beam 2014/08/13 17:03:18 i'm cool with it if that's why, just wanted to und
18 } 18 }
19 19
20 .show-when-selected-channel-requires-powerwash, 20 .show-when-selected-channel-requires-powerwash,
21 .show-when-selected-channel-requires-delayed-update, 21 .show-when-selected-channel-requires-delayed-update,
22 .show-when-selected-channel-good, 22 .show-when-selected-channel-good,
23 .show-when-selected-channel-unstable { 23 .show-when-selected-channel-unstable {
24 display: none !important; 24 display: none !important;
25 } 25 }
26 26
27 .selected-channel-requires-powerwash 27 .selected-channel-requires-powerwash
28 .show-when-selected-channel-requires-powerwash, 28 .show-when-selected-channel-requires-powerwash,
29 .selected-channel-requires-delayed-update 29 .selected-channel-requires-delayed-update
30 .show-when-selected-channel-requires-delayed-update, 30 .show-when-selected-channel-requires-delayed-update,
31 .selected-channel-good .show-when-selected-channel-good, 31 .selected-channel-good .show-when-selected-channel-good,
32 .selected-channel-unstable .show-when-selected-channel-unstable { 32 .selected-channel-unstable .show-when-selected-channel-unstable {
33 display: block !important; 33 display: block !important;
34 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698