File: need_toggle.css

package info (click to toggle)
sphinx-needs 5.1.0%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,108 kB
  • sloc: python: 21,148; javascript: 187; makefile: 95; sh: 29; xml: 10
file content (26 lines) | stat: -rw-r--r-- 484 bytes parent folder | download
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
/* 
The toggle class appears to be only used in sphinx_needs/directives/needimport_template.rst,
but it is not clear if this is ever actually used, or what JS it is supposed to be used with it.
*/

.toggle .header {
    display: block;
    clear: both;
}

.toggle .header p {
    display: inline;
}

.toggle .header:after {
    content: " ▷";
}

.toggle .header.open:after {
    content: " ▽";
}

div.need div.toggle div.line-block {
    margin-top: 0px;
    margin-left: 30px;
}