From 28d45b89e0648f8bafc27e2543ae72927715fdd8 Mon Sep 17 00:00:00 2001 From: Gazook89 <58999374+Gazook89@users.noreply.github.com> Date: Fri, 11 Mar 2022 23:10:50 -0600 Subject: [PATCH] set mask-image blends to fixed points fixed blend points allows for different sized metadata panel without inadvertently masking text. --- client/homebrew/editor/metadataEditor/metadataEditor.less | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/homebrew/editor/metadataEditor/metadataEditor.less b/client/homebrew/editor/metadataEditor/metadataEditor.less index 357ed6abd..14e3e653e 100644 --- a/client/homebrew/editor/metadataEditor/metadataEditor.less +++ b/client/homebrew/editor/metadataEditor/metadataEditor.less @@ -118,8 +118,9 @@ color: white; } img { - mask-image: linear-gradient(90deg, transparent, black 20%); - -webkit-mask-image: linear-gradient(90deg, transparent, black 20%); + mask-image: linear-gradient(90deg, transparent 150px, black 250px); + -webkit-mask-image: linear-gradient(90deg, transparent 150px, black 250px); + width: 100%; position: absolute; right: 0px; top: 0px;