Fix: Prevent overflow on the progress bar

This commit is contained in:
lscambo13
2024-12-27 10:15:42 -08:00
parent 5347a360b9
commit 022552d620

View File

@@ -906,7 +906,7 @@ div[data-role=controlgroup] a.ui-btn-active {
} }
[dir="ltr"] .listItem:not(.actionSheetMenuItem)[data-type="Episode"] { [dir="ltr"] .listItem:not(.actionSheetMenuItem)[data-type="Episode"] {
padding: .5em 0.25em 0.5em 0.5em !important; padding: .5em 0.25em 0.5em 0.5em !important;
} }
.actionSheetContent { .actionSheetContent {
@@ -1244,16 +1244,17 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense>div:first-child {
progress::-moz-progress-bar, progress::-moz-progress-bar,
progress::-webkit-progress-value { progress::-webkit-progress-value {
background: var(--btnSubmitBorderColor) !important; background: var(--btnSubmitBorderColor) !important;
border-radius: var(--smallRadius) inherit var(--smallRadius) 0; border-radius: var(--smallRadius) inherit var(--smallRadius) 0;
} }
progress { progress {
background: var(--hoverGradient) !important; background: var(--hoverGradient) !important;
border: solid var(--lighterBorderColor) var(--borderWidth) !important; border: solid var(--lighterBorderColor) var(--borderWidth) !important;
border-radius: var(--smallRadius); border-radius: var(--smallRadius);
overflow: hidden;
} }
progress + span { progress+span {
color: var(--btnSubmitBorderColor) !important; color: var(--btnSubmitBorderColor) !important;
} }