dataease-dm/frontend/src/styles/topbar.scss

115 lines
2.5 KiB
SCSS
Raw Normal View History

2021-03-03 15:06:52 +08:00
.top-nav {
// margin-left: $sideBarWidth;
width: 100%;
2021-03-07 21:29:41 +08:00
// background-color: #304156;
2021-03-08 11:09:46 +08:00
// background-color: $--color-primary;
2021-03-03 15:06:52 +08:00
position: fixed;
top: 0;
left: 0;
z-index: 1001;
overflow: hidden;
2021-05-19 14:58:21 +08:00
border-bottom: 1px solid #DCDFE6;
2021-03-03 15:06:52 +08:00
.log {
padding: 0 16px;
2021-03-03 15:06:52 +08:00
line-height: 56px;
height: 56px;
2021-03-03 15:06:52 +08:00
font-size: 24px;
font-weight: bold;
2021-03-07 21:29:41 +08:00
// color: rgb(191, 203, 217);
color: rgba(255,255,255,0.87);
2021-03-03 15:06:52 +08:00
float: left;
}
.el-menu {
float: left;
border: none!important;
2021-03-07 21:29:41 +08:00
// background-color: #304156;
2021-03-08 11:09:46 +08:00
// background-color: $--color-primary;
2021-03-03 15:06:52 +08:00
.nav-item {
display: inline-block;
.el-menu-item {
2021-03-07 21:29:41 +08:00
// color: rgb(191, 203, 217);
2021-05-19 14:58:21 +08:00
color: $menuText;
2021-03-03 15:06:52 +08:00
&:hover {
background-color: $subMenuHover !important;
2021-03-08 11:09:46 +08:00
color: $subMenuActiveText !important;
2021-03-03 15:06:52 +08:00
}
&:focus {
background-color: $subMenuHover !important;
2021-03-08 11:09:46 +08:00
color: $subMenuActiveText !important;
2021-03-03 15:06:52 +08:00
}
2021-03-08 11:09:46 +08:00
}
.is-active {
background-color: $subMenuHover !important;
color: $subMenuActiveText !important;
2021-03-03 15:06:52 +08:00
}
}
}
.right-menu {
float: right;
height: 56px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
2021-03-03 15:06:52 +08:00
&:focus {
outline: none;
}
.right-menu-item {
display: inline-block;
padding: 10px 8px;
height: 100%;
font-size: 18px;
2021-03-08 12:29:11 +08:00
// color: #5a5e66;
2021-05-19 14:58:21 +08:00
color: #606266;
2021-03-03 15:06:52 +08:00
vertical-align: text-bottom;
&.hover-effect {
cursor: pointer;
transition: background .3s;
&:hover {
2021-03-08 12:29:11 +08:00
background-color: rgba(0, 0, 0, .025)
2021-03-03 15:06:52 +08:00
}
}
}
.avatar-container {
margin-right: 30px;
.avatar-wrapper {
margin-top: 5px;
position: relative;
.user-avatar {
cursor: pointer;
width: 40px;
height: 40px;
border-radius: 10px;
}
2021-05-13 16:00:15 +08:00
.de-user-avatar {
cursor: pointer;
height: 40px;
border-radius: 10px;
span {
color: #ffffff;
}
}
2021-03-03 15:06:52 +08:00
.el-icon-caret-bottom {
cursor: pointer;
position: absolute;
right: -20px;
top: 25px;
font-size: 12px;
}
}
}
}
}