This is a migrated thread and some comments may be shown as answers.

RadInputs has border color in chrome.

1 Answer 36 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Dan
Top achievements
Rank 1
Dan asked on 30 Jul 2013, 08:19 AM
Hello

When I accessed my web form in chrome, all the radinputs has a yellow border. I havnt applied any border color and how can I remove this?

Thanks
Dan

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 30 Jul 2013, 09:03 AM
Hi Dan,

This is an expected behavior in the Google Chrome browser. Even if you didnt apply any style, Chrome by default applies an yellow border to the input fields. Please try the following CSS if you want to remove the yellow border.

ASPX:
<telerik:RadTextBox ID="RadTextBox1" runat="server" CssClass="textbox-style">
</telerik:RadTextBox>

CSS:
<style type="text/css">
    .textbox-style
    {
        outline: none;
    }
</style>

Thanks,
Shinu.
Tags
General Discussions
Asked by
Dan
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or