Update background opacity for tab hover effects to enhance visibility

This commit is contained in:
mr. M
2025-01-28 17:02:02 +01:00
parent 02f1f52c2f
commit 34c9d808f8

View File

@@ -992,7 +992,7 @@
position: relative;
&::before {
background: light-dark(rgba(255, 255, 255, 0.75), rgba(68, 64, 64, 0.75));
background: light-dark(rgba(255, 255, 255, 0.85), rgba(68, 64, 64, 0.85));
margin: 2px;
border-radius: calc(var(--border-radius-medium) - 2px);
position: absolute;
@@ -1004,7 +1004,7 @@
}
&[selected]:hover .tab-background::before {
background: light-dark(rgba(255, 255, 255, 0.70), rgba(68, 64, 64, 0.70));
background: light-dark(rgba(255, 255, 255, 0.80), rgba(68, 64, 64, 0.80));
}
}
}