admin
2024-07-27 65aaf1c05bd06cefa82ebc40cc3e01cf4ac233c0
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
102
103
@import 'css3.less';
@import "var.less";
//浮动
.f-l{float:left}
.f-r{float:right}
//字体
.font-face('../fonts/','iconfont');
.iconfont{
    font-family:"iconfont" !important;
    font-size:16px;font-style:normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;}
//重置panel
.panel-default {
  border-color: #ebeaea;
}
.panel-default .panel-header {
  border-color: transparent;
  background-color: #fff;
  color: #555555;
}
.panel-header {
  border-bottom: solid 1px transparent;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: normal;
}   
//下拉框选中颜色
.layui-form-select dl dd.layui-this{
    background: rgb(242,242,242);
    color: #333;
//按钮移上去颜色
.layui-btn-primary:hover {
    border-color: @btnNormalHover;
    color: #333;
}
//tab more的位置
.layui-tab-bar {
    position: absolute;
    right: 3px;
    top: 3px;
    z-index: 10;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    background-color: #fff;
}
//引用区域的文字颜色
.layui-elem-quote{
    border-left: 5px solid @blue;
}
/*清楚浮动*/
.clearfix{
    .clearfix();
}
//灰色背景
 
.layui-nav-no-bg{
    background: transparent;
    width: auto;
    &.layui-nav-tree .layui-nav-item a:hover {
        background-color: transparent;
        color: @blue;
    }
    &.layui-nav .layui-nav-item a{
        color: #333;
    }
    .layui-nav-itemed>a, .layui-nav-tree .layui-nav-title a, .layui-nav-tree .layui-nav-title a:hover{
        background: transparent!important;
        color: #333!important;
    }
    &.layui-nav-tree .layui-nav-child a {
        height: 40px;
        line-height: 40px;
        text-indent: 10px;
        color: #666;
    }
    &.layui-nav-tree .layui-nav-child dd.layui-this, &.layui-nav-tree .layui-this,  &.layui-nav-tree .layui-this>a:hover{
        background-color: #fff;
        color: @blue;
    }
    &.layui-nav-tree .layui-this>a{
        background-color: #fff;
        color: @blue;
        border-left: 3px solid @blue;
        margin-right: -20px;
    }
    .layui-nav-bar{
        display: none;
    }
    
}
 
.showSubBtn{
    width: 16px;
    height: 16px;
    line-height: 16px;
    margin-left: 5px;
}