1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2018 Mellanox Technologies, Ltd
3 */
4
5/* Override readthedocs theme */
6
7/* Set full width for all responsive tables of a page.
8 * Usage: insert the following line in the doc.
9 *        .. rst-class:: widepage
10 */
11@media screen and (min-width: 1100px) {
12    .wy-nav-content-wrap:has(.widepage) {
13        background: #fcfcfc !important;
14    }
15    .wy-nav-content:has(.widepage) .wy-table-responsive {
16        overflow: visible !important;
17    }
18}
19
20/* Spacing before a list item must be bigger than spacing inside the item.
21 * Complex list items start with a p.first element. */
22.section li > .first {
23	margin-top: 18px;
24}
25