Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/config/config-options.css
13464 views
1
/**
2
* @provides config-options-css
3
*/
4
5
.config-option-table {
6
width: 100%;
7
border-collapse: collapse;
8
border: none;
9
background: {$page.content};
10
}
11
12
.config-option-table th,
13
.config-option-table td {
14
padding: 8px 12px;
15
border-bottom: 1px solid {$thinblueborder};
16
}
17
18
.config-option-table th {
19
background: {$lightgreybackground};
20
color: {$bluetext};
21
text-align: left;
22
white-space: nowrap;
23
}
24
25
.config-option-table th em,
26
.config-option-table td em {
27
font-weight: normal;
28
color: {$greytext};
29
}
30
31
.config-option-table td {
32
color: {$darkgreytext};
33
width: 100%;
34
white-space: pre-wrap;
35
}
36
37
.config-option-table .column-labels th {
38
font-weight: bold;
39
color: {$bluetext};
40
background: {$lightgreybackground};
41
border-right: 1px solid {$thinblueborder};
42
}
43
44
.config-options-current-value {
45
white-space: nowrap;
46
width: 200px;
47
text-overflow: ellipsis;
48
overflow: hidden;
49
}
50
51
.config-options-current-value.violet {
52
color: {$violet};
53
}
54
55
.config-options-effective-value,
56
.config-option-table .config-options-effective-value th {
57
background: {$gentle.highlight};
58
}
59
60