- 所有主题的 avue-logo 背景改为白色,并添加 0 2px 8px rgba(0,0,0,0.06) 阴影效果 - 各主题顶部栏背景及文字颜色调整,提升整体对比度与视觉统一性 - 统一调整下拉菜单、面包屑、图标等元素颜色为 rgba(0,0,0,0.85) 或 0.65,增强易读性 - 修正部分输入框和色彩选择器的边框及背景颜色,增强一致性 - index.html 添加 favicon.ico 作为页面图标 - 新增图标悬停显示浅灰圆形背景效果示例页面 icon-hover-demo.html - icon-hover-demo.html 包含核心 CSS 代码和 Element Plus 的示例用法,方便复用和参考
170 lines
2.7 KiB
SCSS
170 lines
2.7 KiB
SCSS
@use './variables.scss' as variables;
|
|
|
|
.avue-top {
|
|
position: relative;
|
|
background-color: #fff;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
color: rgba(0, 0, 0, 0.85);
|
|
font-size: 28px;
|
|
height: variables.$top_height;
|
|
line-height: variables.$top_height;
|
|
box-sizing: border-box;
|
|
white-space: nowrap;
|
|
|
|
.el-menu-item {
|
|
i, span {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.avue-breadcrumb {
|
|
height: 100%;
|
|
color: rgba(0, 0, 0, 0.65);
|
|
|
|
i {
|
|
color: rgba(0, 0, 0, 0.65);
|
|
font-size: 30px !important;
|
|
}
|
|
|
|
&--active {
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|
|
|
|
.top-user {
|
|
margin-left: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.top-menu {
|
|
.el-menu-item {
|
|
padding: 0 10px;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.top-search {
|
|
line-height: variables.$top_height;
|
|
position: absolute !important;
|
|
right: 200px;
|
|
top: 0;
|
|
width: 300px;
|
|
|
|
.el-input__wrapper {
|
|
font-size: 13px;
|
|
border: none;
|
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
background-color: #fff;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.el-input__inner {
|
|
color: #303133;
|
|
}
|
|
}
|
|
|
|
.top-bar__img {
|
|
margin: 0 5px;
|
|
padding: 2px;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 100%;
|
|
box-sizing: border-box;
|
|
border: 1px solid #eee;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.top-bar__left,
|
|
.top-bar__right {
|
|
height: variables.$top_height;
|
|
position: absolute;
|
|
top: 0;
|
|
|
|
i {
|
|
line-height: variables.$top_height;
|
|
}
|
|
}
|
|
|
|
.top-bar__left {
|
|
left: 10px;
|
|
}
|
|
|
|
.top-bar__right {
|
|
right: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
color: rgba(0, 0, 0, 0.85);
|
|
|
|
i,
|
|
.el-icon,
|
|
.el-dropdown,
|
|
.el-dropdown-link {
|
|
color: inherit;
|
|
}
|
|
|
|
.el-color-picker__trigger {
|
|
border-color: rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.el-color-picker__icon {
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
.top-bar__item {
|
|
position: relative;
|
|
display: inline-block;
|
|
height: variables.$top_height;
|
|
margin: 0 7px;
|
|
font-size: 16px;
|
|
top: -2px;
|
|
|
|
.el-badge__content.is-fixed {
|
|
top: 12px;
|
|
right: 5px;
|
|
}
|
|
}
|
|
|
|
.top-bar__title {
|
|
height: 100%;
|
|
padding-left: 50px;
|
|
box-sizing: border-box;
|
|
background: #fff;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
font-size: inherit;
|
|
font-weight: 500;
|
|
color: rgba(0, 0, 0, 0.85);
|
|
}
|
|
|
|
.avue-logo {
|
|
height: variables.$top_height;
|
|
line-height: variables.$top_height;
|
|
background-color: #fff;
|
|
font-size: 20px;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
color: rgba(0, 0, 0, 0.85);
|
|
|
|
&_title {
|
|
display: block;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
color: inherit;
|
|
}
|
|
|
|
&_subtitle {
|
|
display: block;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: inherit;
|
|
}
|
|
}
|