This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-fronted/src/assets/css/components/common/rightBox/chartRightBox/chartRightBox.scss

32 lines
729 B
SCSS
Raw Normal View History

2021-11-30 16:39:21 +08:00
.right-box__container{
.chart-config{
.el-form {
padding-top: 0px;
}
2021-11-30 17:15:29 +08:00
.chart-title-config {
border: 1px solid $--border-color-light;
border-radius: 2px;
display: flex;
padding: 8px 10px;
justify-content: space-between;
margin-bottom: 10px;
.nz-icon-copy {
padding: 0 4px;
color: $--color-primary;
background-color: $--background-color-copy;
border-radius: $--border-radius-small;
cursor: pointer;
}
2021-11-30 17:15:29 +08:00
}
2021-11-30 16:39:21 +08:00
.chart-title .nz-icon-arrow-down{
display: inline-block;
transition: transform .3s;
}
.chart-title .nz-icon-arrow-down.is-active{
transform: rotate(
-90deg
);
}
}
}