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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe.css

Issue 7774009: [cros] check for updates in WebUI OOBE can be cancelled in dev builds. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed mock for UpdateScreenActor. Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 * This is the stylesheet used by the Out of the box experience (OOBE) flow. 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow.
6 */ 6 */
7 7
8 html, 8 html,
9 body { 9 body {
10 height: 100%; 10 height: 100%;
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 271
272 #oobe.eula + #security-info { 272 #oobe.eula + #security-info {
273 visibility: visible; 273 visibility: visible;
274 } 274 }
275 275
276 #update div { 276 #update div {
277 margin: 6em auto; 277 margin: 6em auto;
278 width: 32em; 278 width: 32em;
279 } 279 }
280 280
281 #update #update-cancel-hint {
whywhat 2011/08/29 17:55:51 Maybe just div's id is enough?
Ivan Korotkov 2011/08/29 18:19:17 Won't override '#update div' then.
282 position: absolute;
283 margin: 1em -16em;
whywhat 2011/08/29 17:55:51 nit: please, sort properties alphabetically
Ivan Korotkov 2011/08/29 18:19:17 Done.
284 left: 50%;
285 color: #aa0000;
whywhat 2011/08/29 17:55:51 nit: #a00
Ivan Korotkov 2011/08/29 18:19:17 Done.
286 }
287
281 #update progress { 288 #update progress {
282 margin: 13px 0; 289 margin: 13px 0;
283 width: 380px; 290 width: 380px;
284 } 291 }
285 292
286 button { 293 button {
287 min-width: 80px; 294 min-width: 80px;
288 } 295 }
289 296
290 .eula-columns { 297 .eula-columns {
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 } 774 }
768 775
769 .dropdown-overlay { 776 .dropdown-overlay {
770 bottom: 0; 777 bottom: 0;
771 left: 0; 778 left: 0;
772 position: fixed; 779 position: fixed;
773 right: 0; 780 right: 0;
774 top: 0; 781 top: 0;
775 z-index: 5; 782 z-index: 5;
776 } 783 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698