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
.theme-iview {
  .avue-logo {
    background: #001529;
    box-shadow: none;
    text-align: center;
 
    .avue-logo_title {
      padding: 5px 8px 8px 8px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      border-bottom-left-radius: 3px;
      border-bottom-right-radius: 3px;
      font-size: 20px;
      color: #fff;
      font-weight: 500;
      display: inline;
      background-color: var(--el-color-primary);
    }
  }
 
  .avue-tags {
    padding: 3px 5px 5px 0;
    background: #f0f0f0;
    box-shadow: inset 0 0 3px 2px hsla(0, 0%, 39.2%, .1);
 
    .is-active {
      &:before {
        background: var(--el-color-primary) !important;
      }
    }
 
    .el-tabs__item {
      padding: 0 15px !important;
      position: relative;
      height: 32px !important;
      line-height: 32px !important;
      border: 1px solid #e8eaec !important;
      color: #515a6e !important;
      background: #fff !important;
      border-radius: 3px;
 
      &:before {
        content: '';
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-right: 10px;
        border-radius: 50%;
        background: #e8eaec;
      }
    }
  }
 
  .avue-sidebar {
    background: #001529;
 
    .el-menu-item {
      &.is-active {
        background-color: #000c17;
 
        &:before {
          display: none;
        }
 
        i, span {
          color: var(--el-color-primary);
        }
      }
    }
 
    .el-sub-menu {
      .el-menu-item {
        &.is-active {
          background-color: var(--el-color-primary);
 
          &:before {
            display: none;
          }
 
          i, span {
            color: #fff;
          }
        }
      }
    }
  }
}