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

Side by Side Diff: chrome/browser/resources/chromeos/first_run/step_bubble.css

Issue 169173007: CrOs first-run UI polished. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 /** 1 /**
2 * Copyright 2013 The Chromium Authors. All rights reserved. 2 * Copyright 2013 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .step.bubble { 7 .step.bubble {
8 border: 1px solid; 8 border: 1px solid;
9 border-radius: 3px; 9 border-radius: 3px;
10 box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
10 display: inline-block; 11 display: inline-block;
11 position: absolute; 12 position: absolute;
12 width: 400px; 13 width: 400px;
13 } 14 }
14 15
15 .step.bubble h1 { 16 .step.bubble h1 {
16 font-size: 18px; 17 font-size: 18px;
17 margin-bottom: 20px; 18 margin-bottom: 20px;
18 margin-left: 20px; 19 margin-left: 20px;
19 margin-right: 20px; 20 margin-right: 20px;
(...skipping 21 matching lines...) Expand all
41 .step.bubble .controls button { 42 .step.bubble .controls button {
42 font-size: 12px; 43 font-size: 12px;
43 min-width: 0; 44 min-width: 0;
44 padding: 0 15px; 45 padding: 0 15px;
45 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3); 46 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
46 } 47 }
47 48
48 .step.bubble.hidden { 49 .step.bubble.hidden {
49 visibility: hidden; 50 visibility: hidden;
50 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698