mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Fix [Dark Mode] UI inconsistency user selects autofill values (#7005)
* Fix [Dark mode] UI inconsistency with autofill values (resolves #6928) * Revert changes on package-lock.json, tabler.scss, package.json * Solved the flash problem * Update package.json * Update theme.scss * Update theme.scss * Updates theme.scss * Updated theme.scss * Updated theme.scss * Updated theme.scss removed extra spaces * Updated theme.scss removed extra spaces * Updated theme.scss removed extra spaces 2 * Final updation Theme.scss * Updated theme.scss Final updation * Updated theme.scss removed extra spaces * Update theme.scss Removed extra space in line 11245 * Updated theme.scss removed extra spaces
This commit is contained in:
parent
3af2642b78
commit
7721a3a8a2
1 changed files with 16 additions and 0 deletions
|
|
@ -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;}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue