- {`Themes are not suppdorted in the Legacy Renderer`}
+ {`Themes are not supported in the Legacy Renderer`}
;
} else {
From a6ede58d8e89bc0eb58764aa0e793405e3398dff Mon Sep 17 00:00:00 2001
From: Gazook89 <58999374+Gazook89@users.noreply.github.com>
Date: Fri, 11 Mar 2022 23:16:08 -0600
Subject: [PATCH 3/4] set dropdown items to appear *over* subsequent items
change navdropdown items to position:absolute; so they appear *over* the next metadata items, rather than pushing them down when dropdown is open.
---
client/homebrew/editor/metadataEditor/metadataEditor.less | 3 +++
1 file changed, 3 insertions(+)
diff --git a/client/homebrew/editor/metadataEditor/metadataEditor.less b/client/homebrew/editor/metadataEditor/metadataEditor.less
index 14e3e653e..9cb7d1965 100644
--- a/client/homebrew/editor/metadataEditor/metadataEditor.less
+++ b/client/homebrew/editor/metadataEditor/metadataEditor.less
@@ -87,6 +87,7 @@
.navDropdownContainer {
background-color: white;
width: 100%;
+ position: relative;
&.disabled {
font-style:italic;
font-style: italic;
@@ -107,6 +108,8 @@
}
.navDropdown {
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
+ position:absolute;
+ width:100%;
.item {
padding: 3px 3px;
border-top: 1px solid rgb(118, 118, 118);
From e12579a2a292bc571295885dc5039f1e14b49f39 Mon Sep 17 00:00:00 2001
From: Trevor Buckner