From 733c712780f13557c5cf940e9fa2af23f93674d6 Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Fri, 31 Jan 2025 09:23:51 -0600 Subject: [PATCH] Mirador should not load the common styles They are not used by mirador --- app/assets/stylesheets/m3.scss | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/m3.scss b/app/assets/stylesheets/m3.scss index a85803d47..ad2e5ecd2 100644 --- a/app/assets/stylesheets/m3.scss +++ b/app/assets/stylesheets/m3.scss @@ -1,4 +1,6 @@ -@import "common"; +:root { + --gray-80: #ccc; +} .mosaic-root { bottom: 0 !important; @@ -18,7 +20,7 @@ .sul-embed-container { border: 0; - border-left: 1px solid $gray-80-percent; + border-left: 1px solid var(--gray-80); box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.2), @@ -31,7 +33,7 @@ // selected window top-bar styling, but if there are mulitple // windows, it will give the unselected windows a visible border. .mirador-window-top-bar { - border-top-color: $gray-80-percent; + border-top-color: var(--gray-80); } }