Fix progress bar color on firefox
This commit is contained in:
parent
757e5e7906
commit
5337c7dd2d
|
@ -74,24 +74,17 @@
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.uploadFile-progressBar[value]::-moz-progress-bar,
|
||||||
.uploadFile-progressBar[value]::-webkit-progress-value {
|
.uploadFile-progressBar[value]::-webkit-progress-value {
|
||||||
border-radius: var(--codex-border-radius);
|
border-radius: var(--codex-border-radius);
|
||||||
background-color: var(--codex-color-primary);
|
background-color: var(--codex-color-primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.uploadFile-progressBar[aria-invalid]::-moz-progress-bar,
|
||||||
.uploadFile-progressBar[aria-invalid]::-webkit-progress-value {
|
.uploadFile-progressBar[aria-invalid]::-webkit-progress-value {
|
||||||
background-color: rgb(var(--codex-color-error));
|
background-color: rgb(var(--codex-color-error));
|
||||||
}
|
}
|
||||||
|
|
||||||
.uploadFile-progressBar[aria-invalid]::-moz-progress-bar {
|
|
||||||
border-radius: var(--codex-border-radius);
|
|
||||||
background-color: var(--codex-color-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.uploadFile-progressBar[value]::-moz-progress-bar {
|
|
||||||
background-color: rgb(var(--codex-color-error));
|
|
||||||
}
|
|
||||||
|
|
||||||
.uploadFile-filename {
|
.uploadFile-filename {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
Loading…
Reference in New Issue