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
.theme-d2 {
  .avue-logo {
    color: var(--el-color-primary);
    background-color: #ebf1f6;
    box-shadow: none;
 
    .avue-logo_title {
      font-size: 20px;
      font-weight: 400;
    }
  }
 
  .avue-top {
    background-color: #ebf1f6;
    box-shadow: none;
  }
 
  .avue-main {
    padding: 0 5px;
  }
 
  .avue-tags {
    margin-left: 6px;
    padding: 0;
    border: 1px solid #e4e7ed;
    border-radius: 3px;
    background-color: #ebf1f6;
    box-shadow: none;
 
    .el-tabs__item {
      border-left: 1px solid #cfd7e5 !important;
      margin: 0 !important;
      background-color: rgba(0, 0, 0, .03) !important;
      color: #606266 !important;
      font-size: 14px !important;
      font-weight: 500 !important;
 
      &:first-child {
        border-left: none !important;
      }
    }
 
    .is-active {
      border-bottom: 1px solid #fff !important;
      background-color: #fff !important;
      color: var(--el-color-primary) !important;
    }
  }
 
  .avue-sidebar {
    background-color: #ebf1f6;
    box-shadow: none;
 
    .el-menu-item, .el-sub-menu__title {
      i, span {
        color: #606266
      }
 
      &:hover, &.is-active {
        background: hsla(0, 0%, 100%, .5);
 
        i, span {
          color: var(--el-color-primary);
        }
      }
    }
  }
}