[openaire-theme | master]: [NEW] Added file progress.css in structure | import.css: Import structure/progress.css.

This commit is contained in:
Konstantina Galouni 2022-04-28 16:47:31 +03:00
parent 9bd52b6198
commit d45f01647f
2 changed files with 25 additions and 0 deletions

1
css/import.css vendored
View File

@ -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";

View File

@ -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;
}