ant-design-vue/components/vc-calendar/assets/index/Input.less

24 lines
509 B
Plaintext
Raw Normal View History

2018-03-10 14:10:13 +00:00
.input() {
height: 25px;
position: relative;
display: inline-block;
margin: 0 0;
padding: 4px 10px;
border-radius: 6px 6px;
border: 1px solid #d9d9d9;
background-color: #ffffff;
color: #666;
line-height: 1.5;
2019-01-12 03:33:27 +00:00
transform: border 0.3s cubic-bezier(0.35, 0, 0.25, 1),
background 0.3s cubic-bezier(0.35, 0, 0.25, 1), box-shadow 0.3s cubic-bezier(0.35, 0, 0.25, 1);
2018-03-10 14:10:13 +00:00
&:hover {
border-color: #23c0fa;
}
&:focus {
border-color: #23c0fa;
box-shadow: 0 0 3px #23c0fa;
}
2019-01-12 03:33:27 +00:00
}