Merge tag 'mips_6.14_1' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux
[drm/drm.git] / Documentation / sphinx-static / theme_overrides.css
blob79000b26e64e557da97dd94b8a20349a125847cf
1 /* -*- coding: utf-8; mode: css -*-
3 * Sphinx HTML theme customization: read the doc
4 * Please don't add any color definition here, as the theme should
5 * work for both normal and dark modes.
6 */
8 /* Improve contrast and increase size for easier reading. */
10 body {
11 font-family: serif;
12 font-size: 100%;
15 h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend {
16 font-family: sans-serif;
19 div[class^="highlight"] pre {
20 font-family: monospace;
21 font-size: 100%;
24 .wy-menu-vertical {
25 font-family: sans-serif;
28 .c {
29 font-style: normal;
32 p {
33 font-size: 100%;
36 /* Interim: Code-blocks with line nos - lines and line numbers don't line up.
37 * see: https://github.com/rtfd/sphinx_rtd_theme/issues/419
40 div[class^="highlight"] pre {
41 line-height: normal;
43 .rst-content .highlight > pre {
44 line-height: normal;
47 /* Keep fields from being strangely far apart due to inheirited table CSS. */
48 .rst-content table.field-list th.field-name {
49 padding-top: 1px;
50 padding-bottom: 1px;
52 .rst-content table.field-list td.field-body {
53 padding-top: 1px;
54 padding-bottom: 1px;
57 @media screen {
59 /* content column
61 * RTD theme's default is 800px as max width for the content, but we have
62 * tables with tons of columns, which need the full width of the view-port.
65 .wy-nav-content{max-width: none; }
67 /* table:
69 * - Sequences of whitespace should collapse into a single whitespace.
70 * - make the overflow auto (scrollbar if needed)
71 * - align caption "left" ("center" is unsuitable on vast tables)
74 .wy-table-responsive table td { white-space: normal; }
75 .wy-table-responsive { overflow: auto; }
76 .rst-content table.docutils caption { text-align: left; font-size: 100%; }
78 /* captions:
80 * - captions should have 100% (not 85%) font size
81 * - hide the permalink symbol as long as link is not hovered
84 caption, .wy-table caption, .rst-content table.field-list caption {
85 font-size: 100%;
87 caption a.headerlink { opacity: 0; }
88 caption a.headerlink:hover { opacity: 1; }
90 /* Menu selection and keystrokes */
92 span.menuselection {
93 font-family: "Courier New", Courier, monospace
96 code.kbd, code.kbd span {
97 font-weight: bold;
98 font-family: "Courier New", Courier, monospace
101 /* fix bottom margin of lists items */
103 .rst-content .section ul li:last-child, .rst-content .section ul li p:last-child {
104 margin-bottom: 12px;
107 /* inline literal: drop the borderbox, padding and red color */
109 code, .rst-content tt, .rst-content code {
110 color: inherit;
111 border: none;
112 padding: unset;
113 background: inherit;
114 font-size: 85%;
117 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {
118 color: inherit;