### Customize Admin CSS Variables Source: https://github.com/pixl8/preside-ext-alt-admin-theme/blob/stable/README.md This CSS snippet illustrates how to customize the admin theme using CSS variables. It shows examples for setting the navbar background color, login screen background image, and logo. ```css :root { --navbar-color : #10460d; --login-bg-image : url( "/assets/images/backgrounds/login-background.jpg" ); --login-logo : url( "/assets/images/my-company-logo.svg" ); --login-logo-width : auto; --login-logo-height : 100px; } ``` -------------------------------- ### Configure Preside Admin Settings Source: https://github.com/pixl8/preside-ext-alt-admin-theme/blob/stable/README.md This snippet shows the configuration options available in Preside's `settings.admin` for the Alternate Admin Theme. It includes settings for top navigation items, menu icons, favicons, avatar sizes, and custom CSS. ```cfml settings.admin = { topNavItems = [] , topNavMenuIcons = true , favicon = "/preside/system/assets/images/logos/favicon.png" , adminAvatarSize = 56 , customCss = [] }; ``` -------------------------------- ### Enable/Disable Site Switcher Source: https://github.com/pixl8/preside-ext-alt-admin-theme/blob/stable/README.md This snippet demonstrates how to enable or disable the site switcher feature in the Preside admin menu bar using a feature flag. If disabled, it suggests adding the 'sitemanager' menu item. ```cfml settings.features.siteSwitcher.enabled = true; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.