wzp
2021-09-01 2891fe0769189be39c9634b2cbc1841dbd52d022
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
$name: orange, blue;
$color: #FF4806, #2D8CF0;
/* .test{
  @each $c in $name{
     $i:index($name,$c);
     &:nth-child(#{$i+1}){
        background: nth($name,$i);
        width: nth($name,$i);
     }
  }
} */
 
.okadmin {
 
  @each $c in $name{
    $i:index($name,$c);
    &.#{$c}_theme{
      /**头部导航*/
      /* .okadmin-header {
        .layui-nav-item a {
          color: nth($color,$i);
        }
        .layui-icon, .ok-icon {
          color: nth($color,$i);
        }
        .layui-nav {
          .layui-nav-mored {
            border-color: transparent transparent nth($color,$i);
          }
          .layui-nav-more {
            border-color: nth($color,$i) transparent transparent;
          }
          .layui-nav-bar {
            background: nth($color,$i) !important;
          }
        }
      } */
 
      /**左侧菜单*/
      .ok-left .okadmin-nav {
        .layui-nav-bar {
          background: nth($color,$i);
        }
        .layui-nav-item {
          &.layui-this {
            a {
              background: nth($color,$i);
            }
          }
          .layui-nav-child {
            .layui-this {
              a {
                background: nth($color,$i);
              }
            }
          }
        }
      }
 
      /**tab栏*/
      .ok-tab {
        .okadmin-tabs-control:hover,
        .layui-tab-title li.layui-this {
          color: nth($color,$i);
        }
      }
    }
 
  }
}