OLD | NEW |
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 user pods row of account picker UI. | 5 * This is the stylesheet used by user pods row of account picker UI. |
6 */ | 6 */ |
7 | 7 |
8 podrow { | 8 podrow { |
9 -webkit-box-align: center; | 9 -webkit-box-align: center; |
10 -webkit-box-pack: center; | 10 -webkit-box-pack: center; |
11 -webkit-transition: all .2s ease-in-out; | 11 -webkit-transition: all .2s ease-in-out; |
12 display: -webkit-box; | 12 display: -webkit-box; |
13 height: 225px; | 13 height: 225px; |
14 outline: none; | |
15 position: relative; | 14 position: relative; |
16 } | 15 } |
17 | 16 |
18 .pod { | 17 .pod { |
19 -webkit-transition: all .23s ease; | 18 -webkit-transition: all .23s ease; |
20 border-radius: 2px; | 19 border-radius: 2px; |
21 margin: 0 10px; | 20 margin: 0 10px; |
| 21 outline: none; |
22 padding: 10px; | 22 padding: 10px; |
23 position: relative; | 23 position: relative; |
24 width: 170px; | 24 width: 170px; |
25 } | 25 } |
26 | 26 |
27 .pod img { | 27 .pod img { |
28 -webkit-box-shadow: 0 3px 12px #ccc; | 28 -webkit-box-shadow: 0 3px 12px #ccc; |
29 -webkit-transition: all .14s ease; | 29 -webkit-transition: all .14s ease; |
30 background-color: #fff; | 30 background-color: #fff; |
31 border: 1px solid #ccc; | 31 border: 1px solid #ccc; |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 position: absolute; | 145 position: absolute; |
146 right: 14px; | 146 right: 14px; |
147 top: 14px; | 147 top: 14px; |
148 width: 16px; | 148 width: 16px; |
149 } | 149 } |
150 | 150 |
151 .remove-user-button:hover { | 151 .remove-user-button:hover { |
152 -webkit-box-shadow: none; | 152 -webkit-box-shadow: none; |
153 background: url('chrome://theme/IDR_CLOSE_BAR_H') center center no-repeat; | 153 background: url('chrome://theme/IDR_CLOSE_BAR_H') center center no-repeat; |
154 } | 154 } |
OLD | NEW |