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

Unified Diff: chrome/browser/resources/print_preview.css

Issue 7027038: Print Preview: Fixing font anti-aliasing when hovering over buttons (Windows) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding explanatory comment with bug id. Created 9 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/print_preview.css
diff --git a/chrome/browser/resources/print_preview.css b/chrome/browser/resources/print_preview.css
index 61b2fd7a5bb2190d1e7b83cfae288a059f1562f7..b0d82bf2980965378a83421a3b4e35bc14e27605 100644
--- a/chrome/browser/resources/print_preview.css
+++ b/chrome/browser/resources/print_preview.css
@@ -266,7 +266,8 @@ button:not(:disabled):not(.disabled):hover {
-webkit-box-shadow: inset 0 1px 2px white,
0 2px 4px rgba(0, 0, 0, .2);
background: -webkit-linear-gradient(#fff, #e6e6e6);
- text-shadow: 0 1px 0 rgba(255, 255, 255, 1);
+ /* Using opacity 0.99 instead of 1 because of http://crbug.com/68370 */
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.99);
}
button:not(:disabled):not(.disabled):active,
@@ -548,7 +549,8 @@ select:not(:disabled):not(.disabled):hover {
0 2px 4px rgba(0, 0, 0, .2);
background-image: url('./print_preview/black_arrow.png'),
-webkit-linear-gradient(#fff, #e6e6e6);
- text-shadow: 0 1px 0 rgba(255, 255, 255, 1);
+ /* Using opacity 0.99 instead of 1 because of http://crbug.com/68370 */
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.99);
}
label {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698