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

Unified Diff: chrome/browser/resources/options/browser_options.css

Issue 222143002: Mark supervised users in the "Users" list in about:settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed a comment. Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/browser_options.css
diff --git a/chrome/browser/resources/options/browser_options.css b/chrome/browser/resources/options/browser_options.css
index ac9230d6714481dfef832f992e59d66ab5c91abe..97e640022e8a4799b53f21ac42fc80c692f4be19 100644
--- a/chrome/browser/resources/options/browser_options.css
+++ b/chrome/browser/resources/options/browser_options.css
@@ -87,13 +87,26 @@ html[dir=rtl] #account-picture-wrapper {
min-height: 0;
}
-#profiles-list .profile-name {
+#profiles-list .profile-container {
-webkit-box-flex: 1;
Patrick Dubroy 2014/04/02 14:42:05 We shouldn't mix and match different flexbox specs
Marc Treib 2014/04/03 10:13:32 Done.
+ display: -webkit-flex;
+}
+
+#profiles-list .profile-name {
+ -webkit-flex-grow: 0;
+ -webkit-flex-shrink: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
+#profiles-list .profile-supervised {
+ -webkit-flex-grow: 1;
+ -webkit-flex-shrink: 0;
+ color: gray;
+ margin-left: 5px;
+}
+
#profiles-list > * {
height: 40px;
}
« no previous file with comments | « no previous file | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698