From 08c76380cec2cc125609ae02f5eb65cd271345f1 Mon Sep 17 00:00:00 2001 From: Zachary Kain Date: Tue, 12 Feb 2013 12:41:50 -0500 Subject: [PATCH] remove gradient code, doesn't add much and looks cool w/out it --- styles/app/index.styl | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/styles/app/index.styl b/styles/app/index.styl index ede6756464..fcd8e94405 100644 --- a/styles/app/index.styl +++ b/styles/app/index.styl @@ -106,26 +106,23 @@ progress::-webkit-progress-value { transition 0.25s linear } +.health progress::-moz-progress-bar { + border-right: 1px solid #888 + background:#dd514c; +} + .health progress::-webkit-progress-value { border-right: 1px solid #666 background:#dd514c; - background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35); - background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35)); - background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35); - background-image:-o-linear-gradient(top,#ee5f5b,#c43c35); - background-image:linear-gradient(to bottom,#ee5f5b,#c43c35); - background-repeat:repeat-x; } +.exp progress::-moz-progress-bar { + border-right: 1px solid #888 + background:#faa732; +} .exp progress::-webkit-progress-value { border-right: 1px solid #888 background:#faa732; - background-image:-moz-linear-gradient(top,#fbb450,#f89406); - background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406)); - background-image:-webkit-linear-gradient(top,#fbb450,#f89406); - background-image:-o-linear-gradient(top,#fbb450,#f89406); - background-image:linear-gradient(to bottom,#fbb450,#f89406); - background-repeat:repeat-x; }