1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-02 18:34:52 +12:00

highlight scopes which are subject to toggle

This commit is contained in:
shub-nougat 2017-11-24 23:36:42 +00:00
parent 040b2a3d7f
commit 3755655239

View file

@ -305,9 +305,17 @@ body .toolbar #specificScope > span {
display: inline-block;
height: 100%;
}
body .toolbar #specificScope > span:hover,
body .toolbar #specificScope > span:hover ~ span {
background-color: #999;
}
body .toolbar #specificScope > span.on {
background-color: #24c;
}
body .toolbar #specificScope > span.on:hover,
body .toolbar #specificScope > span:hover ~ span.on {
background-color: #139;
}
body .toolbar #specificScope > span:first-of-type {
flex: 1;
}