2019-12-15 19:14:56 +08:00
|
|
|
@import './mixins/mixins.scss';
|
|
|
|
|
2019-12-16 19:00:34 +08:00
|
|
|
@include themes-mixin {
|
|
|
|
@include b(log) {
|
|
|
|
position: relative;
|
2019-12-21 21:31:48 +08:00
|
|
|
font-family: $--n-mono-font-family, monospace;
|
2019-12-16 19:00:34 +08:00
|
|
|
font-size: 14px;
|
|
|
|
color: $--n-secondary-text-color;
|
|
|
|
box-sizing: border-box;
|
2019-12-22 15:50:37 +08:00
|
|
|
transition: border-color .3s $--n-ease-in-out-cubic-bezier, color .3s $--n-ease-in-out-cubic-bezier;
|
2019-12-17 22:17:26 +08:00
|
|
|
@include b(scrollbar) {
|
|
|
|
@include b(scrollbar-content) {
|
2019-12-18 17:22:59 +08:00
|
|
|
// padding-top: 8px;
|
|
|
|
// padding-bottom: 8px;
|
2019-12-17 22:17:26 +08:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
@include b(scrollbar-rail) {
|
2019-12-18 17:22:59 +08:00
|
|
|
// @include m(vertical) {
|
|
|
|
// top: 8px;
|
|
|
|
// bottom: 8px
|
|
|
|
// }
|
2019-12-17 22:17:26 +08:00
|
|
|
}
|
2019-12-16 19:00:34 +08:00
|
|
|
}
|
|
|
|
@include e(lines) {
|
|
|
|
margin: 0;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
@include e(line) {
|
|
|
|
margin: 0;
|
2019-12-15 19:14:56 +08:00
|
|
|
}
|
2019-12-16 19:00:34 +08:00
|
|
|
@include b(log-loader) {
|
|
|
|
@include fade-in-width-expand-transition($duration: .3s, $delay: 0s);
|
2019-12-22 15:50:37 +08:00
|
|
|
transition: color .3s $--n-ease-in-out-cubic-bezier, background-color .3s $--n-ease-in-out-cubic-bezier;
|
2019-12-17 18:14:02 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid $--n-border-color;
|
2019-12-16 19:00:34 +08:00
|
|
|
position: absolute;
|
|
|
|
right: 16px;
|
|
|
|
top: 8px;
|
|
|
|
height: 34px;
|
|
|
|
border-radius: 17px;
|
|
|
|
color: $--n-secondary-text-color;
|
|
|
|
background-color: $--n-dialog-color;
|
|
|
|
line-height: 34px;
|
2019-12-20 16:59:37 +08:00
|
|
|
font-family: $--n-font-family;
|
2019-12-16 19:00:34 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
@include e(content) {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: bottom;
|
|
|
|
line-height: 34px;
|
2019-12-20 16:59:37 +08:00
|
|
|
font-family: $--n-font-family;
|
2019-12-16 19:00:34 +08:00
|
|
|
padding-left: 40px;
|
|
|
|
padding-right: 20px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2020-02-13 17:24:04 +08:00
|
|
|
@include b(base-loading) {
|
2019-12-16 19:00:34 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 12px;
|
|
|
|
top: calc(50% - 10px);
|
|
|
|
font-size: 20px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
2019-12-15 19:14:56 +08:00
|
|
|
}
|
2019-12-16 19:00:34 +08:00
|
|
|
}
|