mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-08 16:24:51 -04:00
Adding some visual separation for parameters (#2841)
Currently on the Documentation pages when parameters are listed, there is no visual separation between the parameter names, flags, and descriptions. This should make it a bit easier for humans to read.
This commit is contained in:
parent
5190b87714
commit
19ff383065
1 changed files with 18 additions and 0 deletions
|
|
@ -35,3 +35,21 @@
|
|||
|
||||
// Demo
|
||||
@import '_demo';
|
||||
|
||||
|
||||
// Docs - visual separation for parameter names and flags
|
||||
span.param {
|
||||
font-weight: 800;
|
||||
}
|
||||
span.param:after {
|
||||
content: ":";
|
||||
}
|
||||
span.param-flags {
|
||||
font-style: italic;
|
||||
}
|
||||
span.param-flags:before {
|
||||
content: "(";
|
||||
}
|
||||
span.param-flags:after {
|
||||
content: ")";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue