Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

antd - how to change the color of select in ant-design?

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;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...