2026-05-19-23-47-31 优化逆向分割映射视图

This commit is contained in:
2026-05-19 23:56:24 +08:00
parent f730a1c48b
commit 2e04e2d5f9
6 changed files with 671 additions and 10 deletions

View File

@@ -59,3 +59,60 @@
.dicom-range-input:active::-moz-range-thumb {
cursor: grabbing;
}
.mapping-slice-input {
appearance: none;
-webkit-appearance: none;
background: transparent;
height: 100%;
inset: 0;
position: absolute;
width: 100%;
}
.mapping-slice-input:focus {
outline: none;
}
.mapping-slice-input::-webkit-slider-runnable-track {
background: transparent;
border: 0;
height: 8px;
}
.mapping-slice-input::-webkit-slider-thumb {
appearance: none;
-webkit-appearance: none;
background: #22d3ee;
border: 3px solid #0f172a;
border-radius: 9999px;
box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.16), 0 8px 18px rgba(8, 47, 73, 0.45);
cursor: grab;
height: 22px;
margin-top: -7px;
width: 22px;
}
.mapping-slice-input::-moz-range-track {
background: transparent;
border: 0;
height: 8px;
}
.mapping-slice-input::-moz-range-thumb {
background: #22d3ee;
border: 3px solid #0f172a;
border-radius: 9999px;
box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.16), 0 8px 18px rgba(8, 47, 73, 0.45);
cursor: grab;
height: 16px;
width: 16px;
}
.mapping-slice-input:active::-webkit-slider-thumb {
cursor: grabbing;
}
.mapping-slice-input:active::-moz-range-thumb {
cursor: grabbing;
}