[openaire-theme | master]: [NEW] Added file progress.css in structure | import.css: Import structure/progress.css.
This commit is contained in:
parent
9bd52b6198
commit
d45f01647f
|
@ -18,6 +18,7 @@
|
|||
@import "structure/navbar.css";
|
||||
@import "structure/offcanvas.css";
|
||||
@import "structure/pill.css";
|
||||
@import "structure/progress.css";
|
||||
@import "structure/search-input.css";
|
||||
@import "structure/shadow.css";
|
||||
@import "structure/slider.css";
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
:root {
|
||||
--progress-background-color: var(--secondary-color);
|
||||
}
|
||||
|
||||
/* Progress */
|
||||
.uk-progress {
|
||||
height: 16px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/*firefox*/
|
||||
.uk-progress::-moz-progress-bar {
|
||||
background: var(--progress-background-color) none !important;
|
||||
}
|
||||
|
||||
/*chrome*/
|
||||
.uk-progress::-webkit-progress-value {
|
||||
background: var(--progress-background-color) none !important;
|
||||
}
|
||||
|
||||
/*internet explore & edge*/
|
||||
.uk-progress::-ms-fill {
|
||||
background: var(--progress-background-color) none !important;
|
||||
}
|
Loading…
Reference in New Issue