diff --git a/browser/components/enterprisepolicies/content/aboutPolicies.css b/browser/components/enterprisepolicies/content/aboutPolicies.css index e362a91b3b46..46ce5278921b 100644 --- a/browser/components/enterprisepolicies/content/aboutPolicies.css +++ b/browser/components/enterprisepolicies/content/aboutPolicies.css @@ -55,7 +55,11 @@ body { width: 100%; } -tr:hover td { +tbody tr { + transition: background cubic-bezier(.07, .95, 0, 1) 250ms; +} + +tbody tr:hover { background-color: #d7d7db; } @@ -72,7 +76,6 @@ th { td { padding: 1rem; - transition: background cubic-bezier(.07, .95, 0, 1) 250ms; } /* @@ -88,6 +91,12 @@ tbody:nth-child(4n + 1) { background-color: #ededf0; } +.active-policies tr.odd:hover, +.errors tr:nth-child(odd):hover, +tbody:nth-child(4n + 1):hover { + background-color: #d7d7db; +} + .arr_sep.odd:not(:last-child) td:not(:first-child) { border-bottom: 2px solid #f9f9fa; }