From ef160bc1deb1f9c3b1070b228845d6e8db52176c Mon Sep 17 00:00:00 2001 From: U~man Date: Thu, 30 Jul 2020 12:09:22 +0200 Subject: [PATCH] ENH: Css tweaks, disabled input and items desc --- src/scss/core.scss | 2 +- src/scss/item.scss | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/scss/core.scss b/src/scss/core.scss index c146942..ad868f7 100644 --- a/src/scss/core.scss +++ b/src/scss/core.scss @@ -25,7 +25,7 @@ border: none; border-radius: 0; border-bottom: 1px solid $colorTan; - &:hover, &:focus { + &:hover:not(:disabled), &:focus:not(:disabled) { box-shadow: none; background: $inputBackground; } diff --git a/src/scss/item.scss b/src/scss/item.scss index 1051d8d..2aedb1e 100644 --- a/src/scss/item.scss +++ b/src/scss/item.scss @@ -91,8 +91,13 @@ } } } - .editor { - height: 250px; + .description { + .editor { + height: 250px; + .editor-content { + padding: 0 5px; + } + } } } }