This commit is contained in:
Vanessa 2023-12-14 12:36:07 +08:00
parent 831401f20d
commit 6c6e9ea2d0
2 changed files with 3 additions and 2 deletions

View file

@ -46,6 +46,7 @@
&__views {
align-items: center;
box-shadow: 0px -1px inset var(--b3-theme-background-light);
}
&__title {
@ -61,7 +62,7 @@
&__counter {
position: absolute;
bottom: 0;
height: 30px;
height: 26px;
padding: 0 5px;
background-color: var(--av-background);
}

View file

@ -65,7 +65,7 @@ export const updateHeader = (rowElement: HTMLElement) => {
headUseElement.setAttribute("xlink:href", "#iconIndeterminateCheck");
}
counterElement.classList.remove("fn__none");
counterElement.innerHTML = `${selectCount} selected`;
counterElement.innerHTML = `${selectCount} ${window.siyuan.languages.selected}`;
avHeadElement.style.position = "sticky";
};