Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/differential/table-of-contents.css
12242 views
1
/**
2
* @provides differential-table-of-contents-css
3
*/
4
5
.differential-toc-meta {
6
color: {$lightgreytext};
7
padding-top: 2px;
8
}
9
10
table.aphront-table-view td.differential-toc-char {
11
padding-right: 0;
12
font-weight: bold;
13
color: {$darkbluetext};
14
}
15
16
table.aphront-table-view td.differential-toc-prop {
17
padding-left: 0;
18
padding-right: 0;
19
font-weight: bold;
20
color: {$darkbluetext};
21
}
22
23
table.aphront-table-view td.differential-toc-ftype {
24
padding-left: 0;
25
font-weight: bold;
26
color: {$darkbluetext};
27
}
28
29
.differential-toc-file {
30
color: {$lightgreytext};
31
}
32
33
.device-phone .differential-toc-file {
34
word-break: break-word;
35
}
36
37
.differential-toc-cov {
38
color: {$darkbluetext};
39
font-weight: bold;
40
}
41
42
.differential-toc-reveal-all,
43
.differential-toc-edit-all {
44
float: right;
45
margin-left: 4px;
46
}
47
48
.diff-star-none {
49
color: {$greytext};
50
}
51
52
.diff-star-okay {
53
color: {$orange};
54
}
55
56
/* TODO: 'warn' and 'fail' are both red, but we can't make 'warn' yellow since
57
'okay' is a "gold star". */
58
.diff-star-warn {
59
color: {$red};
60
}
61
62
.diff-star-fail {
63
color: {$red};
64
}
65
66
.diff-star-skip {
67
color: {$indigo};
68
}
69
70
.differential-toc table td em {
71
color: {$greytext};
72
}
73
74
.differential-toc .button {
75
margin: 8px 0px 0px 8px;
76
}
77
78
.differential-mcoverage-loading {
79
color: {$lightgreytext};
80
}
81
82
.differential-toc-buttons {
83
border-top: 1px solid {$thinblueborder};
84
padding: 8px;
85
}
86
87
.differential-harbormaster-table-view {
88
margin: 4px 0;
89
border: 1px solid {$thinblueborder};
90
}
91
92
.diff-toc-path .phui-icon-view {
93
margin-right: 2px;
94
text-align: center;
95
width: 20px;
96
display: inline-block;
97
}
98
99
table.aphront-table-view-compact td {
100
padding: 3px 8px;
101
}
102
103
td.diff-toc-path td {
104
padding: 0;
105
color: {$greytext};
106
}
107
108
.diff-toc-path div.diff-path-component-new {
109
padding: 0 2px;
110
box-shadow: inset 0 -2px {$new-bright};
111
margin: 0 2px;
112
}
113
114
.diff-toc-path div.diff-path-component-old {
115
padding: 0 2px;
116
box-shadow: inset 0 -2px {$old-bright};
117
margin: 0 2px;
118
}
119
120
.diff-toc-path a {
121
color: {$darkbluetext};
122
}
123
124
td.diff-toc-path .diff-path-old td {
125
color: {$lightgreytext};
126
}
127
128
.diff-toc-low-importance-row,
129
.alt-diff-toc-low-importance-row {
130
opacity: 0.5;
131
}
132
133