完全跑通1.0版本
This commit is contained in:
90
frontend/node_modules/element-plus/theme-chalk/src/link.scss
generated
vendored
Normal file
90
frontend/node_modules/element-plus/theme-chalk/src/link.scss
generated
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
@use 'sass:map';
|
||||
|
||||
@use 'mixins/mixins' as *;
|
||||
@use 'mixins/var' as *;
|
||||
@use 'mixins/utils' as *;
|
||||
@use 'common/var' as *;
|
||||
|
||||
@include b(link) {
|
||||
@include set-component-css-var('link', $link);
|
||||
}
|
||||
|
||||
@include b(link) {
|
||||
@include utils-inline-flex-center;
|
||||
|
||||
flex-direction: row;
|
||||
vertical-align: middle;
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
font-size: getCssVar('link', 'font-size');
|
||||
font-weight: getCssVar('link', 'font-weight');
|
||||
color: getCssVar('link', 'text-color');
|
||||
|
||||
@include when(hover-underline) {
|
||||
&:hover:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 0;
|
||||
bottom: 0;
|
||||
border-bottom: 1px solid getCssVar('link', 'hover-text-color');
|
||||
}
|
||||
}
|
||||
|
||||
@include when(underline) {
|
||||
&:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 0;
|
||||
bottom: 0;
|
||||
border-bottom: 1px solid getCssVar('link', 'text-color');
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: getCssVar('link', 'hover-text-color');
|
||||
|
||||
&:after {
|
||||
border-color: getCssVar('link', 'hover-text-color');
|
||||
}
|
||||
}
|
||||
|
||||
& [class*='#{$namespace}-icon-'] {
|
||||
& + span {
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
@include e(inner) {
|
||||
@include utils-inline-flex-center;
|
||||
}
|
||||
|
||||
@each $type in $types {
|
||||
&.#{$namespace}-link--#{$type} {
|
||||
@include css-var-from-global(('link', 'text-color'), ('color', $type));
|
||||
@include css-var-from-global(
|
||||
('link', 'hover-text-color'),
|
||||
('color', $type, 'light-3')
|
||||
);
|
||||
@include css-var-from-global(
|
||||
('link', 'disabled-text-color'),
|
||||
('color', $type, 'light-5')
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@include when(disabled) {
|
||||
color: getCssVar('link', 'disabled-text-color');
|
||||
cursor: not-allowed;
|
||||
|
||||
&:after {
|
||||
border-color: getCssVar('link', 'disabled-text-color');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user