chore: lint CSS files
The linter throws loads of errors - this commit only makes those fixes that Stylelint can make automatically.
This commit is contained in:
parent
d8bb767806
commit
d52de71726
5 changed files with 51 additions and 30 deletions
|
@ -26,7 +26,8 @@ span.footnote_referrer > span.footnote_tooltip {
|
|||
visibility: hidden;
|
||||
opacity: 0;
|
||||
transition-property: visibility, opacity;
|
||||
/*
|
||||
|
||||
/*
|
||||
transition-delay: 500ms;
|
||||
transition-duration: 1s;
|
||||
*/
|
||||
|
@ -37,7 +38,8 @@ span.footnote_referrer:hover > span.footnote_tooltip {
|
|||
visibility: visible;
|
||||
opacity: 1;
|
||||
transition-property: visibility, opacity;
|
||||
/*
|
||||
|
||||
/*
|
||||
transition-delay: 0;
|
||||
transition-duration: 200ms;
|
||||
*/
|
||||
|
@ -57,7 +59,8 @@ span.footnote_referrer:hover > span.footnote_tooltip {
|
|||
.footnote_tooltip.position {
|
||||
display: unset;
|
||||
position: absolute;
|
||||
/*
|
||||
|
||||
/*
|
||||
bottom: 24px;
|
||||
left: -50px;
|
||||
width: 400px;
|
||||
|
|
Reference in a new issue