Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: chrome/browser/resources/options2/chromeos/accounts_options_page.css

Issue 10809005: Options: Rename chrome/browser/resources/options2 -> chrome/browser/resources/options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright (c) 2012 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 .user-list-table {
6 border: 1px solid lightgrey;
7 border-collapse: collapse;
8 border-spacing: 0;
9 }
10
11 .user-name-edit-row {
12 background-color: rgb(235, 239, 250);
13 border: 1px solid lightgrey;
14 padding: 5px;
15 }
16
17 .user-list-item {
18 padding: 2px;
19 }
20
21 .user-icon {
22 border: 1px solid black;
23 height: 26px;
24 width: 26px;
25 }
26
27 .user-email-label {
28 -webkit-margin-start: 10px;
29 }
30
31 .user-name-label {
32 -webkit-margin-start: 10px;
33 color: darkgray;
34 }
35
36 .user-email-name-block {
37 -webkit-box-flex: 1;
38 max-width: 318px;
39 overflow: hidden;
40 text-overflow: ellipsis;
41 white-space: nowrap;
42 }
43
44 .remove-user-button {
45 background-image: -webkit-image-set(
46 url('../../../../../ui/resources/default_100_percent/close_bar.png') 1x,
47 url('../../../../../ui/resources/default_200_percent/close_bar.png') 2x);
48 height: 16px;
49 width: 16px;
50 }
51
52 .remove-user-button:hover {
53 background-image: -webkit-image-set(
54 url('../../../../../ui/resources/default_100_percent/close_bar_hover.png')
55 1x,
56 url('../../../../../ui/resources/default_200_percent/close_bar_hover.png')
57 2x);
58 }
59
60 #userList {
61 height: 166px;
62 padding: 5px;
63 width: 366px;
64 }
65
66 #userList[disabled],
67 #userList[disabled] > [selected],
68 #userList[disabled] > :hover {
69 border-color: hsl(0, 0%, 85%);
70 }
71
72 #userList[disabled] > [selected],
73 #userList[disabled] > :hover {
74 background-color: hsl(0, 0%, 90%);
75 }
76
77 #userList[disabled] .remove-user-button {
78 visibility: hidden;
79 }
80
81 #userNameEdit {
82 border: 1px solid lightgrey;
83 width: 366px;
84 }
85
86 #ownerOnlyWarning {
87 -webkit-padding-start: 20px;
88 background-image: url('../../options/chromeos/warning.png');
89 background-repeat: no-repeat;
90 margin-bottom: 10px;
91 margin-top: 10px;
92 padding-bottom: 1px;
93 }
94
95 input#userNameEdit:invalid {
96 background-color: rgb(255, 102, 102);
97 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698