mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
25 lines
496 B
CSS
25 lines
496 B
CSS
/*
|
|
* bracketed links
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (c) 2020 Arecsu
|
|
* under the MIT license
|
|
*/
|
|
|
|
.notion-link-token span {
|
|
border-bottom: none !important;
|
|
}
|
|
.notion-link-token:before {
|
|
content: '[[';
|
|
opacity: 0.7;
|
|
transition: opacity 100ms ease-in;
|
|
}
|
|
.notion-link-token:after {
|
|
content: ']]';
|
|
opacity: 0.7;
|
|
transition: opacity 100ms ease-in;
|
|
}
|
|
.notion-link-token:hover::before,
|
|
.notion-link-token:hover::after {
|
|
opacity: 1;
|
|
}
|