From 001c285f985571e1566aba1ae93f4c0726ed80eb Mon Sep 17 00:00:00 2001 From: Andrew Nicolaou Date: Mon, 25 Nov 2019 14:05:29 +0100 Subject: [PATCH] Editable Input theme icon --- client/styles/components/_editable-input.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/client/styles/components/_editable-input.scss b/client/styles/components/_editable-input.scss index c7239d35..cdcd6ed7 100644 --- a/client/styles/components/_editable-input.scss +++ b/client/styles/components/_editable-input.scss @@ -24,6 +24,20 @@ .editable-input__icon svg { width: 1.5rem; height: 1.5rem; + + @include themify() { + path { + fill: getThemifyVariable('inactive-text-color'); + } + } +} + +.editable-input:hover { + @include themify() { + .editable-input__icon path { + fill: getThemifyVariable('primary-text-color'); + } + } } .editable-input--is-not-editing .editable-input__input,