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

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

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 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
Index: chrome/browser/resources/options/manage_profile_overlay.css
diff --git a/chrome/browser/resources/options/manage_profile_overlay.css b/chrome/browser/resources/options/manage_profile_overlay.css
deleted file mode 100644
index aa172903bb3ca8420c14fc87bc6a1d4edf9783f5..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/options/manage_profile_overlay.css
+++ /dev/null
@@ -1,88 +0,0 @@
-/* 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;
-}

Powered by Google App Engine
This is Rietveld 408576698