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 5965003: Show warning text in the user settings page for non-owner users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 10 years 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
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;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 #userList[disabled] .remove-user-button { 72 #userList[disabled] .remove-user-button {
73 visibility: hidden; 73 visibility: hidden;
74 } 74 }
75 75
76 #userNameEdit { 76 #userNameEdit {
77 border: 1px solid lightgrey; 77 border: 1px solid lightgrey;
78 width: 366px; 78 width: 366px;
79 } 79 }
80 80
81 #ownerOnlyWarning {
82 margin-bottom: 10px;
83 }
84
85 #ownerOnlyWarning > * {
86 vertical-align: middle;
87 }
88
89 #warningIcon {
90 width: 17px;
91 height: 17px;
92 display: inline-block;
93 background-repeat: no-repeat;
94 background-image: url('warning.png');
95 }
96
81 input#userNameEdit:invalid { 97 input#userNameEdit:invalid {
82 background-color: #ff6666; 98 background-color: #ff6666;
83 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698