diff --git a/frontend/src/_styles/theme.scss b/frontend/src/_styles/theme.scss index 5eaf15fb4d..2f1d0ae2e8 100644 --- a/frontend/src/_styles/theme.scss +++ b/frontend/src/_styles/theme.scss @@ -10212,6 +10212,8 @@ tbody { border-radius: 6px !important; margin-bottom: 4px !important; color: var(--slate12) !important; + transition:none; + &:hover { background: var(--slate1) !important; @@ -10227,6 +10229,20 @@ tbody { box-shadow: none !important; } + &:-webkit-autofill { + box-shadow: 0 0 0 1000px var(--base) inset !important; + -webkit-text-fill-color: var(--slate12) !important; + + &:hover { + box-shadow: 0 0 0 1000px var(--slate1) inset !important; + -webkit-text-fill-color: var(--slate12) !important;} + + &:focus-visible { + box-shadow: 0 0 0 1000px var(--indigo2) inset !important; + -webkit-text-fill-color: var(--slate12) !important;} + } + + } }