File: no_italic.css

package info (click to toggle)
python-pyvista 0.46.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176,968 kB
  • sloc: python: 94,346; sh: 216; makefile: 70
file content (20 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Disable italic for parameter types and remove the border from code */
/* See https://github.com/pyvista/pyvista/pull/4155#issuecomment-1475308020 */

span.classifier,
span.classifier * {
  font-style: normal;
}

code.literal,
code.literal * {
  background-color: initial;
  border: none;
  border-radius: 0;
  padding: 0;
}

code,
code * {
  font-size: 1em;
}