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
99 lines
1.9 KiB
SCSS
99 lines
1.9 KiB
SCSS
@use 'sass:map';
|
|
|
|
@use 'mixins/mixins' as *;
|
|
@use 'common/var' as *;
|
|
|
|
@include b(table-column) {
|
|
@include m(selection) {
|
|
.cell {
|
|
padding-left: 14px;
|
|
padding-right: 14px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include b(table-filter) {
|
|
border: solid 1px getCssVar('border-color-lighter');
|
|
border-radius: 2px;
|
|
background-color: $color-white;
|
|
box-shadow: map.get($dropdown, 'menu-box-shadow');
|
|
box-sizing: border-box;
|
|
|
|
/** used for dropdown mode */
|
|
@include e(list) {
|
|
padding: 5px 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
min-width: 100px;
|
|
}
|
|
|
|
@include e(list-item) {
|
|
line-height: 36px;
|
|
padding: 0 10px;
|
|
cursor: pointer;
|
|
font-size: getCssVar('font-size', 'base');
|
|
|
|
&:hover {
|
|
background-color: map.get($dropdown, 'menuItem-hover-fill');
|
|
color: map.get($dropdown, 'menuItem-hover-color');
|
|
}
|
|
|
|
@include when(active) {
|
|
background-color: getCssVar('color-primary');
|
|
color: $color-white;
|
|
}
|
|
}
|
|
|
|
@include e(content) {
|
|
min-width: 100px;
|
|
}
|
|
|
|
@include e(bottom) {
|
|
border-top: 1px solid getCssVar('border-color-lighter');
|
|
padding: 8px;
|
|
|
|
button {
|
|
background: transparent;
|
|
border: none;
|
|
color: getCssVar('text-color', 'regular');
|
|
cursor: pointer;
|
|
font-size: getCssVar('font-size-small');
|
|
padding: 0 3px;
|
|
|
|
&:hover {
|
|
color: getCssVar('color-primary');
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
&.is-disabled {
|
|
color: getCssVar('disabled-text-color');
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include e(wrap) {
|
|
max-height: 280px;
|
|
}
|
|
|
|
@include e(checkbox-group) {
|
|
padding: 10px;
|
|
|
|
label.#{$namespace}-checkbox {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 5px;
|
|
margin-bottom: 12px;
|
|
margin-left: 5px;
|
|
height: unset;
|
|
}
|
|
|
|
.#{$namespace}-checkbox:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|