隐藏logo

This commit is contained in:
季圣华
2021-06-28 01:06:31 +08:00
parent 72998dde4b
commit 5c10d1adc2
3 changed files with 16 additions and 10 deletions

View File

@@ -196,7 +196,7 @@
/* dark 样式 */ /* dark 样式 */
&.dark { &.dark {
color: #000000; color: #ffffff;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
background-color: white !important; background-color: white !important;
} }

View File

@@ -569,10 +569,10 @@
height: 64px; height: 64px;
position: relative; position: relative;
line-height: 64px; line-height: 64px;
padding-left: 24px; padding-left: 10px;
-webkit-transition: all .3s; -webkit-transition: all .3s;
transition: all .3s; transition: all .3s;
background: #002140; background: #ffffff;
overflow: hidden; overflow: hidden;
img, h1 { img, h1 {
@@ -587,7 +587,7 @@
h1 { h1 {
color: #fff; color: #fff;
font-size: 18px; font-size: 18px;
margin: 0 0 0 8px; margin: 0 0 10px 8px;
font-family: "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-family: "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-weight: 600; font-weight: 600;
} }

View File

@@ -1,12 +1,13 @@
<template> <template>
<div class="logo"> <div class="logo">
<router-link :to="{name:'dashboard'}"> <h1 v-if="showTitle">{{ title }}</h1>
<!-- <router-link :to="{name:'dashboard'}">-->
<!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 --> <!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
<img v-if="layoutMode === 'sidemenu'" src="~@/assets/logo.png" alt="logo"> <!-- <img v-if="layoutMode === 'sidemenu'" src="~@/assets/logo.png" alt="logo">-->
<img v-else src="~@/assets/logo_top.png" alt="logo"> <!-- <img v-else src="~@/assets/logo_top.png" alt="logo">-->
<!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 --> <!-- update-begin- author:sunjianlei --- date:20190814 --- for: logo颜色根据主题颜色变化 -->
<h1 v-if="showTitle">{{ title }}</h1>
</router-link> <!-- </router-link>-->
</div> </div>
</template> </template>
@@ -37,17 +38,22 @@
.sider { .sider {
box-shadow: none !important; box-shadow: none !important;
.logo { .logo {
color: #ffffff;
height: @height !important; height: @height !important;
line-height: @height !important; line-height: @height !important;
box-shadow: none !important; box-shadow: none !important;
transition: background 300ms; transition: background 300ms;
h1 {
font-size: 24px;
color: #ffffff;
}
a { a {
color: white; color: white;
&:hover { &:hover {
color: rgba(255, 255, 255, 0.8); color: rgba(255, 255, 255, 0.8);
} }
} }
} }
&.light .logo { &.light .logo {