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

Unified Diff: chrome/browser/resources/ntp4/new_tab.css

Issue 12703039: Inconsistent use of [x] close panel icon. Code changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added recently added local NTP file. Created 7 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/ntp4/new_tab.css
diff --git a/chrome/browser/resources/ntp4/new_tab.css b/chrome/browser/resources/ntp4/new_tab.css
index d44a767331cf645abcd2ffef7489bdb9c4ac47fd..87fa6b982ff079c186eeaf83af0bbfcba9e184ae 100644
--- a/chrome/browser/resources/ntp4/new_tab.css
+++ b/chrome/browser/resources/ntp4/new_tab.css
@@ -80,8 +80,8 @@ html[dir='rtl'] #notification-container {
background-color: transparent;
/* TODO(estade): this should animate between states. */
background-image: -webkit-image-set(
- url('../../../../ui/resources/default_100_percent/close_bar.png') 1x,
- url('../../../../ui/resources/default_200_percent/close_bar.png') 2x);
+ url('../../../../ui/resources/default_100_percent/close_2.png') 1x,
+ url('../../../../ui/resources/default_200_percent/close_2.png') 2x);
border: 0;
cursor: default;
display: inline-block;
@@ -93,17 +93,15 @@ html[dir='rtl'] #notification-container {
.close-button:hover,
.close-button:focus {
background-image: -webkit-image-set(
- url('../../../../ui/resources/default_100_percent/close_bar_hover.png')
- 1x,
- url('../../../../ui/resources/default_200_percent/close_bar_hover.png')
- 2x);
+ url('../../../../ui/resources/default_100_percent/close_2_hover.png') 1x,
+ url('../../../../ui/resources/default_200_percent/close_2_hover.png') 2x);
}
.close-button:active {
background-image: -webkit-image-set(
- url('../../../../ui/resources/default_100_percent/close_bar_pressed.png')
+ url('../../../../ui/resources/default_100_percent/close_2_pressed.png')
1x,
- url('../../../../ui/resources/default_200_percent/close_bar_pressed.png')
+ url('../../../../ui/resources/default_200_percent/close_2_pressed.png')
2x);
}

Powered by Google App Engine
This is Rietveld 408576698