naive-ui/styles/Notification.scss
2019-12-15 22:34:35 +08:00

181 lines
4.6 KiB
SCSS

@import './mixins/mixins.scss';
@import './themes/vars.scss';
@include b(notification-container) {
z-index: 4000;
position: fixed;
top: 12px;
left: 0;
right: 0;
height: 0;
overflow: visible;
display: flex;
flex-direction: column;
align-items: flex-end;
@include b(scrollbar-container) {
height: -moz-fit-content !important;
height: fit-content !important;
max-height: 100vh !important;
@include b(scrollbar-content) {
padding-top: 12px;
}
}
@include m(scrollable) {
top: 0;
}
}
@mixin notification-type-mixin ($type) {
@include m($type + '-type') {
@include e(avatar) {
@include b(icon) {
fill: map-get($--notification-avatar-fill, $type);
}
}
}
}
@include themes-mixin {
@include b(notification) {
@include notification-type-mixin(success);
@include notification-type-mixin(info);
@include notification-type-mixin(warning);
@include notification-type-mixin(error);
@include notification-type-mixin(default);
background-color: $--notification-background-color;
color: $--notification-text-color;
@include once {
transition:
background-color .3s $default-cubic-bezier,
color .3s $default-cubic-bezier,
opacity .3s $default-cubic-bezier,
transform .3s $default-cubic-bezier,
max-height .3s $default-cubic-bezier,
margin-bottom .3s linear,
box-shadow .3s $default-cubic-bezier;
font-family: $default-font-family;
font-size: 14px;
font-weight: 400;
position: relative;
display: flex;
overflow: hidden;
flex-shrink: 0;
margin-bottom: 12px;
margin-left: 12px;
margin-right: 16px;
padding-left: 16px;
padding-right: 16px;
width: 365px;
border-radius: 6px;
box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.18);
box-sizing: border-box;
opacity: 1;
&-transition-enter, &-transition-leave-to {
opacity: 0;
margin-bottom: 0;
transform: translateX(calc(100% + 16px));
}
&-transition-leave, &-transition-enter-to {
opacity: 1;
transform: translateX(0);
}
@include m(no-avatar) {
@include b(notification-main) {
margin-left: 8px;
width: calc(100% - 8px);
}
}
}
@include e(close) {
@include once {
position: absolute;
top: 16px;
right: 12px;
font-size: 20px;
cursor: pointer;
}
@include b(icon) {
fill: $--notification-close-fill;
}
}
@include e(avatar) {
@include once {
position: absolute;
top: 16px;
left: 16px;
width: 28px;
height: 28px;
font-size: 28px;
}
}
@include b(notification-main) {
@include once {
padding-top: 16px;
padding-bottom: 16px;
box-sizing: border-box;
width: 100%;
display: flex;
flex-direction: column;
margin-left: 40px;
width: calc(100% - 40px);
@include b(notification-main-footer) {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 8px;
}
}
@include e(header) {
@include once {
font-weight: 700;
font-size: 16px;
transition: color .3s $default-cubic-bezier;
}
color: $--notification-header-text-color;
}
@include e(description) {
@include once {
margin-top: 8px;
font-size: 12px;
transition: color .3s $default-cubic-bezier;
}
color: $--notification-description-text-color;
}
@include e(content) {
@include once {
line-height: 1.25;
margin: 12px 0 0 0;
font-family: inherit;
&:first-child {
margin: 0;
}
white-space: pre-wrap;
word-wrap: break-word;
transition: color .3s $default-cubic-bezier;
}
color: $--notification-content-text-color;
}
@include b(notification-main-footer) {
@include once {
margin-top: 12px;
}
@include e(meta) {
@include once {
font-size: 12px;
transition: color .3s $default-cubic-bezier;
}
color: $--notification-description-text-color;
}
@include e(action) {
@include once {
cursor: pointer;
transition: color .3s $default-cubic-bezier;
}
color: $--notification-action-text-color;
}
}
}
}
}