This enhancement formats descriptions in config.cc using the standard markup language reStructuredText (RST). By doing so, it improves the rendering of these descriptions in the documentation, allowing you to use various directives like admonitions, code blocks, ordered lists, and more. Closes scylladb/scylladb#16311
43 lines
562 B
CSS
43 lines
562 B
CSS
/* Override theme styles */
|
|
|
|
/* Home */
|
|
.topic-box--product p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 640px) {
|
|
.hero__title {
|
|
max-width: 550px;
|
|
}
|
|
}
|
|
|
|
/* Description lists */
|
|
.content blockquote {
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.content blockquote li p {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.content blockquote dl dt {
|
|
font-weight: normal;
|
|
}
|
|
|
|
h3 .pre {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
hr {
|
|
max-width: 100%;
|
|
}
|
|
|
|
dl dt:hover > a.headerlink {
|
|
visibility: visible;
|
|
}
|
|
|
|
dl.confval {
|
|
border-bottom: 1px solid #cacaca;
|
|
}
|