File: plugin-clipboard.css

package info (click to toggle)
r-cran-bookdown 0.42%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,752 kB
  • sloc: javascript: 11,343; makefile: 21; sh: 20
file content (18 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
div.sourceCode {
  position: relative;
}

.copy-to-clipboard-button {
  position: absolute;
  right: 0;
  top: 0;
  visibility: hidden;
}

.copy-to-clipboard-button:focus {
  outline: 0;
}

div.sourceCode:hover > .copy-to-clipboard-button {
  visibility: visible;
}