diff --git a/frappe/public/scss/website/index.scss b/frappe/public/scss/website/index.scss index e36e649eb7..78fb5b4c2b 100644 --- a/frappe/public/scss/website/index.scss +++ b/frappe/public/scss/website/index.scss @@ -88,6 +88,20 @@ border-radius: $dropdown-border-radius; } +.dropdown-item:active { + color: var(--fg-color); + text-decoration: none; + background-color: var(--gray-600); +} + +.dropdown-item:active:hover { + color: var(--fg-color); +} + +.dropdown-menu a:hover { + cursor: pointer; +} + .input-dark { background-color: $dark; border-color: darken($primary, 40%); diff --git a/frappe/templates/styles/discussion_style.css b/frappe/templates/styles/discussion_style.css index 8bbab6c897..d0f1f24183 100644 --- a/frappe/templates/styles/discussion_style.css +++ b/frappe/templates/styles/discussion_style.css @@ -96,7 +96,7 @@ } .reply-body { - background: var(--gray-100); + background: var(--gray-50); padding: 1rem; border-radius: var(--border-radius); font-size: var(--text-md); @@ -179,10 +179,6 @@ } .back-button { - background: var(--gray-100); - border-radius: 50%; - padding: 0.5rem 0.75rem 0.6rem; - width: fit-content; margin-right: 1rem; }