2025-09-07 20:05:56 -06:00
|
|
|
.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);
|
2025-09-07 20:05:56 -06:00
|
|
|
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;
|
2025-09-07 20:05:56 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.combined-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-07 20:22:35 -06:00
|
|
|
.diff-any {
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.03);
|
2025-09-07 20:05:56 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.address {
|
2025-09-07 20:22:35 -06:00
|
|
|
color: var(--line-number-foreground);
|
2025-09-07 20:05:56 -06:00
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replace {
|
|
|
|
|
color: var(--color-blue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.delete {
|
|
|
|
|
color: var(--color-red);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.insert {
|
|
|
|
|
color: var(--color-green);
|
|
|
|
|
}
|