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

Unified Diff: chrome/browser/resources/options2/manage_profile_overlay.css

Issue 8895023: Options2: Pull the trigger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DIAF. Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options2/manage_profile_overlay.css
diff --git a/chrome/browser/resources/options2/manage_profile_overlay.css b/chrome/browser/resources/options2/manage_profile_overlay.css
new file mode 100644
index 0000000000000000000000000000000000000000..aa172903bb3ca8420c14fc87bc6a1d4edf9783f5
--- /dev/null
+++ b/chrome/browser/resources/options2/manage_profile_overlay.css
@@ -0,0 +1,88 @@
+/* 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.
+ */
+
+#manage-profile-overlay {
+ width: 500px;
+}
+
+.profile-icon-grid-item {
+ border: none !important;
+ height: 31px;
+ margin: 4px 6px;
+ padding: 4px;
+ width: 38px;
+}
+
+.profile-icon {
+ height: 31px;
+ width: 38px;
+}
+
+#manage-profile-content > :first-child {
+ margin-bottom: 5px;
+}
+
+#manage-profile-content > :last-child {
+ margin-top: 5px;
+}
+
+#manage-profile-content > :not(:first-child):not(:last-child) {
+ margin-top: 5px;
+ margin-bottom: 5px;
+}
+
+#manage-profile-name-div {
+ -webkit-box-align: baseline;
+ -webkit-box-orient: horizontal;
+ display: -webkit-box;
+}
+
+#manage-profile-name-label {
+ -webkit-margin-end: 20px;
+}
+
+#manage-profile-name {
+ -webkit-box-flex: 1;
+ display: block;
+}
+
+#manage-profile-name:invalid {
+ background-color: pink;
+}
+
+#manage-profile-error-bubble {
+ -webkit-transition: max-height 200ms, padding 200ms;
+ 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;
+ width: 80%;
+}
+
+#manage-profile-error-bubble[hidden] {
+ display: block !important;
+ max-height: 0;
+ padding: 0 10px;
+}
+
+#manage-profile-icon-grid {
+ background-color: rgba(255, 255, 255, 0.75);
+ border: 1px solid rgba(0, 0, 0, 0.3);
+ padding: 2px;
+}
+
+#delete-profile-message {
+ background-repeat: no-repeat;
+ -webkit-padding-start: 48px;
+}
+
+html[dir='rtl'] #delete-profile-message {
+ background-position: right;
+}
« no previous file with comments | « chrome/browser/resources/options2/language_options.js ('k') | chrome/browser/resources/options2/manage_profile_overlay.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698