mirror of
https://github.com/ankitects/anki.git
synced 2025-11-10 06:37:12 -05:00
Switch back to pin icons, use fill/unfilled versions
This commit is contained in:
parent
fee4667e32
commit
25d7d80e20
1 changed files with 2 additions and 2 deletions
|
|
@ -33,8 +33,8 @@ export class LabelContainer extends HTMLDivElement {
|
|||
}
|
||||
|
||||
setSticky(state: boolean): void {
|
||||
this.sticky.classList.toggle("bi-lock-fill", state);
|
||||
this.sticky.classList.toggle("bi-unlock-fill", !state);
|
||||
this.sticky.classList.toggle("bi-pin-angle-fill", state);
|
||||
this.sticky.classList.toggle("bi-pin-angle", !state);
|
||||
}
|
||||
|
||||
activateSticky(initialState: boolean): void {
|
||||
|
|
|
|||
Loading…
Reference in a new issue