mirror of
https://github.com/ozavodny/obsidian-copy-inline-code-plugin.git
synced 2026-07-22 08:10:25 +00:00
17 lines
No EOL
242 B
CSS
17 lines
No EOL
242 B
CSS
.copy-to-clipboard-icon {
|
|
cursor: pointer
|
|
}
|
|
|
|
.show-on-hover {
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
}
|
|
|
|
/* Source Mode */
|
|
.cm-line:hover .show-on-hover {
|
|
opacity: 1.0;
|
|
}
|
|
/* Reading Mode */
|
|
code:hover .show-on-hover {
|
|
opacity: 1.0;
|
|
} |