mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-21 02:50:11 +08:00
refactor(button): modify height to min-height (#1402)
This commit is contained in:
parent
7f8817cb6b
commit
e94483a1d2
@ -7,7 +7,7 @@
|
||||
@include b(button) {
|
||||
display: inline-block;
|
||||
line-height: 1;
|
||||
height: 40px;
|
||||
min-height: $--input-height;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
background: $--button-default-background-color;
|
||||
@ -138,7 +138,7 @@
|
||||
@include button-variant($--button-info-font-color, $--button-info-background-color, $--button-info-border-color);
|
||||
}
|
||||
@include m(medium) {
|
||||
height: $--input-medium-height;
|
||||
min-height: $--input-medium-height;
|
||||
|
||||
@include button-size($--button-medium-padding-vertical, $--button-medium-padding-horizontal, $--button-medium-font-size, $--button-medium-border-radius);
|
||||
@include when(circle) {
|
||||
@ -146,7 +146,7 @@
|
||||
}
|
||||
}
|
||||
@include m(small) {
|
||||
height: $--input-small-height;
|
||||
min-height: $--input-small-height;
|
||||
|
||||
@include button-size($--button-small-padding-vertical, $--button-small-padding-horizontal, $--button-small-font-size, $--button-small-border-radius);
|
||||
@include when(circle) {
|
||||
@ -154,7 +154,7 @@
|
||||
}
|
||||
}
|
||||
@include m(mini) {
|
||||
height: $--input-mini-height;
|
||||
min-height: $--input-mini-height;
|
||||
|
||||
@include button-size($--button-mini-padding-vertical, $--button-mini-padding-horizontal, $--button-mini-font-size, $--button-mini-border-radius);
|
||||
@include when(circle) {
|
||||
|
@ -428,13 +428,11 @@ $--notification-danger-icon-color: $--color-danger !default;
|
||||
|
||||
/* Input
|
||||
-------------------------- */
|
||||
$--input-font-size: $--font-size-base !default;
|
||||
/// color||Color|0
|
||||
$--input-font-color: $--color-text-regular !default;
|
||||
/// height||Other|4
|
||||
/// width||Other|4
|
||||
$--input-width: 140px !default;
|
||||
/// height||Other|4
|
||||
$--input-height: 40px !default;
|
||||
|
||||
$--input-border: $--border-base !default;
|
||||
$--input-border-color: $--border-color-base !default;
|
||||
/// borderRadius||Border|2
|
||||
@ -461,6 +459,10 @@ $--input-disabled-border: $--disabled-border-base !default;
|
||||
$--input-disabled-color: $--disabled-color-base !default;
|
||||
$--input-disabled-placeholder-color: $--color-text-placeholder !default;
|
||||
|
||||
/// fontSize||Font|1
|
||||
$--input-font-size: $--font-size-base !default;
|
||||
/// height||Other|4
|
||||
$--input-height: 40px !default;
|
||||
/// fontSize||Font|1
|
||||
$--input-medium-font-size: 14px !default;
|
||||
/// height||Other|4
|
||||
|
@ -7,7 +7,7 @@
|
||||
position: relative;
|
||||
color: $--color-text-regular;
|
||||
font-size: $--font-size-base;
|
||||
line-height: 40px;
|
||||
line-height: $--input-height;
|
||||
|
||||
@include m(mini) {
|
||||
line-height: $--input-mini-height;
|
||||
|
@ -76,7 +76,7 @@
|
||||
font-size: $--font-size-base;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
line-height: 40px;
|
||||
line-height: $--input-height;
|
||||
@include scroll-bar;
|
||||
|
||||
& .el-input__clear {
|
||||
|
@ -11,7 +11,7 @@
|
||||
@include b(select) {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
line-height: 40px;
|
||||
line-height: $--input-height;
|
||||
|
||||
@include e(popper) {
|
||||
@include picker-popper(
|
||||
|
Loading…
Reference in New Issue
Block a user