mirror of https://github.com/pikvm/pikvm.git
Updated .gitignore; Collapse/Expand section with text
This commit is contained in:
parent
04e4f90921
commit
d8243b1d57
|
|
@ -1 +1,3 @@
|
||||||
/site/
|
/site/
|
||||||
|
.DS_Store
|
||||||
|
.venv/
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,15 @@
|
||||||
a {
|
a {
|
||||||
color: var(--md-typeset-a-color);
|
color: var(--md-typeset-a-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.md-source {
|
a.md-source {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.md-source:hover {
|
a.md-source:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
@ -39,21 +42,26 @@ li.md-nav__item--section > label.md-nav__link {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #e82062 !important;
|
color: #e82062 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.md-sidebar--primary .md-nav__link--active:before {
|
.md-sidebar--primary .md-nav__link--active:before {
|
||||||
content: "\21D2";
|
content: "\21D2";
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 76.3em) {
|
@media screen and (min-width: 76.3em) {
|
||||||
.md-post__back > .md-nav__title { /* Blog: Enable "Back to index" */
|
.md-post__back>.md-nav__title {
|
||||||
|
/* Blog: Enable "Back to index" */
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.md-post__back { /* Blog */
|
|
||||||
|
.md-post__back {
|
||||||
|
/* Blog */
|
||||||
padding-top: 1.2rem;
|
padding-top: 1.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.md-header,*/ .md-footer {
|
/*.md-header,*/
|
||||||
|
.md-footer {
|
||||||
background-color: #333333;
|
background-color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -90,6 +98,7 @@ li.md-nav__item--section > label.md-nav__link {
|
||||||
/*border-right: 1px solid #adadad;*/
|
/*border-right: 1px solid #adadad;*/
|
||||||
padding-bottom: 30px;
|
padding-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.md-sidebar.md-sidebar--secondary .md-sidebar__inner {
|
.md-sidebar.md-sidebar--secondary .md-sidebar__inner {
|
||||||
border-left: 1px solid #adadad;
|
border-left: 1px solid #adadad;
|
||||||
}
|
}
|
||||||
|
|
@ -103,7 +112,9 @@ li.md-nav__item--section > label.md-nav__link {
|
||||||
/*border-left: 1px solid #adadad;
|
/*border-left: 1px solid #adadad;
|
||||||
border-right: 1px solid #adadad;*/
|
border-right: 1px solid #adadad;*/
|
||||||
}
|
}
|
||||||
.md-content.md-content--post { /* Blog */
|
|
||||||
|
.md-content.md-content--post {
|
||||||
|
/* Blog */
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -134,6 +145,30 @@ ol li::marker {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.md-typeset summary:after {
|
||||||
|
background-color: unset;
|
||||||
|
content: " Expand ▼";
|
||||||
|
height: unset;
|
||||||
|
-webkit-mask-image: unset;
|
||||||
|
mask-image: unset;
|
||||||
|
-webkit-mask-position: unset;
|
||||||
|
mask-position: unset;
|
||||||
|
-webkit-mask-repeat: unset;
|
||||||
|
mask-repeat: unset;
|
||||||
|
-webkit-mask-size: unset;
|
||||||
|
mask-size: unset;
|
||||||
|
position: absolute;
|
||||||
|
top: unset;
|
||||||
|
transform: unset;
|
||||||
|
transition: unset;
|
||||||
|
width: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-typeset details[open]>summary:after {
|
||||||
|
transform: unset;
|
||||||
|
content: " Collapse ▲";
|
||||||
|
}
|
||||||
|
|
||||||
.md-typeset details:not([open]) {
|
.md-typeset details:not([open]) {
|
||||||
border-left-width: 16px;
|
border-left-width: 16px;
|
||||||
}
|
}
|
||||||
|
|
@ -144,7 +179,3 @@ ol li::marker {
|
||||||
.md-typeset li .admonition:only-child {
|
.md-typeset li .admonition:only-child {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.md-button--stretch {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue