mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00

* Improve margins * Remove right border on non-macOS systems Would be interesting to know why this was implemented in the first place. Looks quite ugly on Linux. * Add focus border * Align height of toolbar icons with search bar * Remove leftover f-strings
10 lines
410 B
Python
10 lines
410 B
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
from anki.utils import is_mac
|
|
from aqt.theme import theme_manager
|
|
|
|
from .item import SidebarItem, SidebarItemType
|
|
from .model import SidebarModel
|
|
from .searchbar import SidebarSearchBar
|
|
from .toolbar import SidebarTool, SidebarToolbar
|
|
from .tree import SidebarStage, SidebarTreeView
|