ant-design-vue/components/vc-time-picker/assets/index.less

45 lines
767 B
Plaintext
Raw Normal View History

2018-03-07 14:21:55 +00:00
@prefixClass: rc-time-picker;
.@{prefixClass} {
display: inline-block;
2019-03-04 13:00:08 +00:00
position: relative;
2018-03-07 14:21:55 +00:00
box-sizing: border-box;
* {
box-sizing: border-box;
}
2019-03-04 13:00:08 +00:00
&-clear {
position: absolute;
right: 6px;
cursor: pointer;
overflow: hidden;
width: 20px;
height: 20px;
text-align: center;
line-height: 20px;
top: 3px;
margin: 0;
&-icon:after {
2019-05-28 03:37:38 +00:00
content: 'x';
2019-03-04 13:00:08 +00:00
font-size: 12px;
font-style: normal;
color: #aaa;
display: inline-block;
line-height: 1;
height: 20px;
width: 20px;
transition: color 0.3s ease;
}
&-icon:hover:after {
color: #666;
}
}
2018-03-07 14:21:55 +00:00
}
2019-01-12 03:33:27 +00:00
@import './index/Picker';
@import './index/Panel';
@import './index/Header';
@import './index/Select';