-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathshowcase.css
More file actions
74 lines (65 loc) · 1.68 KB
/
showcase.css
File metadata and controls
74 lines (65 loc) · 1.68 KB
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
71
72
73
74
/**
* Copyright 2023 Red Hat
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
.pf-m-redhat-font .pf-c-content {
--pf-v6-c-content--FontSize: var(--pf-t--global--font--size--lg);
}
.pfj-popover-box, .pfj-tooltip-box {
height: 450px;
position: relative;
width: 100%;
overflow: scroll;
overscroll-behavior: contain;
margin: 0 auto;
border: 2px dashed #ff6b81;
}
.pfj-popover-box::before,
.pfj-popover-box::after,
.pfj-tooltip-box::before,
.pfj-tooltip-box::after {
content: '';
display: block;
width: 1500px;
height: 600px;
}
.pfj-popover-button, .pfj-tooltip-button {
position: absolute;
left: 600px;
}
.hljs {
background-color: var(--pf-t--global--background--color--200) !important;
}
.markdown table {
display: block;
width: max-content;
max-width: 100%;
overflow: auto;
}
.markdown table tr {
background-color: #fff;
border-top: 1px solid #d0d7deb3;
}
.markdown table tr:nth-child(2n) {
background-color: #f6f8fa;
}
.markdown table th {
padding: 6px 13px;
border: 1px solid #d0d7de;
font-weight: 600;
}
.markdown table td {
padding: 6px 13px;
border: 1px solid #d0d7de;
}