diff options
| author | Mark Otto <[email protected]> | 2014-03-04 16:55:15 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-03-04 16:55:15 -0800 |
| commit | 24de9b099438c09236b2066333744e3995cd88ab (patch) | |
| tree | c1f5213cf22288df74f4bf8d74e86b0656096ff3 /dist/css/bootstrap.css | |
| parent | 13ed379767d19040c98fc23bd9b5cdb84e66474b (diff) | |
| download | bootstrap-24de9b099438c09236b2066333744e3995cd88ab.tar.xz bootstrap-24de9b099438c09236b2066333744e3995cd88ab.zip | |
Fixes #12848: Account for and document progress bars at 0-3%
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 86aafe8ce..cf7bb49b2 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4590,6 +4590,17 @@ a.thumbnail.active { -webkit-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } +.progress-bar[aria-valuenow="1"], +.progress-bar[aria-valuenow="2"] { + min-width: 30px; +} +.progress-bar[aria-valuenow="0"] { + min-width: 30px; + color: #999; + background-color: transparent; + background-image: none; + box-shadow: none; +} .progress-bar-success { background-color: #5cb85c; } |
