陈战涛
2023-05-09 b3ae531ee3b12fa191dc0aa656957bc00ef8ae4a
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
@CHARSET "UTF-8";
 
/** dataGrid的表头 **/
.d-grid .header-table .header .caption {
    margin-left: 4px;
    font-weight: bold;
}
 
/**底部按钮高度默认22 调整为30*/
.d-panel .button-panel{
    height:30px !important;
}
 
/** 取消 toobar的边框*/
.d-toolbar{
    border-width: 0px !important;
}
 
/**
D7标题加粗
 */
.d-caption-bar .caption{
    font-weight: bold;
    font-family: "微软雅黑", Arial, sans-serif;
 
}
 
 
 
/**
d-toolbar上按钮高度和样式
 */
.toolbar-button{
    background-color: #1E9FFF !important;
    margin-right: 10px;
}
.toolbar-button .caption{
    color: #fff !important;
}
 
/**
d-toolbar上按钮高度和样式
 */
.toolbar-button-warm{
    background-color: #FFB800 !important;
    margin-right: 10px;
}
.toolbar-button-warm .caption{
    color: #fff !important;
}
 
/**
d-toolbar上按钮高度和样式
 */
.toolbar-button-warn{
    background-color: #FF5722 !important;
    margin-right: 10px;
}
.toolbar-button-warn .caption{
    color: #fff !important;
}
 
.toolbar-button-push{
    background-color: #009688 !important;
    margin-right: 10px;
}
.toolbar-button-push .caption{
    color: #fff !important;
}
 
/** 自定义样式**/
.btn-default {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    background-color: #009688 !important;
    color: #fff !important;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
 
.btn-normal {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    background-color: #1E9FFF !important;
    color: #fff !important;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
 
.btn-warm {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    background-color: #FFB800 !important;
    color: #fff !important;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
 
.btn-warn {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    background-color: #FF5722 !important;
    color: #fff !important;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
 
.btn-flush {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    background-color: #21b9bb !important;;
    color: #fff !important;;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
 
.btn-disabled {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    background-color: #FBFBFB !important;;
    color: #C9C9C9 !important;;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    cursor: not-allowed;
    opacity: 1
}
 
.line-top {
    width: 100%;
    border-top: solid #0d1021 1px;
}
 
.bg-color {
    background-color: #FFF;
}