From f9c45849c8aeb63122276b29e6a57cd838197238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Moya?= Date: Fri, 16 Oct 2020 15:14:23 +0200 Subject: [PATCH] :sparkles: Enhance display of mask at layers panel --- .../styles/main/partials/sidebar-layers.scss | 23 ++++++++----------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/frontend/resources/styles/main/partials/sidebar-layers.scss b/frontend/resources/styles/main/partials/sidebar-layers.scss index 6a2cd5780..dced031cc 100644 --- a/frontend/resources/styles/main/partials/sidebar-layers.scss +++ b/frontend/resources/styles/main/partials/sidebar-layers.scss @@ -150,12 +150,14 @@ position: relative; &::before { - content: "^"; - font-size: $fs18; - font-family: opensans; - font-weight: lighter; + content: " "; + border-right: 1px solid $color-gray-40; + border-top: 1px solid $color-gray-40; position: absolute; - top: -5px; + width: 0.5rem; + height: 0.5rem; + transform: rotate(-45deg); + top: -1px; left: -5px; } } @@ -167,18 +169,11 @@ &::before { content: " "; border-left: 1px solid $color-gray-40; - height: 1rem; - position: absolute; - top: 0; - left: 0; - } - - &::after { - content: " "; border-bottom: 1px solid $color-gray-40; + height: 1rem; width: 0.3rem; position: absolute; - top: 1rem; + top: 0; left: 0; } }