bootstrap-progressbar-2.0.1.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /*! bootstrap-progressbar v0.9.0 | Copyright (c) 2012-2015 Stephan Groß | MIT license | http://www.minddust.com */
  2. .clearfix {
  3. *zoom: 1;
  4. }
  5. .clearfix:before,
  6. .clearfix:after {
  7. display: table;
  8. content: "";
  9. }
  10. .clearfix:after {
  11. clear: both;
  12. }
  13. @-webkit-keyframes progress-bar-stripes {
  14. from {
  15. background-position: 0 0;
  16. }
  17. to {
  18. background-position: 40px 0;
  19. }
  20. }
  21. @-moz-keyframes progress-bar-stripes {
  22. from {
  23. background-position: 0 0;
  24. }
  25. to {
  26. background-position: 40px 0;
  27. }
  28. }
  29. @keyframes progress-bar-stripes {
  30. from {
  31. background-position: 0 0;
  32. }
  33. to {
  34. background-position: 40px 0;
  35. }
  36. }
  37. .progress {
  38. overflow: hidden;
  39. height: 18px;
  40. margin-bottom: 18px;
  41. background-color: #f7f7f7;
  42. background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  43. background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
  44. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  45. background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  46. background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  47. background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
  48. background-repeat: repeat-x;
  49. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
  50. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  51. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  52. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  53. -webkit-border-radius: 4px;
  54. -moz-border-radius: 4px;
  55. border-radius: 4px;
  56. }
  57. .progress .bar {
  58. width: 0%;
  59. height: 18px;
  60. color: #ffffff;
  61. font-size: 12px;
  62. text-align: center;
  63. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  64. background-color: #0e90d2;
  65. background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  66. background-image: -ms-linear-gradient(top, #149bdf, #0480be);
  67. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  68. background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  69. background-image: -o-linear-gradient(top, #149bdf, #0480be);
  70. background-image: linear-gradient(top, #149bdf, #0480be);
  71. background-repeat: repeat-x;
  72. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
  73. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  74. -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  75. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  76. -webkit-box-sizing: border-box;
  77. -moz-box-sizing: border-box;
  78. box-sizing: border-box;
  79. -webkit-transition: width 0.6s ease;
  80. -moz-transition: width 0.6s ease;
  81. -ms-transition: width 0.6s ease;
  82. -o-transition: width 0.6s ease;
  83. transition: width 0.6s ease;
  84. }
  85. .progress-striped .bar {
  86. background-color: #62c462;
  87. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  88. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  89. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  90. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  91. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  92. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  93. -webkit-background-size: 40px 40px;
  94. -moz-background-size: 40px 40px;
  95. -o-background-size: 40px 40px;
  96. background-size: 40px 40px;
  97. }
  98. .progress.active .bar {
  99. -webkit-animation: progress-bar-stripes 2s linear infinite;
  100. -moz-animation: progress-bar-stripes 2s linear infinite;
  101. animation: progress-bar-stripes 2s linear infinite;
  102. }
  103. .progress-danger .bar {
  104. background-color: #dd514c;
  105. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  106. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  107. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  108. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  109. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  110. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  111. background-repeat: repeat-x;
  112. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  113. }
  114. .progress-danger.progress-striped .bar {
  115. background-color: #ee5f5b;
  116. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  117. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  118. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  119. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  120. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  121. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  122. }
  123. .progress-success .bar {
  124. background-color: #5eb95e;
  125. background-image: -moz-linear-gradient(top, #62c462, #57a957);
  126. background-image: -ms-linear-gradient(top, #62c462, #57a957);
  127. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  128. background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  129. background-image: -o-linear-gradient(top, #62c462, #57a957);
  130. background-image: linear-gradient(top, #62c462, #57a957);
  131. background-repeat: repeat-x;
  132. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
  133. }
  134. .progress-success.progress-striped .bar {
  135. background-color: #62c462;
  136. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  137. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  138. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  139. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  140. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  141. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  142. }
  143. .progress-info .bar {
  144. background-color: #4bb1cf;
  145. background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  146. background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
  147. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  148. background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  149. background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  150. background-image: linear-gradient(top, #5bc0de, #339bb9);
  151. background-repeat: repeat-x;
  152. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
  153. }
  154. .progress-info.progress-striped .bar {
  155. background-color: #5bc0de;
  156. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  157. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  158. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  159. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  160. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  161. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  162. }
  163. .progress {
  164. position: relative;
  165. }
  166. .progress .bar {
  167. position: absolute;
  168. overflow: hidden;
  169. line-height: 18px;
  170. }
  171. .progress .progressbar-back-text {
  172. position: absolute;
  173. width: 100%;
  174. height: 100%;
  175. font-size: 12px;
  176. line-height: 18px;
  177. text-align: center;
  178. }
  179. .progress .progressbar-front-text {
  180. display: block;
  181. width: 100%;
  182. font-size: 12px;
  183. line-height: 18px;
  184. text-align: center;
  185. }
  186. .progress.right .bar {
  187. right: 0;
  188. }
  189. .progress.right .progressbar-front-text {
  190. position: absolute;
  191. right: 0;
  192. }
  193. .progress.vertical {
  194. width: 18px;
  195. height: 100%;
  196. float: left;
  197. margin-right: 18px;
  198. background-color: #f7f7f7;
  199. background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  200. background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
  201. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  202. background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  203. background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  204. background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
  205. background-repeat: repeat-x;
  206. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
  207. background-repeat: repeat;
  208. }
  209. .progress.vertical.bottom {
  210. position: relative;
  211. }
  212. .progress.vertical.bottom .progressbar-front-text {
  213. position: absolute;
  214. bottom: 0;
  215. }
  216. .progress.vertical .bar {
  217. width: 100%;
  218. height: 0;
  219. -webkit-transition: height 0.6s ease;
  220. -moz-transition: height 0.6s ease;
  221. -ms-transition: height 0.6s ease;
  222. -o-transition: height 0.6s ease;
  223. transition: height 0.6s ease;
  224. background-repeat: repeat;
  225. }
  226. .progress.vertical.bottom .bar {
  227. position: absolute;
  228. bottom: 0;
  229. }
  230. .progress-danger.vertical .bar,
  231. .progress.vertical .bar-danger {
  232. background-color: #dd514c;
  233. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  234. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  235. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  236. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  237. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  238. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  239. background-repeat: repeat-x;
  240. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  241. background-repeat: repeat;
  242. }
  243. .progress-danger.progress-striped.vertical .bar,
  244. .progress.progress-striped.vertical .bar-danger {
  245. background-color: #ee5f5b;
  246. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  247. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  248. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  249. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  250. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  251. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  252. }
  253. .progress-success.vertical .bar,
  254. .progress.vertical .bar-success {
  255. background-color: #5eb95e;
  256. background-image: -moz-linear-gradient(top, #62c462, #57a957);
  257. background-image: -ms-linear-gradient(top, #62c462, #57a957);
  258. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  259. background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  260. background-image: -o-linear-gradient(top, #62c462, #57a957);
  261. background-image: linear-gradient(top, #62c462, #57a957);
  262. background-repeat: repeat-x;
  263. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
  264. background-repeat: repeat;
  265. }
  266. .progress-success.progress-striped.vertical .bar,
  267. .progress.progress-striped.vertical .bar-success {
  268. background-color: #62c462;
  269. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  270. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  271. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  272. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  273. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  274. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  275. }
  276. .progress-info.vertical .bar,
  277. .progress.vertical .bar-info {
  278. background-color: #4bb1cf;
  279. background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  280. background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
  281. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  282. background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  283. background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  284. background-image: linear-gradient(top, #5bc0de, #339bb9);
  285. background-repeat: repeat-x;
  286. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
  287. background-repeat: repeat;
  288. }
  289. .progress-info.progress-striped.vertical .bar,
  290. .progress.progress-striped.vertical .bar-info {
  291. background-color: #5bc0de;
  292. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  293. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  294. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  295. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  296. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  297. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  298. }
  299. .progress-warning.vertical .bar,
  300. .progress.vertical .bar-warning {
  301. background-color: #faa732;
  302. background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  303. background-image: -ms-linear-gradient(top, #fbb450, #f89406);
  304. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  305. background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  306. background-image: -o-linear-gradient(top, #fbb450, #f89406);
  307. background-image: linear-gradient(top, #fbb450, #f89406);
  308. background-repeat: repeat-x;
  309. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
  310. background-repeat: repeat;
  311. }
  312. .progress-warning.progress-striped.vertical .bar,
  313. .progress.progress-striped.vertical .bar-warning {
  314. background-color: #fbb450;
  315. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  316. background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  317. background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  318. background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  319. background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  320. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  321. }