123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /**
- * @author chuzhixin 1204505056@qq.com (不想保留author可删除)
- * @description 荣耀典藏主题(VIP群专享)
- */
- @charset "utf-8";
- body.vue-admin-beautiful-theme-glory {
- $base-menu-background: #2e2f34;
- $base-menu-background-active: #f6ca9d;
- $base-color-blue: #f6ca9d;
- @mixin container {
- background: $base-menu-background !important;
- }
- @mixin active {
- &:hover {
- background-color: $base-menu-background-active !important;
- }
- &.is-active {
- background-color: $base-menu-background-active !important;
- }
- }
- .logo-container-horizontal {
- @include container;
- }
- .logo-container-vertical {
- @include container;
- }
- .el-menu {
- @include container;
- .el-submenu__title {
- @include container;
- }
- .el-menu-item {
- @include container;
- }
- }
- .side-bar-container {
- @include container;
- .el-menu-item {
- @include active;
- }
- }
- .top-bar-container {
- @include container;
- .vab-main {
- @include container;
- .el-menu {
- &--horizontal {
- .el-submenu,
- .el-menu-item {
- &.is-active {
- background-color: $base-menu-background-active !important;
- }
- }
- > .el-menu-item {
- &.is-active {
- border-bottom: 3px solid $base-menu-background-active !important;
- }
- }
- }
- }
- }
- }
- .tabs-bar-container {
- background: $base-color-white;
- border-top: 1px solid #f6f6f6;
- .tabs-content {
- .el-tabs__header {
- .el-tabs__item {
- &.is-active {
- color: $base-color-white !important;
- background: $base-color-blue !important;
- border: 1px solid $base-color-blue !important;
- }
- }
- }
- }
- }
- .theme-bar-setting {
- background: $base-color-blue !important;
- }
- }
|