forked from jenkinsci/design-library-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_overrides.scss
More file actions
28 lines (24 loc) · 701 Bytes
/
_overrides.scss
File metadata and controls
28 lines (24 loc) · 701 Bytes
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
:root {
--jdl-spacing: var(--section-padding);
--jdl-border-translucent: var(--jenkins-border-width) solid
color-mix(in srgb, var(--text-color-secondary) 10%, transparent);
--jdl-box-shadow:
0 0 0 var(--jenkins-border-width)
color-mix(in srgb, currentColor 5%, transparent),
0 10px 15px rgba(0, 0, 0, 0.05);
@media (prefers-contrast: more) {
--jdl-border-translucent: var(--jenkins-border-width) solid
var(--text-color);
--jdl-box-shadow: 0 0 0 var(--jenkins-border-width) var(--text-color);
}
}
code {
font-family: var(--font-family-mono) !important;
color: var(--text-color-secondary);
}
a {
font-weight: inherit;
code {
color: unset;
}
}