forked from ansible/ansible-hub-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrender-plugin-doc.scss
70 lines (57 loc) · 1.3 KB
/
render-plugin-doc.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.hub-doc-options-table {
td,
th {
border: 1px solid black;
padding: 5px;
vertical-align: top;
}
ul {
margin-top: 0;
}
small {
margin-bottom: 0;
}
// ensures the bottom of the table always has a border even
// if there is a spacer at the bottom which might otherwise cause
// a gap
border-bottom: 1px solid black;
width: 100%;
.spacer {
// The !important is needed here to avoid the value being overridden
// by table.css injected by some dependencies.
width: 20px !important;
// In case of multiple indents, it seems that the first indent still
// has width 0. Adding a min-width seems to fix it on Chrome and Firefox.
min-width: 20px;
border-top: 0;
border-bottom: 0;
}
.parent {
border-bottom: 0;
}
}
.hub-doc-blue {
color: var(--pf-v5-global--info-color--100);
}
.hub-doc-red {
color: var(--pf-v5-global--danger-color--100);
}
.hub-doc-green {
color: var(--pf-v5-global--success-color--200);
}
.hub-doc-option-name {
font-weight: bold;
}
.hub-doc-plugin-config {
margin-bottom: 16px;
}
.hub-doc-plugin-raw {
white-space: pre-wrap;
}
.hub-doc-inline-code {
background-color: #e6e9e9;
font-family: var(--pf-v5-global--FontFamily--monospace);
display: inline-block;
border-radius: 2px;
padding: 0 2px;
}