order article colors more friendly and more responsive

This commit is contained in:
Philipp Rothmann 2023-02-20 18:52:13 +01:00
parent 86708f6f8d
commit 4150403a33
2 changed files with 22 additions and 9 deletions

View file

@ -278,13 +278,14 @@ tr.order-article .article-info {
display: none; display: none;
} }
tr.order-article:focus{
background-color: #E4EED6;
}
tr.order-article:focus .article-info { tr.order-article:focus .article-info {
display: block; display: block;
} }
tr.order-article:focus {
background-color: #E9E9E9;
}
// ********* Articles // ********* Articles
tr.just-updated { tr.just-updated {

View file

@ -1,11 +1,23 @@
.list .missing-many td, .list .missing-many:hover td { .list .missing-many td {
background-color: #ebbebe; background-color: #ffc590aa;
} }
.list .missing-few td, .list .missing-few:hover td { .list .missing-many:hover td, .list .missing-many:focus td {
background-color: #ffee75; background-color: #ffc590;
} }
.list .missing-none td, .list .missing-none:hover td { .list .missing-few td {
background-color: #E4EED6; background-color: #fcf488aa;
} }
.list .missing-few:hover td, .list .missing-few:focus td {
background-color: #fcf488;
}
.list .missing-none td {
background-color: #e1f392aa;
}
.list .missing-none:hover td, .list .missing-none:focus td {
background-color: #e1f392;
}