1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 10:58:33 +00:00

12.0 fix left nav tooltip (#6371)

* 01 change tooltip position

* 02 change id files
This commit is contained in:
Michael An
2024-07-18 20:44:21 +08:00
committed by GitHub
parent a87c1769e6
commit a4ffa253f5
2 changed files with 4 additions and 4 deletions

View File

@@ -1,10 +1,10 @@
.side-nav-icon-tip {
opacity: 0;
transform: translateX(0px);
transform: translateX(-20px);
transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 0.1);
}
.side-nav-icon-tip.side-nav-icon-tip-animation {
opacity: 1;
transform: translateX(20px);
transform: translateX(0px);
}