File: custom.css

package info (click to toggle)
harp 1.5%2Bdata-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 54,032 kB
  • sloc: xml: 286,510; ansic: 143,710; yacc: 1,910; python: 913; makefile: 600; lex: 574; 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;
}