Skip to content

Commit

Permalink
Add progressbar color for class value in addition to browser values (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tilen1976 authored Apr 22, 2024
1 parent 1fe6c3c commit 7f06bed
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions src/datadoc/assets/progressbar_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,27 @@
background-color: #C3DCDC;
}

.progress-bar[value]{
background-color: #00824D;
}

#progress-bar-label{
position: absolute;
top: 145px;
left: 25%;
z-index: 1;
color: #162327;
color: white;
font-weight: 502;

}

progress::-webkit-progress-bar {
background-color: #C3DCDC;
}
progress::-webkit-progress-value {
background-color: #1A9D49;
}
}

progress::-webkit-progress-value {
background-color: #00824D;
}

progress[value]::-moz-progress-bar{
background-color: #1A9D49;
}
progress[value]::-moz-progress-bar{
background-color: #00824D;
}

0 comments on commit 7f06bed

Please sign in to comment.