webui: fix streams table

This commit is contained in:
Sergey Krashevich
2026-02-03 13:25:49 +03:00
parent c019924763
commit 0c91ca7113
+5 -2
View File
@@ -369,10 +369,13 @@
tbody tr { tbody tr {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
tbody td:first-child {
position: relative; position: relative;
} }
tbody tr::before { tbody td:first-child::before {
content: ''; content: '';
position: absolute; position: absolute;
left: 0; left: 0;
@@ -388,7 +391,7 @@
background: rgba(0, 217, 255, 0.05); background: rgba(0, 217, 255, 0.05);
} }
tbody tr:hover::before { tbody tr:hover td:first-child::before {
transform: scaleY(1); transform: scaleY(1);
} }