File size: 577 Bytes
bae9410 |
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 |
.path {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
/* Makes ellipsis show in default text color, we show the basename in link color below */
color: var(--vscode-disabledForeground);
}
.excluded {
text-decoration: line-through !important;
}
.basename {
color: var(--vscode-textLink-foreground);
}
.repoShortName {
color: var(--vscode-disabledForeground);
font-size: smaller;
}
.dirname {
color: var(--vscode-disabledForeground);
font-size: smaller;
}
.range {
color: var(--vscode-disabledForeground);
}
|