test/node_modules/@vuepress/highlighter-helper/lib/client/styles/notation-focus.css
2024-08-13 09:27:52 +08:00

10 lines
258 B
CSS

div[class*=language-] .has-focused-lines .line:not(.has-focus) {
opacity: 0.7;
filter: blur(0.095rem);
transition: filter 0.35s, opacity 0.35s;
}
div[class*=language-]:hover .has-focused-lines .line:not(.has-focus) {
opacity: 1;
filter: blur(0);
}