@litianxiang/portal-ui 0.0.28 → 0.0.30
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/dist/styles/element-ui.scss +25 -24
- package/package.json +1 -1
|
@@ -3752,34 +3752,35 @@
|
|
|
3752
3752
|
|
|
3753
3753
|
|
|
3754
3754
|
// ==================== Menu 菜单弹出层 ====================
|
|
3755
|
-
|
|
3756
|
-
// ==================== 左侧菜单 ====================
|
|
3757
|
-
.el-menu {
|
|
3758
|
-
border-right: 1px solid #e0e0e0;
|
|
3759
|
-
background: #fff;
|
|
3755
|
+
.el-menu--popup {
|
|
3760
3756
|
min-width: 180px;
|
|
3761
|
-
|
|
3762
|
-
|
|
3757
|
+
background: #fff !important;
|
|
3758
|
+
border-radius: 8px !important;
|
|
3759
|
+
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
|
|
3760
|
+
padding: 8px 0 !important;
|
|
3761
|
+
border: none !important;
|
|
3763
3762
|
|
|
3764
|
-
.el-menu-item {
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
border-bottom: 1px solid #f0f0f0;
|
|
3772
|
-
border-radius: 0;
|
|
3773
|
-
transition: background 0.2s, color 0.2s;
|
|
3763
|
+
.el-menu-item {
|
|
3764
|
+
font-size: 14px;
|
|
3765
|
+
font-weight: 400;
|
|
3766
|
+
color: #222;
|
|
3767
|
+
padding: 20px 24px !important;
|
|
3768
|
+
border-radius: 2px;
|
|
3769
|
+
transition: background 0.2s, color 0.2s;
|
|
3774
3770
|
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3771
|
+
&:hover {
|
|
3772
|
+
background: #f5f7fa !important;
|
|
3773
|
+
color: #c8010e !important;
|
|
3774
|
+
}
|
|
3779
3775
|
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3776
|
+
&.is-active {
|
|
3777
|
+
background: #f5f7fa !important;
|
|
3778
|
+
color: #c8010e !important;
|
|
3779
|
+
}
|
|
3780
|
+
|
|
3781
|
+
.menu-text {
|
|
3782
|
+
margin: 0 6px;
|
|
3783
|
+
}
|
|
3783
3784
|
}
|
|
3784
3785
|
}
|
|
3785
3786
|
|