|
@@ -2,10 +2,10 @@
|
|
<el-container>
|
|
<el-container>
|
|
<el-header style="padding: 0;">
|
|
<el-header style="padding: 0;">
|
|
<el-menu class="el-menu" mode="horizontal">
|
|
<el-menu class="el-menu" mode="horizontal">
|
|
- <el-menu-item index="1">
|
|
|
|
|
|
+ <el-menu-item index="1" style=" width: 200px;">
|
|
<router-link
|
|
<router-link
|
|
to="/home/overview"
|
|
to="/home/overview"
|
|
- style="font-size: 20px; line-height: 24px; text-decoration-line: none"
|
|
|
|
|
|
+ style="font-size: 20px; line-height: 24px; width: 100%; text-decoration-line: none"
|
|
title="回到主页"
|
|
title="回到主页"
|
|
>
|
|
>
|
|
云平台主页
|
|
云平台主页
|
|
@@ -42,7 +42,7 @@
|
|
</el-container>
|
|
</el-container>
|
|
|
|
|
|
<!-- 添加用户信息弹出框 -->
|
|
<!-- 添加用户信息弹出框 -->
|
|
- <el-dialog title="个人信息" :visible.sync="userDialog">
|
|
|
|
|
|
+ <el-dialog title="个人信息" width="400px" :visible.sync="userDialog">
|
|
<el-tabs value="first">
|
|
<el-tabs value="first">
|
|
<el-tab-pane label="用户权限" name="first">
|
|
<el-tab-pane label="用户权限" name="first">
|
|
<el-form :inline="true" label-position="right" label-width="90px">
|
|
<el-form :inline="true" label-position="right" label-width="90px">
|
|
@@ -256,14 +256,21 @@ export default {
|
|
color: white !important;
|
|
color: white !important;
|
|
}
|
|
}
|
|
|
|
|
|
-.el-menu >>> .el-menu-item:hover {
|
|
|
|
- color: #777777 !important;
|
|
|
|
|
|
+.el-menu >>> .el-menu-item:hover,
|
|
|
|
+.el-menu >>> .el-menu-item:focus {
|
|
|
|
+ color: white !important;
|
|
|
|
+ background-color: rgba(40, 121, 169) !important;
|
|
}
|
|
}
|
|
|
|
|
|
.el-menu >>> .is-active.el-menu-item:focus {
|
|
.el-menu >>> .is-active.el-menu-item:focus {
|
|
- color: #777777 !important;
|
|
|
|
|
|
+ color: white !important;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+/* .el-menu >>> .el-menu--horizontal > .el-menu-item:not(.is-disabled):focus, */
|
|
|
|
+/* .el-menu >>> .el-menu--horizontal > .el-menu-item:not(.is-disabled):hover {
|
|
|
|
+ background-color: #000 !important;
|
|
|
|
+} */
|
|
|
|
+
|
|
body > .el-container {
|
|
body > .el-container {
|
|
margin-bottom: 40px;
|
|
margin-bottom: 40px;
|
|
}
|
|
}
|