mirror of
https://github.com/lscambo13/ElegantFin.git
synced 2025-09-18 12:40:16 +00:00
Fix: Prevent overflow on the progress bar
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
Reference in New Issue
Block a user