File: custom.css

package info (click to toggle)
harp 1.16-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 47,340 kB
  • sloc: xml: 399,366; ansic: 155,141; javascript: 9,853; yacc: 2,176; python: 1,112; makefile: 646; lex: 589; sh: 69
file content (26 lines) | stat: -rw-r--r-- 740 bytes parent folder | download | duplicates (10)
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
/* Overrides of the default theme CSS rules. The use of explicit qualifiers
 * "html body div" ensures these rules are preferred over the default CSS rules
 * even if this file is loaded first.
 */

/* Override theme to use all available horizontal space (instead of a fixed
 * maximum of 800 pixels).
 */ 
html body div.wy-nav-content {
    max-width: 100%;
}

/* Override theme to force all tables to the same width (100%). */
html body div.wy-table-responsive table {
    width: 100%;
}

/* Override theme to disable horizontal scroll bars on wide tables. */
html body div.wy-table-responsive table td,
html body div.wy-table-responsive table th {
    white-space: normal;
}

html body div.wy-table-responsive {
    overflow: visible;
}