order article colors more friendly and more responsive
This commit is contained in:
parent
86708f6f8d
commit
4150403a33
2 changed files with 22 additions and 9 deletions
|
@ -278,13 +278,14 @@ tr.order-article .article-info {
|
|||
display: none;
|
||||
}
|
||||
|
||||
tr.order-article:focus{
|
||||
background-color: #E4EED6;
|
||||
}
|
||||
tr.order-article:focus .article-info {
|
||||
display: block;
|
||||
}
|
||||
|
||||
tr.order-article:focus {
|
||||
background-color: #E9E9E9;
|
||||
}
|
||||
|
||||
// ********* Articles
|
||||
|
||||
tr.just-updated {
|
||||
|
|
|
@ -1,11 +1,23 @@
|
|||
.list .missing-many td, .list .missing-many:hover td {
|
||||
background-color: #ebbebe;
|
||||
.list .missing-many td {
|
||||
background-color: #ffc590aa;
|
||||
}
|
||||
|
||||
.list .missing-few td, .list .missing-few:hover td {
|
||||
background-color: #ffee75;
|
||||
.list .missing-many:hover td, .list .missing-many:focus td {
|
||||
background-color: #ffc590;
|
||||
}
|
||||
|
||||
.list .missing-none td, .list .missing-none:hover td {
|
||||
background-color: #E4EED6;
|
||||
.list .missing-few td {
|
||||
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;
|
||||
}
|
Loading…
Reference in a new issue