aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/resources
diff options
context:
space:
mode:
authorKaren Feng <karenfeng.us@gmail.com>2013-08-06 16:33:05 -0700
committerKaren Feng <karenfeng.us@gmail.com>2013-08-06 16:33:05 -0700
commit8bc497fa10044e732d2912755b1f110d1682d740 (patch)
tree83c109b07358db48a4b7685bd029b70b89c787f6 /core/src/main/resources
parentca1903ea63e71706456c9bc19b22393c9d02c896 (diff)
downloadspark-8bc497fa10044e732d2912755b1f110d1682d740.tar.gz
spark-8bc497fa10044e732d2912755b1f110d1682d740.tar.bz2
spark-8bc497fa10044e732d2912755b1f110d1682d740.zip
Lightened color of progress bars
Diffstat (limited to 'core/src/main/resources')
-rw-r--r--core/src/main/resources/spark/ui/static/webui.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/core/src/main/resources/spark/ui/static/webui.css b/core/src/main/resources/spark/ui/static/webui.css
index f7537bb766..d918790187 100644
--- a/core/src/main/resources/spark/ui/static/webui.css
+++ b/core/src/main/resources/spark/ui/static/webui.css
@@ -47,3 +47,28 @@
padding-top: 7px;
padding-left: 4px;
}
+
+.progress-completed .bar,
+.progress .bar-completed {
+ background-color: #7ccde5;
+ background-image: -moz-linear-gradient(top, #7ccde5, #75c3d9);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#7ccde5), to(#75c3d9));
+ background-image: -webkit-linear-gradient(top, #7ccde5, #75c3d9);
+ background-image: -o-linear-gradient(top, #7ccde5, #75c3d9);
+ background-image: linear-gradient(to bottom, #7ccde5, #75c3d9);
+ background-repeat: repeat-x;
+ filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff7ccde5', endColorstr='#ff75c3d9', GradientType=0);
+}
+
+.progress-running .bar,
+.progress .bar-running {
+ background-color: #cdecf5;
+ background-image: -moz-linear-gradient(top, #cdecf5, #c2e4ee);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#cdecf5), to(#c2e4ee));
+ background-image: -webkit-linear-gradient(top, #cdecf5, #c2e4ee);
+ background-image: -o-linear-gradient(top, #cdecf5, #c2e4ee);
+ background-image: linear-gradient(to bottom, #cdecf5, #c2e4ee);
+ background-repeat: repeat-x;
+ filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffcdecf5', endColorstr='#ffc2e4ee', GradientType=0);
+}
+