Merge pull request #266 from grafixeyehero/progress-bars

fix rounded progress bars
This commit is contained in:
Anthony Lavado
2019-04-29 23:52:58 -04:00
committed by GitHub
-6
View File
@@ -17,8 +17,6 @@ progress {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
-webkit-border-radius: .4em;
border-radius: .4em;
margin: 0;
background: #ccc !important
}
@@ -32,18 +30,14 @@ progress::-webkit-progress-bar {
}
progress::-moz-progress-bar {
border-radius: .4em;
background-color: #00a4dc
}
progress::-webkit-progress-value {
-webkit-border-radius: .4em;
border-radius: .4em;
background-color: #00a4dc
}
progress[aria-valuenow]:before {
-webkit-border-radius: .4em;
border-radius: .4em;
background-color: #00a4dc
}