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 {
|
2018-09-03 19:29:27 +08:00
|
|
|
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);
|
2017-10-18 17:16:14 +08:00
|
|
|
font-size: 12px;
|
2017-09-08 13:08:46 +08:00
|
|
|
// 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 & {
|
2017-11-06 21:28:51 +08:00
|
|
|
font-size: @font-size-sm; // reset IE9 and above
|
2016-07-25 14:03:56 +08:00
|
|
|
}
|
|
|
|
}
|