mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
25 lines
494 B
CSS
25 lines
494 B
CSS
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
|
|
* (c) 2020 Arecsu
|
|
* (https://dragonwocky.me/) 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;
|
|
}
|