diff --git a/jey_theme/public/css/shared.css b/jey_theme/public/css/shared.css index f90bbdf..88d5b57 100644 --- a/jey_theme/public/css/shared.css +++ b/jey_theme/public/css/shared.css @@ -2,6 +2,15 @@ Jey Theme — Shared Styles (theme-independent) ========================================================================== */ +/* Override Frappe's default desk splash image (the blue "E"). + Splash markup is in templates/includes/splash_screen.html and gets removed + by Frappe once the desk boots, so this only shows during page load. */ +.splash img { + content: url("/assets/jey_theme/images/preloader.png"); + max-width: 200px; + height: auto; +} + /* Hide Organization desktop icon by default */ .desktop-icon[data-id="Organization"] { display: none !important; diff --git a/jey_theme/public/images/preloader.png b/jey_theme/public/images/preloader.png new file mode 100644 index 0000000..5962962 Binary files /dev/null and b/jey_theme/public/images/preloader.png differ