The three layout preset cards (Single column / Compact / Hidden on hover) painted as bright white boxes regardless of theme, never implemented the layouts they previewed, and duplicated the live sidebar resize handle which already covers the same intent. Drop the section, the supporting `appearance_layout_cards` module, and the chrome `mod` declaration that re-exported it.
37 lines
1.3 KiB
Rust
37 lines
1.3 KiB
Rust
pub(crate) mod animations;
|
|
pub(crate) mod appearance_form;
|
|
pub(crate) mod brand_glyph;
|
|
pub(crate) mod command_footer;
|
|
pub(crate) mod command_match;
|
|
pub(crate) mod command_overlay;
|
|
pub(crate) mod command_rows;
|
|
pub(crate) mod home;
|
|
pub(crate) mod plugin_detail_view;
|
|
pub(crate) mod plugin_labels;
|
|
pub(crate) mod settings_layout;
|
|
pub(crate) mod sidebar;
|
|
pub(crate) mod sidebar_chrome;
|
|
pub(crate) mod sidebar_header;
|
|
pub(crate) mod split_pane;
|
|
pub(crate) mod topbar;
|
|
pub(crate) mod typography;
|
|
pub(crate) mod wallpaper;
|
|
|
|
pub(crate) use appearance_form::render_appearance_form;
|
|
pub(crate) use brand_glyph::{accent_color_for_host, render_glyph_for};
|
|
pub(crate) use command_overlay::render_command_overlay;
|
|
pub(crate) use home::render_home_page;
|
|
pub(crate) use plugin_detail_view::render_plugin_detail_view;
|
|
pub(crate) use settings_layout::render_settings_shell;
|
|
pub(crate) use sidebar_chrome::{panel_bg, panel_shadow};
|
|
pub(crate) use sidebar_header::{
|
|
WorkspaceDisclosureAnchor, render_sidebar_header, render_workspace_disclosure,
|
|
render_workspace_disclosure_backdrop,
|
|
};
|
|
pub(crate) use split_pane::{
|
|
pane_host_label, pane_url_is_secure, render_compact_split_canvas, render_split_pane_header,
|
|
};
|
|
pub(crate) use topbar::render_topbar;
|
|
pub(crate) use typography::{SANS_FAMILY, SERIF_FAMILY, register_serif_fonts};
|
|
pub(crate) use wallpaper::render_wallpaper;
|