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

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

Issue 17437004: Implemented new channel switcher UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed FakeUpdateEngineClient. Created 7 years, 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 body { 6 body {
7 -webkit-user-select: text; 7 -webkit-user-select: text;
8 } 8 }
9 9
10 #overlay .page:not(.showing) {
11 display: none;
12 }
13
10 #about-container { 14 #about-container {
11 -webkit-box-align: center; 15 -webkit-box-align: center;
12 display: -webkit-box; 16 display: -webkit-box;
13 margin-top: 10px; 17 margin-top: 10px;
14 } 18 }
15 19
16 #product-description { 20 #product-description {
17 -webkit-margin-start: 10px; 21 -webkit-margin-start: 10px;
18 } 22 }
19 23
(...skipping 24 matching lines...) Expand all
44 48
45 #help-container { 49 #help-container {
46 margin-top: 16px; 50 margin-top: 16px;
47 } 51 }
48 52
49 #product-container { 53 #product-container {
50 line-height: 1.8em; 54 line-height: 1.8em;
51 margin-top: 200px; 55 margin-top: 200px;
52 } 56 }
53 57
54 #update-status-icon { 58 .help-page-icon,
59 .help-page-icon-large {
55 background-repeat: no-repeat; 60 background-repeat: no-repeat;
56 display: inline-block; 61 display: inline-block;
57 height: 17px;
58 margin-right: 4px; 62 margin-right: 4px;
59 vertical-align: top; 63 vertical-align: top;
64 }
65
66 .help-page-icon {
67 height: 17px;
60 width: 17px; 68 width: 17px;
61 } 69 }
62 70
71 .help-page-icon-large {
72 height: 22px;
73 width: 22px;
74 }
75
63 #update-status-icon.up-to-date { 76 #update-status-icon.up-to-date {
64 background-image: url('chrome://theme/IDR_UPDATE_UPTODATE'); 77 background-image: url('chrome://theme/IDR_UPDATE_UPTODATE');
65 background-size: 17px; 78 background-size: 17px;
66 } 79 }
67 80
68 #update-status-icon.working { 81 #update-status-icon.working {
69 background-image: url('chrome://resources/images/throbber.svg'); 82 background-image: url('chrome://resources/images/throbber.svg');
70 } 83 }
71 84
72 #update-status-icon.failed { 85 #update-status-icon.failed {
(...skipping 21 matching lines...) Expand all
94 overflow: hidden; 107 overflow: hidden;
95 } 108 }
96 109
97 #build-date-container.empty { 110 #build-date-container.empty {
98 visibility: hidden; 111 visibility: hidden;
99 } 112 }
100 113
101 #channel-change-confirmation { 114 #channel-change-confirmation {
102 margin-top: 5px; 115 margin-top: 5px;
103 } 116 }
117
118 #change-channel {
119 margin-top: 8px;
120 }
121
122 #channel-change-disallowed-icon {
123 -webkit-margin-start: 4px;
124 background-image: url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY_GRAY');
125 background-size: 17px;
126 vertical-align: middle;
127 }
128
129 .channel-change-error-bubble {
130 display: -webkit-box;
131 }
132
133 .channel-change-error-icon {
134 -webkit-margin-start: 4px;
135 background-image:
136 url('chrome://theme/IDR_CONTROLLED_SETTING_MANDATORY_LARGE');
137 background-size: 22px;
138 vertical-align: top;
139 }
140
141 .channel-change-error-text {
142 -webkit-margin-start: 4px;
143 display: block;
144 vertical-align: top;
145 width: 240px;
146 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698