Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / user_manager / user_manager.css
1 /* Copyright 2013 The Chromium Authors. All rights reserved.
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file.
4  */
5
6 /* Overrides for the desktop user manager screen. */
7 .oobe-display {
8   background-color: #eee;
9 }
10
11 .bubble.faded {
12   opacity: 0;
13 }
14
15 .pod {
16   border-radius: 2px;
17   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
18   padding: 0;
19   width: 180px;
20 }
21
22 .pod.hovered {
23   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
24 }
25
26 .pod .main-pane {
27   width: 180px;
28 }
29
30 .pod .user-image-container {
31   height: 180px;
32   width: 180px;
33 }
34
35 .pod .user-image {
36   border-top-left-radius: 2px;
37   border-top-right-radius: 2px;
38   height: 180px;
39   opacity: 1;
40   width: 180px;
41 }
42
43 .pod .name {
44   color: black;
45   font-size: 15px;
46   line-height: 20px;
47   margin: 5px 0 5px;
48 }
49
50 /* For local/unlocked profiles, the name box becomes the focused element.
51 However, don't display the blue focus outline around it. */
52 .pod .name:focus {
53   outline: none;
54 }
55
56 /* For local/unlocked profiles, always display the name and not the
57 sign-in button. */
58 .pod.need-password.focused .name {
59   display: block;
60 }
61
62 .pod .locked-indicator {
63   background-image: url('chrome://theme/IDR_ICON_PROFILES_LOCKED');
64   background-repeat: no-repeat;
65   height: 35px;
66   left: 10px;
67   position: absolute;
68   top: 10px;
69   width: 35px;
70   z-index: 1;
71 }