[IMP] make application TOC toplevel look like subtitles
This commit is contained in:
parent
4a8bc016d1
commit
0e58ae3ee0
@ -65,10 +65,10 @@ def navbarify(node, navbar=None):
|
|||||||
# no subrefs -> ignore
|
# no subrefs -> ignore
|
||||||
if not list_item.children[1].children:
|
if not list_item.children[1].children:
|
||||||
continue
|
continue
|
||||||
# otherwise replace reference node by its own children
|
# otherwise replace reference node by an inline (so it can still be styled)
|
||||||
para = n.parent
|
para = n.parent
|
||||||
para.remove(n)
|
para.remove(n)
|
||||||
para.extend(n.children)
|
para.append(nodes.inline('', '', *n.children))
|
||||||
|
|
||||||
|
|
||||||
def resolve_content_toctree(
|
def resolve_content_toctree(
|
||||||
|
@ -9092,6 +9092,29 @@ main.index.animating .card {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
.toctree-wrapper > ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.toctree-wrapper > ul > li.toctree-l1 > span {
|
||||||
|
font-family: Lato, sans-serif;
|
||||||
|
font-weight: 300;
|
||||||
|
line-height: 1.1;
|
||||||
|
color: #393f4f;
|
||||||
|
margin-top: 22px;
|
||||||
|
margin-bottom: 11px;
|
||||||
|
font-size: 34px;
|
||||||
|
}
|
||||||
|
.toctree-wrapper > ul > li.toctree-l1 > span small,
|
||||||
|
.toctree-wrapper > ul > li.toctree-l1 > span .small {
|
||||||
|
font-weight: normal;
|
||||||
|
line-height: 1;
|
||||||
|
color: #777777;
|
||||||
|
}
|
||||||
|
.toctree-wrapper > ul > li.toctree-l1 > span small,
|
||||||
|
.toctree-wrapper > ul > li.toctree-l1 > span .small {
|
||||||
|
font-size: 65%;
|
||||||
|
}
|
||||||
hr.divider {
|
hr.divider {
|
||||||
border-color: rgba(229, 229, 229, 0.4);
|
border-color: rgba(229, 229, 229, 0.4);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -343,6 +343,19 @@ main.index {
|
|||||||
.square(100%);
|
.square(100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// the first level of an application toctree should look more like sections
|
||||||
|
|
||||||
|
.toctree-wrapper > ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
> li.toctree-l1 > span {
|
||||||
|
font-family: @headings-font-family;
|
||||||
|
// copy h2 content :/
|
||||||
|
.h2()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Elements
|
// Elements
|
||||||
// -----------------------------------------------
|
// -----------------------------------------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user