diff --git a/client/homebrew/editor/metadataEditor/metadataEditor.jsx b/client/homebrew/editor/metadataEditor/metadataEditor.jsx index 93632b9fc..d16d7556b 100644 --- a/client/homebrew/editor/metadataEditor/metadataEditor.jsx +++ b/client/homebrew/editor/metadataEditor/metadataEditor.jsx @@ -202,14 +202,14 @@ const MetadataEditor = createClass({ if(this.props.metadata.renderer == 'legacy') { dropdown = - +
{`Themes are not supported in the Legacy Renderer`}
; } else { dropdown = - +
{`${_.upperFirst(currentTheme.renderer)} : ${currentTheme.name}`}
diff --git a/client/homebrew/editor/metadataEditor/metadataEditor.less b/client/homebrew/editor/metadataEditor/metadataEditor.less index da201c3a6..001285d11 100644 --- a/client/homebrew/editor/metadataEditor/metadataEditor.less +++ b/client/homebrew/editor/metadataEditor/metadataEditor.less @@ -35,7 +35,6 @@ flex-direction: column; flex: 5 0 200px; gap: 10px; - } .field{ display : flex; @@ -159,7 +158,6 @@ font-size : 13.33px; .navDropdownContainer { background-color : white; - width : 100%; position : relative; z-index : 500; &.disabled { @@ -182,51 +180,51 @@ } .navDropdown { box-shadow : 0px 5px 10px rgba(0, 0, 0, 0.3); - position : absolute; - width : 100%; + position : absolute; + width : 100%; .item { - padding : 3px 3px; - border-top : 1px solid rgb(118, 118, 118); - position : relative; - overflow : visible; + padding : 3px 3px; + border-top : 1px solid rgb(118, 118, 118); + position : relative; + overflow : visible; background-color : white; .preview { - display: flex; - flex-direction: column; - background: #ccc; - border-radius: 5px; - box-shadow: 0 0 5px black; - width: 200px; - color:black; - position: absolute; - top: 0; - right: 0; - opacity: 0; - transition: opacity 250ms ease; - z-index: 1; - overflow:hidden; + display : flex; + flex-direction: column; + background : #ccc; + border-radius : 5px; + box-shadow : 0 0 5px black; + width : 200px; + color :black; + position : absolute; + top : 0; + right : 0; + opacity : 0; + transition : opacity 250ms ease; + z-index : 1; + overflow :hidden; h6 { - font-weight: 900; + font-weight : 900; padding-inline:1em; - padding-block:.5em; - border-bottom:2px solid hsl(0,0%,40%); + padding-block :.5em; + border-bottom :2px solid hsl(0,0%,40%); } } &:hover { background-color : @blue; - color : white; + color : white; } &:hover > .preview { opacity: 1; } >img { - mask-image : linear-gradient(90deg, transparent, black 20%); + mask-image : linear-gradient(90deg, transparent, black 20%); -webkit-mask-image : linear-gradient(90deg, transparent, black 20%); - position : absolute; - right : 0; - top : 0px; - width : 50%; - height : 100%; + position : absolute; + right : 0; + top : 0px; + width : 50%; + height : 100%; } } }