You've already forked objdiff-web
mirror of
https://github.com/encounter/objdiff-web.git
synced 2026-03-30 11:32:18 -07:00
108 lines
1.7 KiB
CSS
108 lines
1.7 KiB
CSS
.instruction-list {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.instruction-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 0.5em;
|
|
height: var(--list-row-height);
|
|
}
|
|
|
|
.instruction-cell {
|
|
flex: 1 0 0;
|
|
font-family: var(--vscode-editor-font-family, monospace);
|
|
font-weight: var(--vscode-editor-font-weight, normal);
|
|
font-size: var(--font-size);
|
|
text-wrap: nowrap;
|
|
white-space: pre;
|
|
overflow: hidden;
|
|
padding-left: 0.5em;
|
|
}
|
|
|
|
.highlightable {
|
|
cursor: pointer;
|
|
}
|
|
.line-number {
|
|
color: var(--vscode-editorLineNumber-foreground);
|
|
}
|
|
.diff_any {
|
|
background-color: rgba(255, 255, 255, 0.02);
|
|
}
|
|
.diff_change {
|
|
color: #6d6dff;
|
|
}
|
|
.diff_add {
|
|
color: #45bd00;
|
|
}
|
|
.diff_remove {
|
|
color: #c82829;
|
|
}
|
|
.symbol {
|
|
color: light-dark(black, white);
|
|
}
|
|
|
|
.rotation0 {
|
|
color: light-dark(
|
|
/* hsv(0° 60% 80%) */
|
|
rgb(205, 82, 82),
|
|
magenta
|
|
);
|
|
}
|
|
.rotation1 {
|
|
color: light-dark(
|
|
/* hsv(40° 60% 80%) */
|
|
rgb(205, 164, 82),
|
|
cyan
|
|
);
|
|
}
|
|
.rotation2 {
|
|
color: light-dark(
|
|
/* hsv(80° 60% 80%) */
|
|
rgb(164, 205, 82),
|
|
rgb(0, 212, 0)
|
|
);
|
|
}
|
|
.rotation3 {
|
|
color: light-dark(
|
|
/* hsv(120° 60% 80%) */
|
|
rgb(82, 205, 82),
|
|
red
|
|
);
|
|
}
|
|
.rotation4 {
|
|
color: light-dark(
|
|
/* hsv(160° 60% 80%) */
|
|
rgb(82, 205, 164),
|
|
rgb(103, 106, 255)
|
|
);
|
|
}
|
|
.rotation5 {
|
|
color: light-dark(
|
|
/* hsv(200° 60% 80%) */
|
|
rgb(82, 164, 205),
|
|
lightpink
|
|
);
|
|
}
|
|
.rotation6 {
|
|
color: light-dark(
|
|
/* hsv(240° 60% 80%) */
|
|
rgb(82, 82, 205),
|
|
lightcyan
|
|
);
|
|
}
|
|
.rotation7 {
|
|
color: light-dark(
|
|
/* hsv(280° 60% 80%) */
|
|
rgb(164, 82, 205),
|
|
lightgreen
|
|
);
|
|
}
|
|
.rotation8 {
|
|
color: light-dark(
|
|
/* hsv(320° 60% 80%) */
|
|
rgb(205, 82, 164),
|
|
grey
|
|
);
|
|
}
|