mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-03 02:09:45 +07:00
46 lines
1.0 KiB
CSS
46 lines
1.0 KiB
CSS
/**
|
|
* FIX THE DESIGN OF THE RTD THEME
|
|
*/
|
|
|
|
/* NC blue */
|
|
.wy-side-nav-search {
|
|
background-color: #0082c9;
|
|
}
|
|
|
|
/* Remove unwanted data on the bottom left sidebar */
|
|
.rst-versions.shift-up .rst-other-versions > dl:not(:nth-child(1)):not(:nth-child(2)),
|
|
.rst-versions.shift-up .rst-other-versions > a,
|
|
.rst-versions.shift-up .rst-other-versions > hr {
|
|
display:none
|
|
}
|
|
.rst-versions.shift-up .rst-other-versions {
|
|
color: transparent;
|
|
font-size: 0px;
|
|
}
|
|
.rst-versions.shift-up .rst-other-versions dt,.rst-versions.shift-up .rst-other-versions dl {
|
|
color: #808080;
|
|
font-size: 15px;
|
|
}
|
|
|
|
/* Remove readthedocs title in the sidebar bottom left section */
|
|
.rst-versions .rst-current-version .fa-book {
|
|
display: none;
|
|
}
|
|
.rst-versions .rst-current-version:before {
|
|
content: 'Nextcloud';
|
|
margin-right: auto;
|
|
}
|
|
.rst-versions .rst-current-version {
|
|
display: flex;
|
|
align-items: center;
|
|
color: #0082c9;
|
|
}
|
|
.rst-versions .rst-current-version .fa-caret-down {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
/* Code blocks */
|
|
.highlight {
|
|
/* nc blue */
|
|
background: rgba(0, 130, 201, 0.1)
|
|
} |