ant-design/components/style/mixins/iconfont.less

42 lines
912 B
Plaintext
Raw Normal View History

2015-07-01 14:48:47 +08:00
.iconfont-mixin() {
display: inline-block;
font-style: normal;
2018-07-19 15:07:31 +08:00
vertical-align: -0.125em; // for SVG icon, see https://blog.prototypr.io/align-svg-icons-to-text-and-say-goodbye-to-font-icons-d44b3d7b26b4
2015-07-01 14:48:47 +08:00
text-align: center;
text-transform: none;
2018-09-14 10:58:03 +08:00
line-height: 0;
2016-06-21 20:04:08 +08:00
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2018-08-14 14:45:04 +08:00
2018-09-17 14:53:21 +08:00
> * {
line-height: 1;
}
2018-08-14 14:45:04 +08:00
svg {
2018-09-14 10:58:03 +08:00
display: inline-block;
2018-08-14 14:45:04 +08:00
}
2015-07-01 14:48:47 +08:00
&:before {
display: none; // dont display old icon.
2015-07-01 14:48:47 +08:00
}
2018-08-09 12:07:27 +08:00
& &-icon {
display: block;
}
2015-07-01 21:24:04 +08:00
}
2016-07-25 14:03:56 +08:00
// for iconfont font size
// fix chrome 12px bug, support ie
.iconfont-size-under-12px(@size, @rotate: 0deg) {
display: inline-block;
2016-11-08 21:25:57 +08:00
@font-scale: unit(@size / 12px);
font-size: 12px;
// IE9
2018-11-12 12:02:30 +08:00
font-size: ~"@{size} \9";
2016-07-25 14:03:56 +08:00
transform: scale(@font-scale) rotate(@rotate);
:root & {
font-size: @font-size-sm; // reset IE9 and above
2016-07-25 14:03:56 +08:00
}
}