]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - Documentation/sphinx-static/theme_overrides.css
Merge remote-tracking branches 'asoc/topic/sgtl5000', 'asoc/topic/simple', 'asoc...
[mirror_ubuntu-zesty-kernel.git] / Documentation / sphinx-static / theme_overrides.css
CommitLineData
bc214671
MH
1/* -*- coding: utf-8; mode: css -*-
2 *
9abaf979 3 * Sphinx HTML theme customization: read the doc
bc214671
MH
4 *
5 */
6
7@media screen {
8
9abaf979
MH
9 /* content column
10 *
11 * RTD theme's default is 800px as max width for the content, but we have
12 * tables with tons of columns, which need the full width of the view-port.
13 */
14
15 .wy-nav-content{max-width: none; }
16
17 /* table:
18 *
19 * - Sequences of whitespace should collapse into a single whitespace.
20 * - make the overflow auto (scrollbar if needed)
21 * - align caption "left" ("center" is unsuitable on vast tables)
22 */
23
24 .wy-table-responsive table td { white-space: normal; }
25 .wy-table-responsive { overflow: auto; }
26 .rst-content table.docutils caption { text-align: left; font-size: 100%; }
27
4eb40f14
MH
28 /* captions:
29 *
30 * - captions should have 100% (not 85%) font size
31 * - hide the permalink symbol as long as link is not hovered
32 */
33
ef88f10e
MCC
34 .toc-title {
35 font-size: 150%;
36 font-weight: bold;
37 }
38
4eb40f14
MH
39 caption, .wy-table caption, .rst-content table.field-list caption {
40 font-size: 100%;
41 }
42 caption a.headerlink { opacity: 0; }
43 caption a.headerlink:hover { opacity: 1; }
44
d1669c82 45 /* inline literal: drop the borderbox, padding and red color */
4eb40f14
MH
46
47 code, .rst-content tt, .rst-content code {
48 color: inherit;
49 border: none;
d1669c82 50 padding: unset;
4eb40f14
MH
51 background: inherit;
52 font-size: 85%;
53 }
54
55 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {
56 color: inherit;
57 }
58
bc214671 59}