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; |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 background-color: rgb(179, 229, 252); | 170 background-color: rgb(179, 229, 252); |
171 background-image: url( | 171 background-image: url( |
172 'chrome://theme/IDR_ICON_USER_MANAGER_TUTORIAL_FRIENDS'); | 172 'chrome://theme/IDR_ICON_USER_MANAGER_TUTORIAL_FRIENDS'); |
173 } | 173 } |
174 | 174 |
175 #slide-complete .slide-image { | 175 #slide-complete .slide-image { |
176 background-color: white; | 176 background-color: white; |
177 background-image: url( | 177 background-image: url( |
178 'chrome://theme/IDR_ICON_USER_MANAGER_TUTORIAL_COMPLETE'); | 178 'chrome://theme/IDR_ICON_USER_MANAGER_TUTORIAL_COMPLETE'); |
179 } | 179 } |
| 180 |
| 181 #slide-not-you #dismiss-bubble-button { |
| 182 background-image: url('chrome://theme/IDR_CLOSE_1'); |
| 183 cursor: pointer; |
| 184 height: 16px; |
| 185 position: absolute; |
| 186 right: 5px; |
| 187 top: 5px; |
| 188 width: 16px; |
| 189 } |
| 190 |
| 191 html[dir=rtl] #slide-not-you #dismiss-bubble-button { |
| 192 left: 5px; |
| 193 } |
OLD | NEW |