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

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

Issue 10703129: Fix alignment of select and button controls in chrome://setttings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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/shared/css/chrome_shared.css
diff --git a/chrome/browser/resources/shared/css/chrome_shared.css b/chrome/browser/resources/shared/css/chrome_shared.css
index 349bd481152fd60d2d64113a420dcaf2859ee494..d135a31c54b4d37819d865cffd70d75cd57ec03e 100644
--- a/chrome/browser/resources/shared/css/chrome_shared.css
+++ b/chrome/browser/resources/shared/css/chrome_shared.css
@@ -136,20 +136,19 @@ html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {
padding-top: 8px;
}
- button:not(.custom-appearance):not(.link-button),
- input[type=button]:not(.custom-appearance),
- input[type=submit]:not(.custom-appearance),
- select {
+ :-webkit-any(button,
+ input[type='button'],
+ input[type='submit'],
+ select):not(.custom-appearance):not(.link-button) {
margin-bottom: 6px;
margin-top: 6px;
- padding-bottom: 7px;
- padding-top: 6px;
}
- list button:not(.custom-appearance):not(.link-button),
- list input[type=button]:not(.custom-appearance),
- list input[type=submit]:not(.custom-appearance),
- list select {
+ list :-webkit-any(
+ button,
+ input[type='button'],
+ input[type='submit'],
+ select):not(.custom-appearance):not(.link-button) {
margin: 0;
padding-bottom: 0;
padding-top: 3px;
« 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