2022-02-02 13:24:47 +00:00
|
|
|
%theme-light {
|
|
|
|
--theme-dark-none: ;
|
|
|
|
--theme-light-none: initial;
|
|
|
|
}
|
|
|
|
%theme-dark {
|
|
|
|
--theme-dark-none: initial;
|
|
|
|
--theme-light-none: ;
|
|
|
|
}
|
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 {
|
|
|
|
content: '';
|
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;
|
|
|
|
}
|