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

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

Issue 7400032: Multi-profile WebUI settings (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Notify when deleting profile from cache Created 9 years, 5 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
Index: chrome/browser/resources/options/profiles_manage_overlay.css
diff --git a/chrome/browser/resources/options/profiles_manage_overlay.css b/chrome/browser/resources/options/profiles_manage_overlay.css
new file mode 100644
index 0000000000000000000000000000000000000000..a86b13be75fb6796e158080923c8a5636cb95680
--- /dev/null
+++ b/chrome/browser/resources/options/profiles_manage_overlay.css
@@ -0,0 +1,76 @@
+/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#profiles-manage-overlay {
+ width: 500px;
+}
+
+.profile-icon-list-item {
+ border: none !important;
+ display: inline-block;
+ height: 38px;
+ margin: 4px;
+ padding: 0px;
James Hawkins 2011/07/19 20:22:09 s/px// 0px -> 0 here and elsewhere.
+ width: 38px;
+}
+
+.profile-icon {
+ height: 38px;
+ width: 38px;
+}
+
+#profiles-manage-content > :first-child {
+ margin-bottom: 5px;
+}
+
+#profiles-manage-content > :last-child {
+ margin-top: 5px;
+}
+
+#profiles-manage-content > :not(:first-child):not(:last-child) {
+ margin-top: 5px;
+ margin-bottom: 5px;
+}
+
+#profiles-manage-name-div {
+ display: -webkit-box;
+ -webkit-box-orient: horizontal;
James Hawkins 2011/07/19 20:22:09 -webkit properties should be at the top.
+ -webkit-box-align: baseline;
+}
+
+#profiles-manage-name-label {
+ -webkit-margin-end: 20px;
+}
+
+#profiles-manage-name {
+ -webkit-box-flex: 1;
+ display: block;
+}
+
+#profiles-manage-duplicate-name-error {
+ background-color: #eeb939;
+ border-radius: 4px;
+ font-weight: bold;
+ margin-left: auto;
+ margin-right: auto;
+ max-height: 50px;
+ overflow: hidden;
+ padding: 1px 10px;
+ text-align: center;
+ -webkit-transition: max-height 0.2s, padding 0.2s;
+ width: 80%;
+}
+
+#profiles-manage-duplicate-name-error.hiding {
+ max-height: 0px;
+ padding: 0px 10px;
+}
+
+#profiles-manage-icon-list {
+ background-color: rgba(255, 255, 255, 0.75);
+ border: 1px solid rgba(0, 0, 0, 0.3);
+ height: 150px;
+}
+

Powered by Google App Engine
This is Rietveld 408576698