зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
a19f3aae29
Коммит
5d9c7c5e6f
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче