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

Side by Side Diff: chrome/browser/resources/user_manager/user_manager_tutorial.css

Issue 199533004: [Mac, Win] Show a user manager tutorial once per profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 .tutorial-slide { 6 .tutorial-slide {
7 -webkit-transition: opacity 200ms ease-in-out; 7 -webkit-transition: opacity 200ms ease-in-out;
8 background-color: white; 8 background-color: white;
9 border-radius: 2px; 9 border-radius: 2px;
10 bottom: 0; 10 bottom: 0;
11 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); 11 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
12 height: 408px; 12 height: 408px;
13 left: 0; 13 left: 0;
14 margin: auto; 14 margin: auto;
15 position: absolute; 15 position: absolute;
16 right: 0; 16 right: 0;
17 top: 0; 17 top: 0;
18 width: 320px; 18 width: 320px;
19 z-index: 100; 19 z-index: 100;
20 } 20 }
21 21
22 .tutorial-slide.single-pod {
23 margin-left: 30px;
24 }
25
26 html[dir=rtl] .tutorial-slide.single-pod {
27 margin-right: 30px;
28 }
29
22 .hidden { 30 .hidden {
23 opacity: 0; 31 opacity: 0;
24 pointer-events: none; 32 pointer-events: none;
25 } 33 }
26 34
27 #slide-guests { 35 #slide-guests {
28 bottom: 20px; 36 bottom: 20px;
29 left: 20px; 37 left: 20px;
30 margin: 0; 38 margin: 0;
31 top: auto; 39 top: auto;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 background-color: rgb(179, 229, 252); 170 background-color: rgb(179, 229, 252);
163 background-image: url( 171 background-image: url(
164 'chrome://theme/IDR_ICON_USER_MANAGER_TUTORIAL_FRIENDS'); 172 'chrome://theme/IDR_ICON_USER_MANAGER_TUTORIAL_FRIENDS');
165 } 173 }
166 174
167 #slide-complete .slide-image { 175 #slide-complete .slide-image {
168 background-color: white; 176 background-color: white;
169 background-image: url( 177 background-image: url(
170 'chrome://theme/IDR_ICON_USER_MANAGER_TUTORIAL_COMPLETE'); 178 'chrome://theme/IDR_ICON_USER_MANAGER_TUTORIAL_COMPLETE');
171 } 179 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698