naive-ui/styles/Button.scss
2019-06-25 14:59:26 +08:00

100 lines
2.2 KiB
SCSS

@import './mixins/mixins.scss';
@import './theme/default.scss';
@include b(button) {
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: inset 0 0 0 1.5px $button-default-border-color;
cursor: pointer;
user-select: none;
font-weight: 700;
margin: $button-margin;
.n-button__icon {
margin-right: 2px;
}
border-radius: $button-border-radius;
&.n-button--small-size {
font-size: $button-small-font-size;
height: $small-height;
padding: 0 18px;
&.is-round {
border-radius: $small-height / 2;
}
.n-button__content {
line-height: $small-height;
}
.n-button__icon {
height: 18px;
width: 18px;
.n-icon {
&::before {
font-size: 18px;
}
}
}
}
&.n-button--default-size, &.n-button--medium-size {
font-size: $button-default-font-size;
height: $default-height;
padding: 0 24px;
&.is-round {
border-radius: $default-height / 2;
}
.n-button__content {
line-height: $default-height;
}
.n-button__icon {
height: 20px;
width: 20px;
.n-icon {
&::before {
font-size: 20px;
}
}
}
}
&.n-button--large-size {
font-size: $button-large-font-size;
height: $large-height;
padding: 0 24px;
&.is-round {
border-radius: $large-height / 2;
}
.n-button__content {
line-height: $large-height;
}
.n-button__icon {
height: 20px;
width: 20px;
.n-icon {
&::before {
font-size: 20px;
}
}
}
}
&.is-default {
color: $button-default-text-color;
background-color: $button-default-background-color;
&:hover {
background-color: $button-default-background-color--hover;
}
&:active {
background-color: $button-default-background-color--active;
}
}
&.is-primary {
color: #1F263EFF;
background-color: $button-primary-background-color;
box-shadow: none;
&:hover {
background-color: $button-primary-background-color--hover;
}
&:active {
background-color: $button-primary-background-color--active;
}
}
}