d5945a213a
* 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
11 lines
410 B
Python
11 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
|