This commit is contained in:
parent
73805942eb
commit
102a3350b5
|
@ -108,6 +108,7 @@
|
|||
<div class="flex1"></div>
|
||||
<!-- 工具栏 -->
|
||||
<ul class="app-topbar__tools">
|
||||
{:\\tpext\\common\\ExtLoader::trigger('topbar_right_links')}
|
||||
<li>
|
||||
<a title="打开首页" href="/" target="_blank"><i class="el-icon-house"></i></a>
|
||||
</li>
|
||||
|
@ -121,7 +122,6 @@
|
|||
<li @click="openTheme">
|
||||
<a title="主题"><i class="el-icon-magic-stick"></i></a>
|
||||
</li>
|
||||
{:\\tpext\\common\\ExtLoader::trigger('topbar_right_links')}
|
||||
</ul>
|
||||
<div class="cl-theme">
|
||||
<!-- 系统设置 -->
|
||||
|
|
|
@ -245,7 +245,8 @@ body[data-theme=dark] {
|
|||
.app-topbar__tools li {
|
||||
list-style: none;
|
||||
height: 45px;
|
||||
width: 45px;
|
||||
min-width: 25px;
|
||||
padding: 0 5px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
@ -254,6 +255,9 @@ body[data-theme=dark] {
|
|||
.app-topbar__tools li i {
|
||||
font-size: 18px;
|
||||
}
|
||||
.app-topbar__tools li a {
|
||||
font-size: 12px;
|
||||
}
|
||||
.app-topbar__tools li i:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
|
|
@ -292,7 +292,8 @@ body[data-theme='dark'] {
|
|||
li {
|
||||
list-style: none;
|
||||
height: 45px;
|
||||
width: 45px;
|
||||
min-width: 25px;
|
||||
padding: 0 5px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
@ -305,6 +306,10 @@ body[data-theme='dark'] {
|
|||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -605,7 +610,7 @@ i.mdi-set,
|
|||
|
||||
&.is-active,
|
||||
&:hover {
|
||||
background-color: $color-primary !important;
|
||||
background-color: $color-primary !important;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ use tpext\myadmin\common\Module as adminModule;
|
|||
|
||||
class Resource extends baseResource
|
||||
{
|
||||
protected $version = '1.0.5';
|
||||
protected $version = '1.0.6';
|
||||
|
||||
protected $name = 'cool.admin';
|
||||
|
||||
|
|
Loading…
Reference in New Issue