| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |