Completed
Last Updated: 13 Oct 2015 15:48 by ADMIN
ADMIN
Danail Vasilev
Created on: 24 Jun 2014 08:50
Category: Button
Type: Bug Report
1
FIX the default height of RadButton with Silk skin and CssClass="rbPrimaryButton"
Currently the default height of RadButton with Silk skin and CssClass="rbPrimaryButton" is 28px. The correct height must be auto, so that the text inside the RadButton can be wrapped when it is longer and no height is specified. For the time being the following CSS workaround can be used:
CSS:
        span.RadButton.RadButton_Silk.rbLinkButton.rbPrimaryButton {
            height: auto;
        }
ASPX:

            <telerik:RadButton ID="RadButton1" runat="server" Skin="Silk" ButtonType="SkinnedButton" Text="aaaaaaaaaaa bbbbbbbbbbbbbb cccccccccccc" Width="200px" CssClass="rbPrimaryButton" />
            <telerik:RadButton ID="RadButton3" runat="server" Skin="Silk" ButtonType="SkinnedButton" Text="aaaaaaaaaaa bbbbbbbbbbbbbb cccccccccccc" Width="200px" CssClass="rbSecondaryButton" />
1 comment
ADMIN
Slav
Posted on: 13 Oct 2015 15:48
The bug is fixed for Lightweight render mode of RadButton.