Upstream version 7.36.149.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 #outer-container {
12   min-height: 0;
13 }
14
15 .bubble.faded {
16   opacity: 0;
17 }
18
19 .pod {
20   border-radius: 2px;
21   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
22   padding: 0;
23   width: 180px;
24 }
25
26 .pod.hovered {
27   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
28 }
29
30 .pod .main-pane {
31   width: 180px;
32 }
33
34 .pod .user-image-container {
35   height: 180px;
36   width: 180px;
37 }
38
39 .pod .user-image {
40   border-top-left-radius: 2px;
41   border-top-right-radius: 2px;
42   height: 180px;
43   opacity: 1;
44   width: 180px;
45 }
46
47 .pod .name {
48   color: black;
49   font-size: 15px;
50   line-height: 20px;
51   margin: 5px 0 5px;
52 }
53
54 /* For local/unlocked profiles, the name box becomes the focused element.
55 However, don't display the blue focus outline around it. */
56 .pod .name:focus {
57   outline: none;
58 }
59
60 /* For local/unlocked profiles, always display the name and not the
61 sign-in button. */
62 .pod.need-password.focused .name {
63   display: block;
64 }
65
66 .pod .locked-indicator {
67   background-image: url('chrome://theme/IDR_ICON_PROFILES_LOCKED');
68   background-repeat: no-repeat;
69   height: 35px;
70   left: 10px;
71   position: absolute;
72   top: 10px;
73   width: 35px;
74   z-index: 1;
75 }