module-menu 0.2.32 → 0.2.33
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/package.json
CHANGED
|
@@ -14,7 +14,7 @@ import './index.less';
|
|
|
14
14
|
import cn from 'classnames'
|
|
15
15
|
|
|
16
16
|
// stash存在则为一体化,否则为轻量级
|
|
17
|
-
const ModuleUser = ({ stash = '' }) => {
|
|
17
|
+
const ModuleUser = ({ stash = 'LNRD' }) => {
|
|
18
18
|
const [tenantList, setTenantList] = useState([]);
|
|
19
19
|
const [haveAppSystemPermission, setHaveAppSystemPermission] = useState(false);
|
|
20
20
|
useEffect(() => {
|
|
@@ -68,13 +68,16 @@
|
|
|
68
68
|
min-width: 160px;
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
|
-
.
|
|
71
|
+
.right_size_LNRD .ant-btn-link{
|
|
72
72
|
color: #FFE347 ;
|
|
73
73
|
}
|
|
74
|
-
.
|
|
75
|
-
|
|
74
|
+
.fwmh_color_LNRD .ant-btn-link{
|
|
75
|
+
color: #FFE347 ;
|
|
76
|
+
}
|
|
77
|
+
.right_size_LNRD .ant-btn-link:hover,
|
|
78
|
+
.right_size_LNRD .ant-btn-link:focus{
|
|
76
79
|
color:#FFE347
|
|
77
80
|
}
|
|
78
|
-
.
|
|
79
|
-
background-color: #fff0;
|
|
81
|
+
.right_size_LNRD .ant-select:not(.ant-select-customize-input) .ant-select-selector{
|
|
82
|
+
background-color: #fff0 !important;
|
|
80
83
|
}
|
package/src/pages/index.jsx
CHANGED