forked from jenkinsci/configuration-as-code-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreference.css
More file actions
84 lines (70 loc) · 1.29 KB
/
reference.css
File metadata and controls
84 lines (70 loc) · 1.29 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
75
76
77
78
79
80
81
82
83
84
.configurator {
margin-top: 30px;
}
.configurator__name {
font-size: 1.5em;
}
.configurator-pointer {
font-size: 0.5em;
color: var(--text-color-secondary);
font-weight: 100;
}
.root-configurator-pointer {
font-size: 0.5em;
color: var(--orange);
font-weight: 100;
}
.configurator-attributes {
display: flex;
flex-direction: column;
}
.configurator-attribute {
display: flex;
flex-grow: 1;
margin-left: 25px;
border-left: var(--jenkins-border);
line-height: 24px;
}
.configurator-attribute__name {
display: flex;
flex-direction: column;
flex-basis: 30%;
min-height: 30px;
padding-top: 5px;
}
.attribute-name {
display:flex;
}
.attribute-name:before {
content: '';
display: block;
margin-right: 10px;
border-top: 1px solid #ccc;
width: 10px;
margin-top: 12px;
}
.attribute-name:after {
content: '';
display: block;
margin-left: 10px;
border-top: 1px dashed #ccc;
flex: 1;
margin-top: 12px;
}
.configurator-attribute__details {
display: flex;
flex-direction: column;
flex: 1;
padding: 5px;
}
.attribute-type {
color: var(--text-color-secondary);
}
.attribute-type__list {
color: #999;
margin-right: 5px;
}
.attribute-type__class {
font-family: Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
font-size: 0.8em;
}