Fix hover and open styles on v4v button in details element
This commit is contained in:
21
style.css
21
style.css
@@ -584,3 +584,24 @@ code, kbd, pre, samp {
|
||||
border: 1px solid #e1e1e1;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
/* Fix v4v details block hover and open styles */
|
||||
details[open] summary span.button.button-v4v {
|
||||
filter: brightness(90%);
|
||||
transform: 0px;
|
||||
}
|
||||
|
||||
details[open] summary span.button.button-v4v:hover {
|
||||
transform: -1px;
|
||||
}
|
||||
|
||||
details:not([open]) {
|
||||
filter: brightness(100%);
|
||||
transform: 0px;
|
||||
}
|
||||
|
||||
details:not([open]) summary span.button.button-v4v:hover {
|
||||
filter: brightness(90%);
|
||||
transform: -1px;
|
||||
}
|
||||
/* /end Fix v4v details block hover and open styles */
|
||||
|
Reference in New Issue
Block a user