@zat-design/sisyphus-react 4.3.0-beta.2 → 4.3.0-beta.4
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.
|
@@ -336,7 +336,8 @@
|
|
|
336
336
|
.@{ant-prefix}-input,
|
|
337
337
|
.@{ant-prefix}-select .@{ant-prefix}-select-content,
|
|
338
338
|
.@{ant-prefix}-input-number,
|
|
339
|
-
.@{ant-prefix}-input-number-input
|
|
339
|
+
.@{ant-prefix}-input-number-input,
|
|
340
|
+
.@{ant-prefix}-picker {
|
|
340
341
|
border-top-left-radius: 6px !important;
|
|
341
342
|
border-bottom-left-radius: 6px !important;
|
|
342
343
|
}
|
|
@@ -499,7 +500,8 @@
|
|
|
499
500
|
.pro-select .@{ant-prefix}-select,
|
|
500
501
|
.@{ant-prefix}-select,
|
|
501
502
|
.@{ant-prefix}-input-affix-wrapper,
|
|
502
|
-
.@{ant-prefix}-input-number
|
|
503
|
+
.@{ant-prefix}-input-number,
|
|
504
|
+
.@{ant-prefix}-picker {
|
|
503
505
|
border-top-left-radius: 6px !important;
|
|
504
506
|
border-bottom-left-radius: 6px !important;
|
|
505
507
|
}
|
|
@@ -510,7 +512,8 @@
|
|
|
510
512
|
.pro-select .@{ant-prefix}-select,
|
|
511
513
|
.@{ant-prefix}-select,
|
|
512
514
|
.@{ant-prefix}-input-affix-wrapper,
|
|
513
|
-
.@{ant-prefix}-input-number
|
|
515
|
+
.@{ant-prefix}-input-number,
|
|
516
|
+
.@{ant-prefix}-picker {
|
|
514
517
|
border-top-right-radius: 6px !important;
|
|
515
518
|
border-bottom-right-radius: 6px !important;
|
|
516
519
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
@import '../../../../style/variables.less'; // 引入变量
|
|
2
2
|
|
|
3
3
|
.pro-layout-tabs {
|
|
4
|
-
--pro-layout-tabs-primary: var(--
|
|
5
|
-
--pro-layout-tabs-active-bg: var(--
|
|
6
|
-
--pro-layout-tabs-text-color: var(--
|
|
4
|
+
--pro-layout-tabs-primary: var(--zaui-brand, #006aff);
|
|
5
|
+
--pro-layout-tabs-active-bg: var(--zaui-base-bg, #ffffff);
|
|
6
|
+
--pro-layout-tabs-text-color: var(--zaui-text, #464646);
|
|
7
7
|
|
|
8
8
|
display: flex;
|
|
9
9
|
flex-direction: column;
|
|
@@ -169,13 +169,14 @@
|
|
|
169
169
|
.pro-layout-tabs-antd {
|
|
170
170
|
&.@{ant-prefix}-tabs {
|
|
171
171
|
.@{ant-prefix}-tabs-tab {
|
|
172
|
-
padding:
|
|
172
|
+
padding: 4px 0 5px !important;
|
|
173
173
|
margin-right: 8px !important;
|
|
174
174
|
margin-left: 0;
|
|
175
|
-
background: #
|
|
175
|
+
background: #e7e8ee;
|
|
176
176
|
transition: none;
|
|
177
177
|
&.@{ant-prefix}-tabs-tab-active {
|
|
178
|
-
background:
|
|
178
|
+
background: var(--pro-layout-tabs-active-bg);
|
|
179
|
+
border-top: 4px solid var(--pro-layout-tabs-primary);
|
|
179
180
|
}
|
|
180
181
|
}
|
|
181
182
|
.ant-tabs-nav {
|
|
@@ -265,6 +266,15 @@
|
|
|
265
266
|
color: var(--pro-layout-tabs-primary);
|
|
266
267
|
}
|
|
267
268
|
}
|
|
269
|
+
|
|
270
|
+
.pro-layout-tab-close {
|
|
271
|
+
color: var(--pro-layout-tabs-primary);
|
|
272
|
+
|
|
273
|
+
&:hover {
|
|
274
|
+
color: #ff4d4f;
|
|
275
|
+
background: rgba(255, 77, 79, 0.1);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
268
278
|
}
|
|
269
279
|
}
|
|
270
280
|
|