Hide unfinished features.
This commit is contained in:
parent
318f3d7fa3
commit
348a5df509
2 changed files with 22 additions and 4 deletions
|
|
@ -455,9 +455,12 @@ blockquote {
|
|||
content: "";
|
||||
}
|
||||
|
||||
&:not([data-lang="Nim"]) > .code-buttons {
|
||||
display: none;
|
||||
}
|
||||
// &:not([data-lang="Nim"]) > .code-buttons {
|
||||
// display: none;
|
||||
// }
|
||||
}
|
||||
.code-buttons {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.information {
|
||||
|
|
@ -668,4 +671,19 @@ hr {
|
|||
.footer {
|
||||
margin-top: $control-padding-y*2;
|
||||
}
|
||||
}
|
||||
|
||||
// - Hide features that have not been implemented yet.
|
||||
#main-buttons > section.navbar-section:nth-child(1) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#threads-list.table {
|
||||
tr > th:nth-child(2), tr > td:nth-child(2) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
#search-box, .category {
|
||||
display: none;
|
||||
}
|
||||
|
|
@ -173,7 +173,7 @@ when defined(js):
|
|||
let list = state.list.get()
|
||||
result = buildHtml():
|
||||
section(class="container grid-xl"): # TODO: Rename to `.thread-list`.
|
||||
table(class="table"):
|
||||
table(class="table", id="threads-list"):
|
||||
thead():
|
||||
tr:
|
||||
th(text "Topic")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue