Move border-radius rule for <select>s into RenderThemeMac, as this is
really a platform-specific look.
* css/html4.css:
* rendering/RenderThemeMac.mm:
(WebCore::RenderThemeMac::adjustMenuListButtonStyle):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17225
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-10-23 Adam Roben <aroben@apple.com>
+
+ Reviewed by Adele.
+
+ Move border-radius rule for <select>s into RenderThemeMac, as this is
+ really a platform-specific look.
+
+ * css/html4.css:
+ * rendering/RenderThemeMac.mm:
+ (WebCore::RenderThemeMac::adjustMenuListButtonStyle):
+
2006-10-23 Maciej Stachowiak <mjs@apple.com>
Reviewed by Brady.
-webkit-rtl-ordering: logical;
color: black;
border: 1px solid;
- -webkit-border-radius: 5px;
background-color: white;
white-space: pre;
}
style->setPaddingTop(Length(styledPopupPaddingTop, Fixed));
style->setPaddingBottom(Length(styledPopupPaddingBottom, Fixed));
- if (style->hasBorderRadius())
- style->setBorderRadius(IntSize(int(baseBorderRadius + fontScale - 1), int(baseBorderRadius + fontScale - 1))); // FIXME: Round up?
+ style->setBorderRadius(IntSize(int(baseBorderRadius + fontScale - 1), int(baseBorderRadius + fontScale - 1))); // FIXME: Round up?
const int minHeight = 15;
style->setMinHeight(Length(minHeight, Fixed));