@litianxiang/portal-ui 0.0.24 → 0.0.26
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 -26
- package/package.json +1 -1
|
@@ -793,7 +793,7 @@
|
|
|
793
793
|
.el-button {
|
|
794
794
|
padding: 10px 14px !important;
|
|
795
795
|
border: 1px solid #ccc !important;
|
|
796
|
-
height:
|
|
796
|
+
height: 32px !important;
|
|
797
797
|
transition: all 0.3s;
|
|
798
798
|
font-weight: 400;
|
|
799
799
|
font-size: var(--el-font-size) !important;
|
|
@@ -3752,35 +3752,34 @@
|
|
|
3752
3752
|
|
|
3753
3753
|
|
|
3754
3754
|
// ==================== Menu 菜单弹出层 ====================
|
|
3755
|
-
.el-menu--popup {
|
|
3756
|
-
min-width: 180px;
|
|
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;
|
|
3762
3755
|
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3756
|
+
// ==================== 左侧菜单 ====================
|
|
3757
|
+
.el-menu {
|
|
3758
|
+
border-right: 1px solid #e0e0e0;
|
|
3759
|
+
background: #fff;
|
|
3760
|
+
min-width: 180px;
|
|
3761
|
+
padding: 0;
|
|
3762
|
+
}
|
|
3770
3763
|
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3764
|
+
.el-menu-item {
|
|
3765
|
+
height: 40px !important;
|
|
3766
|
+
line-height: 40px !important;
|
|
3767
|
+
font-size: 14px;
|
|
3768
|
+
font-weight: 400;
|
|
3769
|
+
color: #222;
|
|
3770
|
+
padding: 0 24px !important;
|
|
3771
|
+
border-bottom: 1px solid #f0f0f0;
|
|
3772
|
+
border-radius: 0;
|
|
3773
|
+
transition: background 0.2s, color 0.2s;
|
|
3775
3774
|
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3775
|
+
&:hover {
|
|
3776
|
+
background: #f5f7fa !important;
|
|
3777
|
+
color: #c8010e !important;
|
|
3778
|
+
}
|
|
3780
3779
|
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3780
|
+
&.is-active {
|
|
3781
|
+
background: #f5f7fa !important;
|
|
3782
|
+
color: #c8010e !important;
|
|
3784
3783
|
}
|
|
3785
3784
|
}
|
|
3786
3785
|
|