Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

My problem:

when I use the ant-design

I want to change the color of select when I hover&focus this select menu!

but it doesn't work!

before

after

I tried to rewrite lots of code about this, but it doesn't work!

ant-select-selector:hover{
     border-color:1px solid red;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

It should be border with an !important override. Include also the focus-within selector

.ant-select-selector:hover, .ant-select-selector:focus-within {
  border: 1px solid red !important;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...