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

Unified Diff: chrome/browser/resources/shared/css/button.css

Issue 9307039: [uber page] Fix font-family for button and select elements on uber pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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/options2/options_page.css ('k') | chrome/browser/resources/shared/css/select.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/shared/css/button.css
===================================================================
--- chrome/browser/resources/shared/css/button.css (revision 120082)
+++ chrome/browser/resources/shared/css/button.css (working copy)
@@ -12,7 +12,9 @@
background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
border: 1px solid #aaa;
color: #444;
- font-size: inherit;
+ /* Input elements have -webkit-small-control which can override the body font.
+ * Resolve this by using 'inherit'. */
+ font: inherit;
margin-bottom: 0;
min-width: 4em;
padding: 3px 12px;
@@ -79,9 +81,6 @@
border: none !important;
color: rgb(17, 85, 204) !important;
cursor: pointer;
- /* Input elements have -webkit-small-control which overrides the body font.
- * Resolve this by using 'inherit'. */
- font-family: inherit;
margin: 0;
padding: 0 4px !important;
}
« no previous file with comments | « chrome/browser/resources/options2/options_page.css ('k') | chrome/browser/resources/shared/css/select.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698