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

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

Issue 9187061: Preliminary implementation of Google-style dialogs in ash::internal::DialogFrameView (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 11 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
« no previous file with comments | « chrome/browser/resources/options/options_page.css ('k') | chrome/browser/ui/gtk/custom_button.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options2/options_page.css
diff --git a/chrome/browser/resources/options2/options_page.css b/chrome/browser/resources/options2/options_page.css
index 4f45edbd4eea8dd93bd8f79d0e7411921cfc6a8e..ff237fc42dc892262fe6db988dd71bf0757dcf6c 100644
--- a/chrome/browser/resources/options2/options_page.css
+++ b/chrome/browser/resources/options2/options_page.css
@@ -145,7 +145,7 @@ html[touch-optimized] body {
}
.close-subpage {
- background-image: url('chrome://theme/IDR_CLOSE_BAR');
+ background-image: url('../../../../ui/resources/close_bar.png');
height: 16px;
min-width: 0;
position: relative;
@@ -154,11 +154,11 @@ html[touch-optimized] body {
}
.close-subpage:hover {
- background-image: url('chrome://theme/IDR_CLOSE_BAR_H');
+ background-image: url('../../../../ui/resources/close_bar_h.png');
}
.close-subpage:active {
- background-image: url('chrome://theme/IDR_CLOSE_BAR_P');
+ background-image: url('../../../../ui/resources/close_bar_p.png');
Evan Stade 2012/01/20 00:43:15 why did you do this as opposed to updating ThemeDa
}
html[dir='ltr'] .close-subpage {
@@ -463,7 +463,7 @@ list .close-button {
-webkit-transition: 150ms opacity;
background-color: transparent;
/* TODO(stuartmorgan): Replace with real images once they are available. */
- background-image: url("../../../app/theme/close_bar.png");
+ background-image: url("../../../../ui/resources/close_bar.png");
border: none;
display: block;
height: 16px;
@@ -481,11 +481,11 @@ list .close-button[disabled] {
}
list .close-button:hover {
- background-image: url("../../../app/theme/close_bar_h.png");
+ background-image: url("../../../../ui/resources/close_bar_h.png");
}
list .close-button:active {
- background-image: url("../../../app/theme/close_bar_p.png");
+ background-image: url("../../../../ui/resources/close_bar_p.png");
}
list .static-text {
« no previous file with comments | « chrome/browser/resources/options/options_page.css ('k') | chrome/browser/ui/gtk/custom_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698