mirror of
https://github.com/HugoAura/Seewo-HugoAura.git
synced 2026-06-20 23:14:28 +08:00
1. [/] 修改了 Header Icon 的隐藏方式, 尝试修复 #26 2. [+] 现在可以隐藏管家助手 (桌面右下角小窗) 了 3. [⇡] Bump version to v0.1.1-beta
28 lines
411 B
CSS
Executable File
28 lines
411 B
CSS
Executable File
.aura-header-icon {
|
|
float: right;
|
|
height: 40px;
|
|
-webkit-app-region: no-drag;
|
|
position: relative;
|
|
|
|
transition: opacity 0.25s;
|
|
}
|
|
|
|
#root.aura-header-icon-hidden .aura-header-icon {
|
|
display: none;
|
|
}
|
|
|
|
.aura-header-icon:hover {
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.aura-header-icon:active {
|
|
opacity: 0.375;
|
|
}
|
|
|
|
.aura-header-icon img {
|
|
width: 20px;
|
|
height: 20px;
|
|
margin: 10px 0 8px 8px;
|
|
vertical-align: middle;
|
|
}
|