zouyu
2023-11-17 d8ac6057eaad648687699e25a575f3b7b8c1b102
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
 
 
.avue-tags {
    user-select: none;
    position: relative;
    padding: 0 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #006eff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    .el-tabs--card>.el-tabs__header {
        margin: 0;
    }
    .el-tabs--card>.el-tabs__header .el-tabs__nav,
    .el-tabs--card>.el-tabs__header .el-tabs__item,
    .el-tabs--card>.el-tabs__header {
        border: none;
    }
    .el-tabs--card>.el-tabs__header .el-tabs__item:first-child {
        border-left-width: 1px
    }
    .el-tabs--card>.el-tabs__header .el-tabs__item {
        margin: 0 3px;
        height: 40px;
        line-height:40px;
        font-size: 13px;
        font-weight: normal;
        color: #fff;
        &.is-active {
            font-weight: bold;
            border-bottom: 3px solid #fff;
        }
    }
    .el-tabs__nav-prev,
    .el-tabs__nav-next {
        width: 20px;
        line-height: 34px;
        font-size: 18x;
        text-align: center;
        color: #fff;
    }
    &__box {
        position: relative;
        box-sizing: border-box;
        padding-right: 106px;
        width: 100%;
        &--close {
            .el-tabs__item {
                &:first-child {
                    padding: 0 20px !important;
                    .el-icon-close {
                        display: none;
                    }
                }
            }
        }
    }
    &__contentmenu{
        position: fixed;
        width:120px;
        background-color: #fff;
        z-index:1024;
        border-radius: 5px;
        box-shadow: 1px 2px 10px #ccc;
        .item{
            cursor: pointer;
            font-size: 14px;
            padding: 8px 20px 8px 15px;
            color: #606266;
            &:first-child{
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
            }
            &:last-child{
                border-bottom-left-radius: 5px;
                border-bottom-right-radius: 5px;
            }
            &:hover{
                background-color: #409EFF;
                color:#fff;
            }
        }
    }
    &__menu {
        position: absolute !important;
        top: 3px;
        right: 0;
        padding: 1px 0 0 15px;
        box-sizing: border-box;
    }
}