File: plugin-search.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 (31 lines) | stat: -rw-r--r-- 694 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
.book .book-summary .book-search {
  padding: 6px;
  background: transparent;
  position: absolute;
  top: -50px;
  left: 0px;
  right: 0px;
  transition: top 0.5s ease;
}
.book .book-summary .book-search input,
.book .book-summary .book-search input:focus,
.book .book-summary .book-search input:hover {
  width: 100%;
  background: transparent;
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
  line-height: 22px;
  padding: 7px 4px;
  color: inherit;
  box-sizing: border-box;
}
.book.with-search .book-summary .book-search {
  top: 0px;
}
.book.with-search .book-summary ul.summary {
  top: 50px;
}
.with-search .summary li[data-level] a[href*=".html#"] {
  display: none;
}