@lambo-design/shared 1.0.0-beta.206 → 1.0.0-beta.208
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/themes/atrovirens/atrovirens.css +563 -563
- package/config/themes/blue/blue.css +563 -563
- package/config/themes/blue-white/blue-white.css +563 -563
- package/config/themes/blue-white-tight/blue-white-tight.css +564 -564
- package/config/themes/deep/deep.css +563 -563
- package/config/themes/default/default.css +563 -563
- package/config/themes/eap/eap.css +563 -563
- package/config/themes/gold/gold.css +563 -563
- package/config/themes/lime/lime.css +563 -563
- package/config/themes/orange/orange.css +563 -563
- package/config/themes/red/red.css +563 -563
- package/nstyles/common.less +197 -197
- package/nstyles/components/404.less +46 -46
- package/nstyles/components/button.less +34 -34
- package/nstyles/components/date-picker.less +37 -37
- package/nstyles/components/drawer.less +20 -20
- package/nstyles/components/dropdown.less +18 -18
- package/nstyles/components/excel-flow.less +72 -72
- package/nstyles/components/layout/collect.less +10 -10
- package/nstyles/components/layout/detail-view.less +107 -107
- package/nstyles/components/layout/full-screen.less +7 -7
- package/nstyles/components/layout/other-menu.less +142 -142
- package/nstyles/components/layout/page-view.less +101 -101
- package/nstyles/components/layout/sider-trigger.less +41 -41
- package/nstyles/components/layout/tags-nav.less +113 -113
- package/nstyles/components/modal.less +85 -85
- package/nstyles/components/panel.less +31 -31
- package/nstyles/components/select.less +3 -3
- package/nstyles/components/sign.less +27 -27
- package/nstyles/components/table.less +4 -4
- package/nstyles/components/upload.less +131 -131
- package/nstyles/index.less +5 -5
- package/nstyles/reset.less +65 -65
- package/nstyles/third/ag.less +1 -1
- package/nstyles/third/index.less +11 -11
- package/nstyles/third/view-design.less +363 -356
- package/nstyles/variables/base.less +143 -143
- package/nstyles/variables/index.less +4 -4
- package/nstyles/variables/theme/default/button.less +7 -7
- package/nstyles/variables/theme/default/common.less +57 -57
- package/nstyles/variables/theme/default/index.less +7 -7
- package/nstyles/variables/theme/default/layout.less +40 -40
- package/nstyles/variables/theme/default/table.less +37 -37
- package/nstyles/variables/theme/default/tag.less +3 -3
- package/nstyles/variables/theme/default/upload.less +3 -3
- package/nstyles/variables/theme/index.less +13 -13
- package/nstyles/variables/theme/small/button.less +7 -7
- package/nstyles/variables/theme/small/common.less +39 -39
- package/nstyles/variables/theme/small/index.less +5 -5
- package/nstyles/variables/theme/small/layout.less +21 -21
- package/nstyles/variables/theme/small/table.less +17 -17
- package/nstyles/variables/theme/small/tag.less +3 -3
- package/package.json +1 -1
- package/utils/menu/index.js +40 -30
- package/utils/oss.js +2 -4
package/nstyles/common.less
CHANGED
|
@@ -1,197 +1,197 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* 一些常用样式类
|
|
3
|
-
*
|
|
4
|
-
* @Author: huxuetong
|
|
5
|
-
* @Date: 2024-03-12 20:12:54
|
|
6
|
-
* @Last Modified by: huxuetong
|
|
7
|
-
* @Last Modified time: 2024-04-05 11:18:52
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
// 布局
|
|
11
|
-
.ind-panel {
|
|
12
|
-
padding: var(--ind-padding-xs) var(--ind-padding-sm);
|
|
13
|
-
padding-top: var(--ind-sc-padding-top);
|
|
14
|
-
background-color: var(--ind-bg-color-light);
|
|
15
|
-
border-radius: var(--ind-border-radius-sm);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.ind-flex {
|
|
19
|
-
display: flex;
|
|
20
|
-
&.center {
|
|
21
|
-
align-items: center;
|
|
22
|
-
}
|
|
23
|
-
&.baseline {
|
|
24
|
-
align-items: baseline;
|
|
25
|
-
}
|
|
26
|
-
&.end {
|
|
27
|
-
align-items: flex-end;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.ind-flex-column {
|
|
32
|
-
display: flex;
|
|
33
|
-
flex-direction: column;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.height100 {
|
|
37
|
-
height: 100%;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.ind-flex-no-shrink {
|
|
41
|
-
flex-shrink: 0;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.ind-flex-grow {
|
|
45
|
-
flex-grow: 1 !important;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.ind-mt {
|
|
49
|
-
margin-top: var(--ind-padding-xs);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.ind-mr {
|
|
53
|
-
margin-right: var(--ind-padding-xs);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.ind-mb {
|
|
57
|
-
margin-bottom: var(--ind-padding-xs);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.ind-ml {
|
|
61
|
-
margin-left: var(--ind-padding-xs);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.no-border-left-top {
|
|
65
|
-
border-top: none !important;
|
|
66
|
-
border-left: none !important;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// 颜色
|
|
70
|
-
.ind-primary {
|
|
71
|
-
color: var(--ind-primary-color) !important;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.ind-red,
|
|
75
|
-
.ind-down,
|
|
76
|
-
.ind-up.reverse {
|
|
77
|
-
color: var(--ind-red) !important;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.ind-green,
|
|
81
|
-
.ind-up,
|
|
82
|
-
.ind-down.reverse {
|
|
83
|
-
color: var(--ind-green) !important;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.ind-orange {
|
|
87
|
-
color: var(--ind-orange) !important;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.ind-yellow {
|
|
91
|
-
color: #fff600 !important;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.ind-blue {
|
|
95
|
-
color: var(--ind-blue) !important;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.ind-bg-primary {
|
|
99
|
-
background-color: var(--ind-primary-color) !important;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.ind-bg-red,
|
|
103
|
-
.ind-bg-down,
|
|
104
|
-
.ind-bg-up.reverse {
|
|
105
|
-
background-color: var(--ind-red) !important;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.ind-bg-green,
|
|
109
|
-
.ind-bg-up,
|
|
110
|
-
.ind-bg-down.reverse {
|
|
111
|
-
background-color: var(--ind-green) !important;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.ind-bg-orange {
|
|
115
|
-
background-color: var(--ind-orange) !important;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.ind-bg-yellow {
|
|
119
|
-
background-color: #fff600 !important;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.ind-bg-blue {
|
|
123
|
-
background-color: var(--ind-blue) !important;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.ind-sm {
|
|
127
|
-
font-size: var(--ind-font-size-sm);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.ind-lg {
|
|
131
|
-
font-size: var(--ind-font-size-lg);
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.ind-xl {
|
|
135
|
-
font-size: var(--ind-font-size-xl);
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
.ind-xxl {
|
|
139
|
-
font-size: var(--ind-font-size-xxl);
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.ind-font-bold {
|
|
143
|
-
font-weight: var(--ind-font-weight-bold);
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.ind-font-bolder {
|
|
147
|
-
font-weight: var(--ind-font-weight-bolder);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
// 特殊场景
|
|
151
|
-
.no-content {
|
|
152
|
-
text-align: center;
|
|
153
|
-
display: flex;
|
|
154
|
-
flex-direction: column;
|
|
155
|
-
justify-content: center;
|
|
156
|
-
height: 100%;
|
|
157
|
-
.noImgUrl {
|
|
158
|
-
margin-left: calc(50% - 175px);
|
|
159
|
-
width: fit-content;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.tooltip-ellipsis {
|
|
164
|
-
width: 100%;
|
|
165
|
-
|
|
166
|
-
.ellipsis-div {
|
|
167
|
-
text-overflow: ellipsis;
|
|
168
|
-
white-space: nowrap;
|
|
169
|
-
overflow: hidden;
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.ind-card-title-tag {
|
|
174
|
-
display: inline-block;
|
|
175
|
-
padding: 0 var(--ind-padding-xs);
|
|
176
|
-
color: var(--ind-white);
|
|
177
|
-
border-radius: var(--ind-border-radius-sm);
|
|
178
|
-
transform: skew(-20deg);
|
|
179
|
-
|
|
180
|
-
&.blue {
|
|
181
|
-
background: var(--ind-gradient-blue-linear);
|
|
182
|
-
}
|
|
183
|
-
&.green {
|
|
184
|
-
background: var(--ind-gradient-green-linear);
|
|
185
|
-
}
|
|
186
|
-
&.orange {
|
|
187
|
-
background: var(--ind-gradient-orange-linear);
|
|
188
|
-
}
|
|
189
|
-
&.red {
|
|
190
|
-
background: var(--ind-gradient-red-linear);
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
&__name {
|
|
194
|
-
display: inline-block;
|
|
195
|
-
transform: skew(20deg);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
1
|
+
/*
|
|
2
|
+
* 一些常用样式类
|
|
3
|
+
*
|
|
4
|
+
* @Author: huxuetong
|
|
5
|
+
* @Date: 2024-03-12 20:12:54
|
|
6
|
+
* @Last Modified by: huxuetong
|
|
7
|
+
* @Last Modified time: 2024-04-05 11:18:52
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
// 布局
|
|
11
|
+
.ind-panel {
|
|
12
|
+
padding: var(--ind-padding-xs) var(--ind-padding-sm);
|
|
13
|
+
padding-top: var(--ind-sc-padding-top);
|
|
14
|
+
background-color: var(--ind-bg-color-light);
|
|
15
|
+
border-radius: var(--ind-border-radius-sm);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ind-flex {
|
|
19
|
+
display: flex;
|
|
20
|
+
&.center {
|
|
21
|
+
align-items: center;
|
|
22
|
+
}
|
|
23
|
+
&.baseline {
|
|
24
|
+
align-items: baseline;
|
|
25
|
+
}
|
|
26
|
+
&.end {
|
|
27
|
+
align-items: flex-end;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.ind-flex-column {
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-direction: column;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.height100 {
|
|
37
|
+
height: 100%;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ind-flex-no-shrink {
|
|
41
|
+
flex-shrink: 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.ind-flex-grow {
|
|
45
|
+
flex-grow: 1 !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.ind-mt {
|
|
49
|
+
margin-top: var(--ind-padding-xs);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.ind-mr {
|
|
53
|
+
margin-right: var(--ind-padding-xs);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.ind-mb {
|
|
57
|
+
margin-bottom: var(--ind-padding-xs);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.ind-ml {
|
|
61
|
+
margin-left: var(--ind-padding-xs);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.no-border-left-top {
|
|
65
|
+
border-top: none !important;
|
|
66
|
+
border-left: none !important;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// 颜色
|
|
70
|
+
.ind-primary {
|
|
71
|
+
color: var(--ind-primary-color) !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.ind-red,
|
|
75
|
+
.ind-down,
|
|
76
|
+
.ind-up.reverse {
|
|
77
|
+
color: var(--ind-red) !important;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.ind-green,
|
|
81
|
+
.ind-up,
|
|
82
|
+
.ind-down.reverse {
|
|
83
|
+
color: var(--ind-green) !important;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.ind-orange {
|
|
87
|
+
color: var(--ind-orange) !important;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.ind-yellow {
|
|
91
|
+
color: #fff600 !important;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.ind-blue {
|
|
95
|
+
color: var(--ind-blue) !important;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.ind-bg-primary {
|
|
99
|
+
background-color: var(--ind-primary-color) !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.ind-bg-red,
|
|
103
|
+
.ind-bg-down,
|
|
104
|
+
.ind-bg-up.reverse {
|
|
105
|
+
background-color: var(--ind-red) !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.ind-bg-green,
|
|
109
|
+
.ind-bg-up,
|
|
110
|
+
.ind-bg-down.reverse {
|
|
111
|
+
background-color: var(--ind-green) !important;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ind-bg-orange {
|
|
115
|
+
background-color: var(--ind-orange) !important;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.ind-bg-yellow {
|
|
119
|
+
background-color: #fff600 !important;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.ind-bg-blue {
|
|
123
|
+
background-color: var(--ind-blue) !important;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.ind-sm {
|
|
127
|
+
font-size: var(--ind-font-size-sm);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.ind-lg {
|
|
131
|
+
font-size: var(--ind-font-size-lg);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.ind-xl {
|
|
135
|
+
font-size: var(--ind-font-size-xl);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.ind-xxl {
|
|
139
|
+
font-size: var(--ind-font-size-xxl);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.ind-font-bold {
|
|
143
|
+
font-weight: var(--ind-font-weight-bold);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.ind-font-bolder {
|
|
147
|
+
font-weight: var(--ind-font-weight-bolder);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// 特殊场景
|
|
151
|
+
.no-content {
|
|
152
|
+
text-align: center;
|
|
153
|
+
display: flex;
|
|
154
|
+
flex-direction: column;
|
|
155
|
+
justify-content: center;
|
|
156
|
+
height: 100%;
|
|
157
|
+
.noImgUrl {
|
|
158
|
+
margin-left: calc(50% - 175px);
|
|
159
|
+
width: fit-content;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.tooltip-ellipsis {
|
|
164
|
+
width: 100%;
|
|
165
|
+
|
|
166
|
+
.ellipsis-div {
|
|
167
|
+
text-overflow: ellipsis;
|
|
168
|
+
white-space: nowrap;
|
|
169
|
+
overflow: hidden;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.ind-card-title-tag {
|
|
174
|
+
display: inline-block;
|
|
175
|
+
padding: 0 var(--ind-padding-xs);
|
|
176
|
+
color: var(--ind-white);
|
|
177
|
+
border-radius: var(--ind-border-radius-sm);
|
|
178
|
+
transform: skew(-20deg);
|
|
179
|
+
|
|
180
|
+
&.blue {
|
|
181
|
+
background: var(--ind-gradient-blue-linear);
|
|
182
|
+
}
|
|
183
|
+
&.green {
|
|
184
|
+
background: var(--ind-gradient-green-linear);
|
|
185
|
+
}
|
|
186
|
+
&.orange {
|
|
187
|
+
background: var(--ind-gradient-orange-linear);
|
|
188
|
+
}
|
|
189
|
+
&.red {
|
|
190
|
+
background: var(--ind-gradient-red-linear);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
&__name {
|
|
194
|
+
display: inline-block;
|
|
195
|
+
transform: skew(20deg);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
.ind-error-page {
|
|
2
|
-
width: 100%;
|
|
3
|
-
height: 100%;
|
|
4
|
-
position: relative;
|
|
5
|
-
background: #f8f8f9;
|
|
6
|
-
.content-con {
|
|
7
|
-
width: 700px;
|
|
8
|
-
height: 600px;
|
|
9
|
-
position: absolute;
|
|
10
|
-
left: 50%;
|
|
11
|
-
top: 50%;
|
|
12
|
-
transform: translate(-50%, -60%);
|
|
13
|
-
img {
|
|
14
|
-
display: block;
|
|
15
|
-
width: 100%;
|
|
16
|
-
height: 100%;
|
|
17
|
-
}
|
|
18
|
-
.text-con {
|
|
19
|
-
position: absolute;
|
|
20
|
-
left: 0px;
|
|
21
|
-
top: 0px;
|
|
22
|
-
h4 {
|
|
23
|
-
position: absolute;
|
|
24
|
-
left: 0px;
|
|
25
|
-
top: 0px;
|
|
26
|
-
font-size: 80px;
|
|
27
|
-
font-weight: 700;
|
|
28
|
-
color: #348eed;
|
|
29
|
-
}
|
|
30
|
-
h5 {
|
|
31
|
-
position: absolute;
|
|
32
|
-
width: 700px;
|
|
33
|
-
left: 0px;
|
|
34
|
-
top: 100px;
|
|
35
|
-
font-size: 20px;
|
|
36
|
-
font-weight: 700;
|
|
37
|
-
color: #67647d;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
.back-btn-group {
|
|
41
|
-
position: absolute;
|
|
42
|
-
right: 0px;
|
|
43
|
-
bottom: 20px;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
1
|
+
.ind-error-page {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
position: relative;
|
|
5
|
+
background: #f8f8f9;
|
|
6
|
+
.content-con {
|
|
7
|
+
width: 700px;
|
|
8
|
+
height: 600px;
|
|
9
|
+
position: absolute;
|
|
10
|
+
left: 50%;
|
|
11
|
+
top: 50%;
|
|
12
|
+
transform: translate(-50%, -60%);
|
|
13
|
+
img {
|
|
14
|
+
display: block;
|
|
15
|
+
width: 100%;
|
|
16
|
+
height: 100%;
|
|
17
|
+
}
|
|
18
|
+
.text-con {
|
|
19
|
+
position: absolute;
|
|
20
|
+
left: 0px;
|
|
21
|
+
top: 0px;
|
|
22
|
+
h4 {
|
|
23
|
+
position: absolute;
|
|
24
|
+
left: 0px;
|
|
25
|
+
top: 0px;
|
|
26
|
+
font-size: 80px;
|
|
27
|
+
font-weight: 700;
|
|
28
|
+
color: #348eed;
|
|
29
|
+
}
|
|
30
|
+
h5 {
|
|
31
|
+
position: absolute;
|
|
32
|
+
width: 700px;
|
|
33
|
+
left: 0px;
|
|
34
|
+
top: 100px;
|
|
35
|
+
font-size: 20px;
|
|
36
|
+
font-weight: 700;
|
|
37
|
+
color: #67647d;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
.back-btn-group {
|
|
41
|
+
position: absolute;
|
|
42
|
+
right: 0px;
|
|
43
|
+
bottom: 20px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
.ind-button-group {
|
|
2
|
-
display: flex;
|
|
3
|
-
align-items: center;
|
|
4
|
-
flex-wrap: wrap;
|
|
5
|
-
|
|
6
|
-
& > *:not(:last-child) {
|
|
7
|
-
margin-right: var(--ind-padding-base);
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
&--mt > * {
|
|
11
|
-
margin-top: var(--ind-padding-base);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
&--mb > * {
|
|
15
|
-
margin-bottom: var(--ind-padding-base);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
&--center {
|
|
19
|
-
justify-content: center;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&--right {
|
|
23
|
-
justify-content: flex-end;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
&--vertical {
|
|
27
|
-
flex-direction: column;
|
|
28
|
-
|
|
29
|
-
& > *:not(:last-child) {
|
|
30
|
-
margin-right: 0;
|
|
31
|
-
margin-bottom: var(--ind-padding-base);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
1
|
+
.ind-button-group {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
flex-wrap: wrap;
|
|
5
|
+
|
|
6
|
+
& > *:not(:last-child) {
|
|
7
|
+
margin-right: var(--ind-padding-base);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
&--mt > * {
|
|
11
|
+
margin-top: var(--ind-padding-base);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&--mb > * {
|
|
15
|
+
margin-bottom: var(--ind-padding-base);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&--center {
|
|
19
|
+
justify-content: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&--right {
|
|
23
|
+
justify-content: flex-end;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&--vertical {
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
|
|
29
|
+
& > *:not(:last-child) {
|
|
30
|
+
margin-right: 0;
|
|
31
|
+
margin-bottom: var(--ind-padding-base);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
.ind-date-picker {
|
|
2
|
-
.ivu-date-picker {
|
|
3
|
-
width: -webkit-fill-available;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.ind-range-date-picker {
|
|
7
|
-
display: flex;
|
|
8
|
-
align-items: center;
|
|
9
|
-
|
|
10
|
-
.range-sep {
|
|
11
|
-
margin: 0 var(--ind-padding-base);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.ind-picker-drop {
|
|
17
|
-
.ivu-date-picker-cells-month.quarter,
|
|
18
|
-
.ivu-date-picker-cells-month.half-year {
|
|
19
|
-
span {
|
|
20
|
-
margin-left: 0;
|
|
21
|
-
margin-right: 0;
|
|
22
|
-
width: 50%;
|
|
23
|
-
text-align: center;
|
|
24
|
-
|
|
25
|
-
em {
|
|
26
|
-
width: auto;
|
|
27
|
-
padding: 0 10px;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
.ivu-date-picker-cells-month.half-year {
|
|
32
|
-
display: flex;
|
|
33
|
-
span {
|
|
34
|
-
flex: 50% 1 1;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
1
|
+
.ind-date-picker {
|
|
2
|
+
.ivu-date-picker {
|
|
3
|
+
width: -webkit-fill-available;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.ind-range-date-picker {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
|
|
10
|
+
.range-sep {
|
|
11
|
+
margin: 0 var(--ind-padding-base);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.ind-picker-drop {
|
|
17
|
+
.ivu-date-picker-cells-month.quarter,
|
|
18
|
+
.ivu-date-picker-cells-month.half-year {
|
|
19
|
+
span {
|
|
20
|
+
margin-left: 0;
|
|
21
|
+
margin-right: 0;
|
|
22
|
+
width: 50%;
|
|
23
|
+
text-align: center;
|
|
24
|
+
|
|
25
|
+
em {
|
|
26
|
+
width: auto;
|
|
27
|
+
padding: 0 10px;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
.ivu-date-picker-cells-month.half-year {
|
|
32
|
+
display: flex;
|
|
33
|
+
span {
|
|
34
|
+
flex: 50% 1 1;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
.ind-drawer {
|
|
2
|
-
.ivu-drawer-body {
|
|
3
|
-
display: flex;
|
|
4
|
-
flex-direction: column;
|
|
5
|
-
padding: 0;
|
|
6
|
-
background-color: var(--ind-bg-color-dark) !important;
|
|
7
|
-
}
|
|
8
|
-
.ind-drawer-content {
|
|
9
|
-
flex-grow: 1;
|
|
10
|
-
padding: var(--ind-drawer-content-padding);
|
|
11
|
-
overflow: auto;
|
|
12
|
-
}
|
|
13
|
-
.ind-drawer-footer {
|
|
14
|
-
flex-shrink: 0;
|
|
15
|
-
padding: var(--ind-drawer-footer-padding);
|
|
16
|
-
width: 100%;
|
|
17
|
-
background: #fff;
|
|
18
|
-
border-top: 1px solid var(--ind-border-color);
|
|
19
|
-
}
|
|
20
|
-
}
|
|
1
|
+
.ind-drawer {
|
|
2
|
+
.ivu-drawer-body {
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
padding: 0;
|
|
6
|
+
background-color: var(--ind-bg-color-dark) !important;
|
|
7
|
+
}
|
|
8
|
+
.ind-drawer-content {
|
|
9
|
+
flex-grow: 1;
|
|
10
|
+
padding: var(--ind-drawer-content-padding);
|
|
11
|
+
overflow: auto;
|
|
12
|
+
}
|
|
13
|
+
.ind-drawer-footer {
|
|
14
|
+
flex-shrink: 0;
|
|
15
|
+
padding: var(--ind-drawer-footer-padding);
|
|
16
|
+
width: 100%;
|
|
17
|
+
background: #fff;
|
|
18
|
+
border-top: 1px solid var(--ind-border-color);
|
|
19
|
+
}
|
|
20
|
+
}
|