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

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

Issue 9310003: [uber page] Minor style improvements. (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 | « no previous file | chrome/browser/resources/shared/css/chrome_shared2.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 119926)
+++ chrome/browser/resources/shared/css/button.css (working copy)
@@ -59,13 +59,13 @@
-webkit-transition: border-color 200ms;
/* We use border color because it follows the border radius (unlike outline).
* This is particularly noticeable on mac. */
- border-color: #4080fa;
+ border-color: rgb(64, 128, 250);
outline: none;
}
/* Search boxes use an outline because it follows the contours of the box. */
input[type='search']:not(.custom-appearance):focus {
- outline-color: #4080fa;
+ outline-color: rgb(64, 128, 250);
}
/* TODO(jhawkins): Refactor button styling and remove !important here. This is
@@ -77,8 +77,11 @@
-webkit-box-shadow: none !important;
background: transparent none !important;
border: none !important;
- color: #1155cc !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;
}
@@ -88,6 +91,6 @@
}
.link-button:active {
- color: #052577 !important;
+ color: rgb(5, 37, 119) !important;
text-decoration: underline;
}
« no previous file with comments | « no previous file | chrome/browser/resources/shared/css/chrome_shared2.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698