File: need_links.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 (17 lines) | stat: -rw-r--r-- 404 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* DEAD Links config */
/* allowed dead links */
span.needs_dead_link {
    opacity: 0.8;
}

/*forbidden dead links */
span.needs_dead_link.forbidden {
    color: var(--sn-color-forbidden-dead-link);
}

/* Style for external need links*/
a.external_link:after {
    content: "🡽"
        /* Same, but with none breaking space (&nbsp not supported in content!)*/
        /*content: "\00a0\00a0🡽"*/
}