1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-26 15:26:19 +00:00

[page toolbar] '.cur-view-path': set the height of the heading/path bar in each page to be 48px; improved UI of the nav links (#6225)

This commit is contained in:
llj
2024-06-18 18:19:24 +08:00
committed by GitHub
parent 0da5d30442
commit 109a6d29fe
2 changed files with 7 additions and 2 deletions

View File

@@ -93,7 +93,7 @@
.cur-view-path { .cur-view-path {
padding: 8px 16px; padding: 8px 16px;
max-height: 48px; height: 48px;
background: #fff; background: #fff;
display: flex; display: flex;
align-items: center; align-items: center;

View File

@@ -550,12 +550,17 @@ a, a:hover { color: #ec8000; }
color: #8A948F; color: #8A948F;
font-weight: normal; font-weight: normal;
transition: none; transition: none;
border-bottom: 0.125rem solid transparent;
}
.cur-view-path .nav .nav-item .nav-link {
padding: 11px 0;
} }
.nav .nav-item .nav-link.active { .nav .nav-item .nav-link.active {
color: #eb8205; color: #eb8205;
text-decoration: none; text-decoration: none;
border-bottom: 0.125rem solid #eb8205; border-bottom-color: #eb8205;
z-index: 1; z-index: 1;
} }