Fix #8013: Pinkify opt-pipeline view (#8016)

This commit is contained in:
Ofek
2025-08-09 20:59:49 +03:00
committed by GitHub
parent fbfcd52dd5
commit ce3e976acd

View File

@@ -161,7 +161,7 @@ textarea.form-control {
.card {
background-color: $lighter !important;
color: #212529 !important;
color: hsl(210, 11%, 15%) !important;
border-color: $dark;
}
@@ -196,6 +196,37 @@ textarea.form-control {
background-color: color.adjust($dark, $alpha: 0.8);
}
.opt-pipeline-body {
scrollbar-color: #e75480 #f0c0e0; // thumb color, track color
.passes-column {
color: #212529;
.passes-list div {
&.firstMachinePass {
&:before {
background: white;
}
}
&:hover,
&.active {
background: color.adjust(#f5f5f5, $lightness: 5%);
}
&.changed {
color: #148624;
}
}
}
.passes-column-resizer {
background-color: #f4f4f4;
transition: background-color 200ms ease;
&:hover {
background-color: #bbbbbb;
}
}
.monaco-placeholder {
border-left: 1px solid #d2d3d4;
}
}
.form-select {
background-color: #76a1c8 !important;
}