forked from github/vscode-codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresultsView.css
More file actions
136 lines (112 loc) · 2.86 KB
/
resultsView.css
File metadata and controls
136 lines (112 loc) · 2.86 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
.vscode-codeql__result-table {
display: table;
border-collapse: collapse;
width: 100%;
}
.vscode-codeql__table-selection-header {
display: flex;
padding: 0.5em 0;
}
.vscode-codeql__table-selection-header select {
border: 0;
}
.vscode-codeql__result-table-toggle-diagnostics {
display: inline-block;
text-align: left;
margin-left: auto;
}
/* Keep the checkbox and its label in horizontal alignment. */
.vscode-codeql__result-table-toggle-diagnostics label,
.vscode-codeql__result-table-toggle-diagnostics input {
display: inline-block;
vertical-align: middle;
}
.vscode-codeql__result-table-toggle-diagnostics input {
margin: 3px 3px 1px 3px;
}
.vscode-codeql__result-table th {
border-top: 1px solid rgba(88,96,105,0.25);
border-bottom: 1px solid rgba(88,96,105,0.25);
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;
background: rgba(225,228,232, 0.25);
padding: 0.25em 0.5em;
text-align: center;
font-weight: normal;
opacity: 0.6;
}
.vscode-codeql__result-table .sort-none::after {
/* Want to take up the same space as the other sort directions */
content: " ▲";
visibility: hidden;
}
.vscode-codeql__result-table .sort-asc::after {
content: " ▲";
}
.vscode-codeql__result-table .sort-desc::after {
content: " ▼";
}
.vscode-codeql__result-table td {
margin: 0;
padding: 0;
padding: 0.25em 0.5em;
white-space: pre-wrap;
text-align: left;
}
.vscode-codeql__result-table-location-link {
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
select {
background-color: var(--vscode-dropdown-background);
color: var(--vscode-dropdown-foreground);
border-color: var(--vscode-dropdown-border);
font-family: inherit;
font-size: inherit;
}
.vscode-codeql__result-tables-updating-text {
margin-left: 1em;
}
.vscode-codeql__result-table-row--odd {
background-color: inherit;
}
.vscode-codeql__result-table-row--even {
background-color: var(--vscode-textBlockQuote-background);
}
.vscode-codeql__result-table-row--selected {
background-color: var(--vscode-editor-findMatchBackground);
}
td.vscode-codeql__icon-cell {
text-align: center;
position: relative;
white-space: nowrap;
margin: 0;
padding: 0;
width: 24px;
}
td.vscode-codeql__dropdown-cell:hover {
cursor: pointer;
}
td.vscode-codeql__path-index-cell {
text-align: right;
}
td.vscode-codeql__location-cell {
text-align: right;
}
.vscode-codeql__vertical-rule {
border-left: 1px solid var(--vscode-dropdown-border);
height: 100%;
position: absolute;
top: 0;
bottom: 0;
}
.vscode-codeql__title {
/* Something that isn't a link, but which has a title attribute */
text-decoration-line: underline;
text-decoration-style: dotted;
}
.octicon {
fill: var(--vscode-editor-foreground);
margin-top: .25em;
}
.octicon-light {
opacity: 0.6;
}