1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-09-03 02:42:39 +02:00

Progress module tweaks

This commit is contained in:
Angelos Chalaris
2016-11-25 11:56:27 +02:00
parent 3285776d13
commit 7c12706dbe
5 changed files with 53 additions and 16 deletions

12
dist/mini-default.css vendored
View File

@@ -1148,11 +1148,11 @@ progress {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 100%;
height: 14px;
width: 100%;
border: 0;
border-radius: 1px;
margin: 2px 10px;
margin: 2px auto;
box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1), 0 0.5px 0.5px rgba(0, 0, 0, 0.15);
background: #eeeeee;
color: #01579b; }
@@ -1171,6 +1171,11 @@ progress {
progress[value="1000"]::-moz-progress-bar {
border-radius: 1px; }
@supports (width: calc(100% - 2*10px)) or (width: -webkit-calc(100% - 2*10px)) {
progress {
width: -webkit-calc(100% - 2*10px);
width: calc(100% - 2*10px);
margin: 2px 10px; } }
@-webkit-keyframes spinner-donut-anim {
0% {
-webkit-transform: rotate(0deg); }
@@ -1373,7 +1378,8 @@ progress.tertiary {
progress.nano {
height: 2px;
margin: 0 auto 1px;
width: 100%;
margin: 0 auto;
border-radius: 0; }
progress.nano::-webkit-progress-value {
border-top-left-radius: 0;