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

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

Issue 5935003: DOMUI: Implement new-style password manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Selection transitions. 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/options_page.css
diff --git a/chrome/browser/resources/options/options_page.css b/chrome/browser/resources/options/options_page.css
index 315217fb4491ce28750496d6555451dbe4dc75ab..b2aae3fcc920b461895e4ccdf2b1453323b2e1e2 100644
--- a/chrome/browser/resources/options/options_page.css
+++ b/chrome/browser/resources/options/options_page.css
@@ -351,6 +351,7 @@ select {
list > * {
-webkit-box-align: center;
+ -webkit-transition: .15s background-color;
box-sizing: border-box;
border-radius: 0px;
display: -webkit-box;
@@ -390,24 +391,25 @@ list > .heading:hover {
}
list .deletable-item {
- display: -webkit-box;
-}
-
-list .deletable-item > :first-child {
+ -webkit-box-align: center;
-webkit-box-flex: 1;
+ display: -webkit-box;
}
list .close-button {
+ -webkit-transition: .15s opacity;
background-color: transparent;
/* TODO(stuartmorgan): Replace with real images once they are available. */
background-image: url("../../../app/theme/close_bar.png");
border: none;
height: 16px;
+ opacity: 1;
width: 16px;
}
list > *:not(:hover) .close-button, list[disabled] .close-button {
- display: none;
+ opacity: 0;
+ pointer-events: none;
}
list .close-button:hover {
« no previous file with comments | « chrome/browser/resources/options/options.html ('k') | chrome/browser/resources/options/password_manager.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698