@titaui/pc 1.9.59 → 1.9.60
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.
|
@@ -29,10 +29,26 @@
|
|
|
29
29
|
align-items: center;
|
|
30
30
|
justify-content: center;
|
|
31
31
|
margin: 0 5px;
|
|
32
|
+
position: relative;
|
|
32
33
|
}
|
|
33
34
|
|
|
34
35
|
.tencent-hr-header__item > a {
|
|
35
|
-
color: #
|
|
36
|
+
color: #FFF !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.tencent-hr-header__item--active::after {
|
|
40
|
+
content: "";
|
|
41
|
+
position: absolute;
|
|
42
|
+
top: 50%;
|
|
43
|
+
left: 50%;
|
|
44
|
+
-webkit-transform: translateX(-50%);
|
|
45
|
+
-ms-transform: translateX(-50%);
|
|
46
|
+
transform: translateX(-50%);
|
|
47
|
+
margin-top: 16px;
|
|
48
|
+
width: 20px;
|
|
49
|
+
height: 3px;
|
|
50
|
+
border-radius: 3px;
|
|
51
|
+
background-color: #fff;
|
|
36
52
|
}
|
|
37
53
|
|
|
38
54
|
.tencent-hr-header__item img {
|
|
@@ -337,7 +337,7 @@ var NewOkrList = function NewOkrList(props) {
|
|
|
337
337
|
pageSize: pageSize,
|
|
338
338
|
current: pageNum,
|
|
339
339
|
size: "sm"
|
|
340
|
-
}))), okrs.length
|
|
340
|
+
}))), okrs.length === 0 && /*#__PURE__*/_react["default"].createElement(Empty, {
|
|
341
341
|
openCreate: function openCreate() {
|
|
342
342
|
return openCreateModal();
|
|
343
343
|
},
|
package/package.json
CHANGED
|
@@ -25,8 +25,23 @@
|
|
|
25
25
|
align-items: center;
|
|
26
26
|
justify-content: center;
|
|
27
27
|
margin: 0 5px;
|
|
28
|
+
position: relative;
|
|
28
29
|
& > a {
|
|
29
|
-
color: #
|
|
30
|
+
color: #FFF!important;
|
|
31
|
+
}
|
|
32
|
+
&--active::after{
|
|
33
|
+
content: "";
|
|
34
|
+
position: absolute;
|
|
35
|
+
top: 50%;
|
|
36
|
+
left: 50%;
|
|
37
|
+
-webkit-transform: translateX(-50%);
|
|
38
|
+
-ms-transform: translateX(-50%);
|
|
39
|
+
transform: translateX(-50%);
|
|
40
|
+
margin-top: 16px;
|
|
41
|
+
width: 20px;
|
|
42
|
+
height: 3px;
|
|
43
|
+
border-radius: 3px;
|
|
44
|
+
background-color: #fff;
|
|
30
45
|
}
|
|
31
46
|
img {
|
|
32
47
|
width: 12px;
|