diff options
| author | Mark Otto <[email protected]> | 2014-06-19 18:14:56 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-06-19 18:14:56 -0700 |
| commit | 8bd4163ad463a0f208a55a8f64ba7fc6cb826282 (patch) | |
| tree | ba4ece1af1ab6cca0c2b4347f96d42c1b47d6522 /dist/css/bootstrap-theme.css | |
| parent | 856bc8694c7eed0bd5499daf733754da7c6ce977 (diff) | |
| download | bootstrap-8bd4163ad463a0f208a55a8f64ba7fc6cb826282.tar.xz bootstrap-8bd4163ad463a0f208a55a8f64ba7fc6cb826282.zip | |
fixes #13881: restore existing striped progress bar behavior with theme styles
Diffstat (limited to 'dist/css/bootstrap-theme.css')
| -rw-r--r-- | dist/css/bootstrap-theme.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dist/css/bootstrap-theme.css b/dist/css/bootstrap-theme.css index 17e8a77d8..7fe3b366d 100644 --- a/dist/css/bootstrap-theme.css +++ b/dist/css/bootstrap-theme.css @@ -354,6 +354,11 @@ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); background-repeat: repeat-x; } +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} .list-group { border-radius: 4px; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); |
