1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .tabs-box {
- background-color: #0088cc;
- // background-color: transparent;
- .tabs-menu {
- position: relative;
- width: 100%;
- .el-dropdown {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- background: rgb(127 255 255 / 20%);
- .more-button {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 43px;
- cursor: pointer;
- border-left: 1px solid #4ca6ff;
- transition: all 0.3s;
- &:hover {
- background-color: rgb(127 255 255 / 20%);
- }
- .iconfont {
- font-size: 12.5px;
- color: #7fffff;
- }
- }
- }
- :deep(.el-tabs) {
- .el-tabs__header {
- box-sizing: border-box;
- height: 40px;
- padding: 0 10px;
- margin: 0;
- border-bottom: #4ca6ff;
- .el-tabs__nav-wrap {
- position: absolute;
- width: calc(100% - 70px);
- .el-tabs__nav {
- display: flex;
- border: none;
- .el-tabs__item {
- display: flex;
- align-items: center;
- justify-content: center;
- color: #7fffff;
- border: none;
- .tabs-icon {
- margin: 1.5px 4px 0 0;
- font-size: 15px;
- }
- .is-icon-close {
- margin-top: 1px;
- }
- &.is-active {
- color: var(--el-color-primary);
- &::before {
- position: absolute;
- bottom: 0;
- width: 100%;
- height: 0;
- content: '';
- border-bottom: 2px solid var(--el-color-primary) !important;
- }
- }
- }
- }
- }
- }
- }
- }
- }
|