Files

43 lines
658 B
CSS
Raw Permalink Normal View History

.data-row {
2025-09-07 20:41:51 -06:00
display: flex;
flex-direction: row;
}
.data-cell {
flex: 1 0 0;
2025-09-07 20:22:35 -06:00
font-family: var(--code-font-family);
2025-09-07 20:41:51 -06:00
font-weight: var(--code-font-weight);
2025-09-07 20:22:35 -06:00
font-size: var(--code-font-size);
2025-09-07 20:41:51 -06:00
font-variant-ligatures: var(--code-font-variant-ligatures);
white-space: pre;
cursor: default;
2025-09-07 20:41:51 -06:00
padding: 0 4px;
2025-09-07 20:22:35 -06:00
text-wrap: nowrap;
overflow: hidden;
}
.combined-row {
display: flex;
}
2025-09-07 20:22:35 -06:00
.diff-any {
background-color: rgba(255, 255, 255, 0.03);
}
.address {
2025-09-07 20:22:35 -06:00
color: var(--line-number-foreground);
margin-right: 8px;
}
.replace {
color: var(--color-blue);
}
.delete {
color: var(--color-red);
}
.insert {
color: var(--color-green);
}