Merge pull request 'master' (#24) from master into prod

Reviewed-on: http://git.feashow.cn/clay/mosr-web/pulls/24
This commit is contained in:
wenhua
2024-03-25 02:57:52 +00:00
6 changed files with 14 additions and 12 deletions

View File

@@ -21,14 +21,11 @@ html, body, #app, .el-container, .el-aside, .el-main {
.el-main { .el-main {
background: #F4F6F8; background: #F4F6F8;
padding: 0 0 0 18px; padding: 0 0 0 18px;
//padding: 0;
position: fixed; position: fixed;
left: 200px; left: 200px;
transition: left ease 0.15s; transition: left ease 0.15s;
margin-left: 0; margin-left: 0;
transition: margin-left .15s; transition: margin-left .15s;
// -webkit-transition: width .15s;
// transition: width 0.15s;
width: calc(100vw - 200px); width: calc(100vw - 200px);
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 6px; width: 6px;
@@ -466,7 +463,7 @@ html, body, #app, .el-container, .el-aside, .el-main {
.active { .active {
.close-icon { .close-icon {
fill: #418DFF; fill: #BEA266;
} }
} }

View File

@@ -1,6 +1,9 @@
.el-side {
border-radius: 10px;
}
.logo { .logo {
height: 106px; height: 106px;
background-color: #418DFF; background-color: #BEA266;
color: #ffffff; color: #ffffff;
font-weight: bold; font-weight: bold;
font-size: 26px; font-size: 26px;
@@ -36,7 +39,7 @@
} }
} }
.el-menu-item.is-active { .el-menu-item.is-active {
background: #E9F4FF; background: #BEA266;
//background-color: #373350 !important; //background-color: #373350 !important;
} }
} }

View File

@@ -33,6 +33,7 @@
max-height: calc(100vh - 96px); max-height: calc(100vh - 96px);
overflow: auto; overflow: auto;
background-color: #fff; background-color: #fff;
border-radius: 10px;
} }
.app-main-container::-webkit-scrollbar { .app-main-container::-webkit-scrollbar {
width:6px; width:6px;

View File

@@ -70,6 +70,7 @@ const handleLogout = () => {
justify-content: flex-start; justify-content: flex-start;
align-items: center; align-items: center;
background-color: #fff; background-color: #fff;
border-radius: 10px;
.right-bar { .right-bar {
margin-left: auto; margin-left: auto;
display: flex; display: flex;

View File

@@ -8,8 +8,8 @@
:default-active="activeMenu" :default-active="activeMenu"
:unique-opened="true" :unique-opened="true"
:collapse="siderbarStore.isCollapse" :collapse="siderbarStore.isCollapse"
active-text-color="#333" active-text-color="#927648"
text-color="#333" text-color="#575757"
style="border: none;" style="border: none;"
:collapse-transition="false" :collapse-transition="false"
> >

View File

@@ -83,17 +83,17 @@ init()
border: 1px solid darkgray; border: 1px solid darkgray;
font-size: 13px; font-size: 13px;
margin-right: 8px; margin-right: 8px;
border-radius: 4px; border-radius: 6px;
background-color: #fff; background-color: #fff;
} }
.active { .active {
background-color: #E9F4FF; background-color: rgba(190,162,102,0.1);;
border: 1px solid #418DFF; border: 1px solid #BEA266;
color: #333333; color: #333333;
> span:first-child { > span:first-child {
color: #418DFF; color: #BEA266;
} }
} }