yangys
2025-05-27 81060ec4cc3ead9080d4bdb3875920e257583de4
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
93
94
95
96
97
98
99
100
101
 
.avue-tags {
  user-select: none;
  position: relative;
  padding: 0 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border-top: 1px solid #f6f6f6;
  background-color: #fff;
  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: #ccc;
 
    &.is-active {
      color: var(--el-color-primary);
      border-bottom: 3px solid var(--el-color-primary);
    }
  }
 
  .el-tabs__nav-prev,
  .el-tabs__nav-next {
    width: 20px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
  }
 
  &__box {
    position: relative;
    box-sizing: border-box;
    padding-right: 106px;
    width: 100%;
 
    .el-tabs__item {
      &:first-child {
        .is-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: var(--el-color-primary);
        color: #fff;
      }
    }
  }
 
  &__menu {
    position: absolute !important;
    top: 3px;
    right: 0;
    padding: 1px 0 0 15px;
    box-sizing: border-box;
  }
}