Fix some spacing
This commit is contained in:
parent
0cb06c8d98
commit
8f2dede80d
2 changed files with 14 additions and 5 deletions
|
|
@ -9,8 +9,10 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
details,
|
details,
|
||||||
|
ol,
|
||||||
|
p,
|
||||||
table,
|
table,
|
||||||
p {
|
ul {
|
||||||
margin: 1em 0;
|
margin: 1em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -56,8 +58,9 @@ details[open]>summary {
|
||||||
list-style-type: "v ";
|
list-style-type: "v ";
|
||||||
}
|
}
|
||||||
|
|
||||||
details[open]>:last-child {
|
ul,
|
||||||
margin-bottom: 0;
|
ol {
|
||||||
|
list-style-type: "- ";
|
||||||
}
|
}
|
||||||
|
|
||||||
dl {
|
dl {
|
||||||
|
|
@ -148,6 +151,12 @@ nav a:hover {
|
||||||
color: #a33;
|
color: #a33;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Refs */
|
||||||
|
|
||||||
|
.refs-list dl {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Queue */
|
/* Queue */
|
||||||
|
|
||||||
.queue-commits form {
|
.queue-commits form {
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<h2>Refs</h2>
|
<h2>Refs</h2>
|
||||||
|
|
||||||
<details open>
|
<details class="refs-list" open>
|
||||||
<summary>Tracked ({{ tracked_refs.len() }})</summary>
|
<summary>Tracked ({{ tracked_refs.len() }})</summary>
|
||||||
<form method="post" action="{{ link_admin_refs_untrack }}">
|
<form method="post" action="{{ link_admin_refs_untrack }}">
|
||||||
<dl>
|
<dl>
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
</form>
|
</form>
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
<details class="refs-list">
|
||||||
<summary>Untracked ({{ untracked_refs.len() }})</summary>
|
<summary>Untracked ({{ untracked_refs.len() }})</summary>
|
||||||
<form method="post" action="{{ link_admin_refs_track }}">
|
<form method="post" action="{{ link_admin_refs_track }}">
|
||||||
<dl>
|
<dl>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue