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

Side by Side Diff: chrome/browser/resources/options/chromeos_accounts_options_page.css

Issue 3071013: Revert "Revert 53989 - Implement new mock for user options page per chromium-os:5028" (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 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
OLDNEW
1 .user-list-table {
2 border: 1px solid lightgrey;
3 border-collapse: collapse;
4 border-spacing: 0px;
5 }
6
7 .user-name-edit-row {
8 border: 1px solid lightgrey;
9 background-color: #ebeffa;
10 padding: 5px;
11 }
12
13 .user-list-item {
14 line-height: 35px;
15 padding: 2px;
16 }
17
18 .user-icon {
19 border: 1px solid black;
20 width: 26px;
21 height: 26px;
22 vertical-align: middle;
23 }
24
25 .user-email-label {
26 -webkit-margin-start: 10px;
27 }
28
29 .user-name-label {
30 color: darkgray;
31 -webkit-margin-start: 10px;
32 }
33
34 .remove-user-button {
35 background-image: url(chrome://theme/IDR_CLOSE_BAR);
36 background-color: transparent;
37 border: 0;
38 width: 16px;
39 height: 16px;
40 margin-top: 8px;
41 }
42
43 html[dir=ltr] .remove-user-button {
44 float: right;
45 }
46
47 html[dir=rtl] .remove-user-button {
48 float: left;
49 }
50
51 .remove-user-button:hover {
52 background-image: url(chrome://theme/IDR_CLOSE_BAR_H);
53 }
54
1 #userList { 55 #userList {
56 padding: 5px;
57 width: 366px;
58 height: 166px;
59 }
60
61 #userNameEdit {
2 border: 1px solid lightgrey; 62 border: 1px solid lightgrey;
3 padding: 2px; 63 width: 366px;
4 width: 160px;
5 height: 120px;
6 } 64 }
65
66 input#userNameEdit:invalid {
67 background-color: #ff6666;
68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698