mirror of https://github.com/n2geoff/stylelite.git
FIX: hover on details content
This commit is contained in:
parent
e19fc21b87
commit
c9d2ccd6a7
|
@ -1,4 +1,4 @@
|
|||
/*! Stylelite v:0.6.7 | MIT LICENSE | https://github.com/n2geoff/stylelite */
|
||||
/*! Stylelite v:0.7.0 | MIT LICENSE | https://github.com/n2geoff/stylelite */
|
||||
:root {
|
||||
--size: 1rem;
|
||||
--radius: 0rem;
|
||||
|
@ -102,6 +102,10 @@ th,td {
|
|||
border-bottom: 1px solid var(--theme);
|
||||
}
|
||||
|
||||
table.striped tbody>:nth-child(2n-1) {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
table.condensed * {padding:0}
|
||||
|
||||
fieldset {
|
||||
|
@ -194,6 +198,9 @@ summary {
|
|||
border: 1px solid var(--theme);
|
||||
}
|
||||
|
||||
summary:hover {cursor: pointer;}
|
||||
details:not(summary):hover {cursor: default}
|
||||
|
||||
a.button, button, input {
|
||||
display: inline-block;
|
||||
outline: none;
|
||||
|
|
Loading…
Reference in New Issue