Bug 1516269 - fixed the hover state for the rows in about:policies r=Felipe

Differential Revision: https://phabricator.services.mozilla.com/D15389

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Soeren Hentzschel 2018-12-26 19:13:07 +00:00
Родитель a19f3aae29
Коммит 5d9c7c5e6f
1 изменённых файлов: 11 добавлений и 2 удалений

Просмотреть файл

@ -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;
}