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

RadAutoCompleteBox CSS border-radius not working

1 Answer 139 Views
AutoCompleteBox
This is a migrated thread and some comments may be shown as answers.
Yan Moura
Top achievements
Rank 1
Veteran
Iron
Yan Moura asked on 23 Jun 2020, 06:53 PM
Hi,

I am trying to apply a rounded corner to my RadAutoCompleteBox input box. For this I used the following code:

html .RadAutoCompleteBox .racInput {
    font-family: sans-serif;
    font-size: 1.2em;
    height: 30px;
    border-radius: 15px;
}

All properties other than border-radius are working fine. What am I missing here?

Thanks!

1 Answer, 1 is accepted

Sort by
0
Yan Moura
Top achievements
Rank 1
Veteran
Iron
answered on 23 Jun 2020, 07:57 PM

I figured it out myself from another different thread. The trick is to override the default CSS this way:

<style type="text/css">
  .RadAutoCompleteBox_Default .racTokenList
  {
    border-radius: 15px;
  }
</style>
Tags
AutoCompleteBox
Asked by
Yan Moura
Top achievements
Rank 1
Veteran
Iron
Answers by
Yan Moura
Top achievements
Rank 1
Veteran
Iron
Share this question
or