Fix: Progress bar styling was not applying correctly on Chromium-based browsers
This commit is contained in:
parent
165cf7634a
commit
651ceacb48
1 changed files with 8 additions and 4 deletions
|
|
@ -1242,7 +1242,11 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense>div:first-child {
|
|||
border-color: var(--dimTextColor) !important;
|
||||
}
|
||||
|
||||
progress::-moz-progress-bar,
|
||||
::-moz-progress-bar {
|
||||
background: var(--btnSubmitBorderColor) !important;
|
||||
border-radius: var(--smallRadius) inherit var(--smallRadius) 0;
|
||||
}
|
||||
|
||||
::-webkit-progress-value {
|
||||
background: var(--btnSubmitBorderColor) !important;
|
||||
border-radius: var(--smallRadius) inherit var(--smallRadius) 0;
|
||||
|
|
@ -1250,12 +1254,12 @@ progress::-moz-progress-bar,
|
|||
|
||||
progress,
|
||||
::-webkit-progress-bar {
|
||||
background: var(--hoverGradient) !important;
|
||||
border: solid var(--lighterBorderColor) var(--borderWidth) !important;
|
||||
background: var(--darkerGradientPoint) !important;
|
||||
border: solid var(--borderColor) var(--borderWidth) !important;
|
||||
border-radius: var(--smallRadius);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
progress+span {
|
||||
color: var(--btnSubmitBorderColor) !important;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue