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

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

Issue 6380015: Fix ChromeOS users list multiple X problem. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: apply kochi's fix and for his comments #1 Created 9 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/resources/options/chromeos_accounts_user_list.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .user-list-table { 1 .user-list-table {
2 border: 1px solid lightgrey; 2 border: 1px solid lightgrey;
3 border-collapse: collapse; 3 border-collapse: collapse;
4 border-spacing: 0; 4 border-spacing: 0;
5 } 5 }
6 6
7 .user-name-edit-row { 7 .user-name-edit-row {
8 border: 1px solid lightgrey; 8 border: 1px solid lightgrey;
9 background-color: #ebeffa; 9 background-color: #ebeffa;
10 padding: 5px; 10 padding: 5px;
11 } 11 }
12 12
13 .user-list-item { 13 .user-list-item {
14 line-height: 35px;
15 padding: 2px; 14 padding: 2px;
16 } 15 }
17 16
18 .user-icon { 17 .user-icon {
19 border: 1px solid black; 18 border: 1px solid black;
20 width: 26px; 19 width: 26px;
21 height: 26px; 20 height: 26px;
22 vertical-align: middle;
23 } 21 }
24 22
25 .user-email-label { 23 .user-email-label {
26 -webkit-margin-start: 10px; 24 -webkit-margin-start: 10px;
27 } 25 }
28 26
29 .user-name-label { 27 .user-name-label {
30 color: darkgray; 28 color: darkgray;
31 -webkit-margin-start: 10px; 29 -webkit-margin-start: 10px;
32 } 30 }
33 31
32 .user-email-name-block {
33 -webkit-box-flex: 1;
34 max-width: 318px;
35 overflow: hidden;
36 text-overflow: ellipsis;
37 white-space: nowrap;
38 }
39
34 .remove-user-button { 40 .remove-user-button {
35 background-image: url(chrome://theme/IDR_CLOSE_BAR); 41 background-image: url(chrome://theme/IDR_CLOSE_BAR);
36 background-color: transparent;
37 border: 0;
38 width: 16px; 42 width: 16px;
39 height: 16px; 43 height: 16px;
40 margin-top: 8px;
41 min-width: 16px;
42 padding: 1px 6px 1px 6px;
43 }
44
45 html[dir=ltr] .remove-user-button {
46 float: right;
47 }
48
49 html[dir=rtl] .remove-user-button {
50 float: left;
51 } 44 }
52 45
53 .remove-user-button:hover { 46 .remove-user-button:hover {
54 background-image: url(chrome://theme/IDR_CLOSE_BAR_H); 47 background-image: url(chrome://theme/IDR_CLOSE_BAR_H);
55 } 48 }
56 49
57 #userList { 50 #userList {
58 padding: 5px; 51 padding: 5px;
59 width: 366px; 52 width: 366px;
60 height: 166px; 53 height: 166px;
(...skipping 22 matching lines...) Expand all
83 #ownerOnlyWarning { 76 #ownerOnlyWarning {
84 margin-bottom: 10px; 77 margin-bottom: 10px;
85 -webkit-padding-start: 20px; 78 -webkit-padding-start: 20px;
86 background-repeat: no-repeat; 79 background-repeat: no-repeat;
87 background-image: url('warning.png'); 80 background-image: url('warning.png');
88 } 81 }
89 82
90 input#userNameEdit:invalid { 83 input#userNameEdit:invalid {
91 background-color: #ff6666; 84 background-color: #ff6666;
92 } 85 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/chromeos_accounts_user_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698