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

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

Issue 9706036: settings - share inline list button style between different list types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/options2/password_manager_list.css
diff --git a/chrome/browser/resources/options2/password_manager_list.css b/chrome/browser/resources/options2/password_manager_list.css
index d202a29faf77b90dcab0dcb84e6e0559f310b9af..8688619c287d137d8d3ff26891f32da34d191072 100644
--- a/chrome/browser/resources/options2/password_manager_list.css
+++ b/chrome/browser/resources/options2/password_manager_list.css
@@ -2,32 +2,21 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
-button.password-button {
+#saved-passwords-list .list-inline-button {
-webkit-transition: opacity 150ms;
background: rgb(138, 170, 237);
- border: 0;
- border-radius: 2px;
- color: #fff;
- display: inline;
font-size: 0.9em;
- font-weight: bold;
height: 18px;
- opacity: 0.7;
padding: 0 2px;
position: absolute;
top: 3px;
}
-button.password-button:hover {
- -webkit-transition: opacity 150ms;
- opacity: 1;
-}
-
-html[dir='ltr'] button.password-button {
+html[dir='ltr'] #saved-passwords-list .list-inline-button {
right: 2px;
}
-html[dir='rtl'] button.password-button {
+html[dir='rtl'] #saved-passwords-list .list-inline-button {
left: 2px;
}

Powered by Google App Engine
This is Rietveld 408576698