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
.theme-beautiful {
  .avue-sidebar {
    background: linear-gradient(90deg, #006cff, #399efd) !important;
 
    .el-menu-item, .el-sub-menu__title {
      background: linear-gradient(90deg, #006cff, #399efd) !important;
    }
 
    .el-menu-item, .el-sub-menu__title {
      i, span {
        color: #fff
      }
 
      .is-active {
        background: #399efd !important;
      }
 
      &:hover, &.is-active {
        background: #399efd !important;
 
        i, span {
          background: #399efd !important;
        }
      }
    }
  }
 
  .avue-logo {
    background: linear-gradient(90deg, #006cff, #399efd) !important;
  }
 
  .avue-tags {
    .el-tabs__item {
      font-size: 14px !important;
      color: #303133 !important;
      font-weight: 500 !important;
      border: 1px solid #dcdfe6 !important;
      border-radius: 3px;
      height: 35px !important;
      line-height: 35px !important;
      margin: 5px 3px 8px 3px !important;
 
      &:hover {
        color: var(--el-color-primary) !important;
        border-color: var(--el-color-primary) !important;
      }
    }
 
    .is-active {
      color: var(--el-color-primary) !important;
      border-color: var(--el-color-primary) !important;
    }
  }
 
}