mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
3d1b3d4a58
* refactor(theme-chalk): scss css var namespace * fix(theme-chalk): compile getCssVar * fix(theme-chalk): more --el namespace replace & getCssVarWithDefault * fix(theme-chalk): use cssVarBlockName & cssVar rewrite button css vars * fix(theme-chalk): replace empty svg fill color with ns * chore: use cssVarName for --el-color-white * chore: fix namespace reactive * chore: use defaultNamespace
58 lines
1.2 KiB
SCSS
58 lines
1.2 KiB
SCSS
@use 'mixins/mixins' as *;
|
|
@use 'mixins/var' as *;
|
|
@use 'common/var' as *;
|
|
|
|
@include b(result) {
|
|
@include set-component-css-var('result', $result);
|
|
}
|
|
|
|
@include b(result) {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
padding: getCssVar('result-padding');
|
|
|
|
@include e(icon) {
|
|
svg {
|
|
width: getCssVar('result-icon-font-size');
|
|
height: getCssVar('result-icon-font-size');
|
|
}
|
|
}
|
|
|
|
@include e(title) {
|
|
margin-top: getCssVar('result-title-margin-top');
|
|
|
|
p {
|
|
margin: 0;
|
|
font-size: getCssVar('result-title-font-size');
|
|
color: getCssVar('text-color', 'primary');
|
|
line-height: 1.3;
|
|
}
|
|
}
|
|
|
|
@include e(subtitle) {
|
|
margin-top: getCssVar('result-subtitle-margin-top');
|
|
|
|
p {
|
|
margin: 0;
|
|
font-size: getCssVar('font-size', 'base');
|
|
color: getCssVar('text-color', 'regular');
|
|
line-height: 1.3;
|
|
}
|
|
}
|
|
|
|
@include e(extra) {
|
|
margin-top: getCssVar('result-extra-margin-top');
|
|
}
|
|
|
|
@each $type in $types {
|
|
.icon-#{$type} {
|
|
@include css-var-from-global(('result', 'color'), ('color', $type));
|
|
color: getCssVar('result-color');
|
|
}
|
|
}
|
|
}
|