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

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

Issue 5685003: DOMUI Prefs: Add a deletable item list type, and use it for startup pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments 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 2e5084d82b2747cd8924514fa9afea5906da0538..dc0629507c3ef877785b5ced1477483ddade2fa0 100644
--- a/chrome/browser/resources/options/options_page.css
+++ b/chrome/browser/resources/options/options_page.css
@@ -392,6 +392,35 @@ list > .heading:hover {
border-color: transparent;
}
+list .deletable-item {
+ display: -webkit-box;
+}
+
+list .deletable-item > :first-child {
+ -webkit-box-flex: 1;
+}
+
+list .close-button {
+ 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;
+ width: 16px;
+}
+
+list > *:not(:hover) .close-button, list[disabled] .close-button {
+ display: none;
+}
+
+list .close-button:hover {
+ background-image: url("../../../app/theme/close_bar_h.png");
+}
+
+list .close-button:active {
+ background-image: url("../../../app/theme/close_bar_p.png");
+}
+
.left-side-table {
display: -webkit-box;
}
@@ -425,6 +454,10 @@ html[dir=rtl].option-name {
list .favicon-cell {
-webkit-margin-start: 7px;
-webkit-padding-start: 26px;
+ display: block;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
}
html[dir=rtl] .favicon-cell {

Powered by Google App Engine
This is Rietveld 408576698