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
cyber-narrator-cn-ui/src/assets/css/components/views/charts2/npmTabs.scss
2022-07-18 18:18:34 +08:00

62 lines
1.0 KiB
SCSS

.npm-tabs {
position: relative;
.npm-tabs__active-bar {
position: absolute;
height: 3px;
top: 0;
background-color: #046EC9;
border-radius: 5px 5px 0 0;
transition: all linear .2s;
}
.el-tabs.el-tabs--border-card {
position: absolute;
top: 3px;
width: 100%;
border: none;
box-shadow: none;
&>.el-tabs__header {
background-color: white;
border-color: #E2E5EC;
.el-tabs__nav-wrap {
padding-left: 27px;
}
.el-tabs__item:first-child {
margin-left: 0;
}
}
.el-tabs__content {
display: none;
}
}
.el-tabs__item.is-top {
height: 35px;
line-height: 35px;
.npm-tab__label {
color: #353636;
font-size: 14px;
font-weight: bold;
box-sizing: border-box;
i {
padding-right: 7px;
font-size: 16px;
font-weight: normal;
}
}
&.is-active {
.npm-tab__label {
color: #353636;
i {
color: #046EC9;
}
}
}
}
}