2019-04-30 17:54:28 +00:00
|
|
|
%with-icon {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
}
|
2019-12-17 18:47:37 +00:00
|
|
|
%with-mask {
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
2020-04-29 11:19:16 +00:00
|
|
|
background-color: currentColor;
|
2019-12-17 18:47:37 +00:00
|
|
|
}
|
2020-09-18 10:14:06 +00:00
|
|
|
%with-glyph-icon {
|
2021-10-07 18:21:11 +00:00
|
|
|
font-weight: var(--typo-weight-normal);
|
|
|
|
background-color: rgb(var(--tone-gray-100));
|
2020-09-18 10:14:06 +00:00
|
|
|
visibility: visible;
|
|
|
|
padding: 0 4px;
|
|
|
|
}
|
2019-04-30 17:54:28 +00:00
|
|
|
%as-pseudo {
|
|
|
|
display: inline-block;
|
|
|
|
content: '';
|
|
|
|
visibility: visible;
|
|
|
|
background-size: contain;
|
2019-05-01 18:09:29 +00:00
|
|
|
width: 1.2em;
|
|
|
|
height: 1.2em;
|
|
|
|
vertical-align: text-top;
|
2019-06-14 17:27:37 +00:00
|
|
|
}
|
2021-03-17 11:23:00 +00:00
|
|
|
%led-icon {
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
%led-icon::after,
|
|
|
|
%led-icon::before {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 100%;
|
|
|
|
}
|
|
|
|
%led-icon::before {
|
|
|
|
border: 1px solid currentColor;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
%led-icon::after {
|
|
|
|
position: absolute;
|
|
|
|
top: 2px;
|
|
|
|
left: 2px;
|
|
|
|
width: calc(100% - 4px);
|
|
|
|
height: calc(100% - 4px);
|
|
|
|
background-color: currentColor;
|
|
|
|
}
|