aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/resources
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2013-08-07 21:06:03 -0700
committerPatrick Wendell <pwendell@gmail.com>2013-08-07 21:06:03 -0700
commit8c0d668468f068203e4aedaacd7ddd17b931a514 (patch)
tree54c012f24b5ba177051ba679a2cc7b65d28b308a /core/src/main/resources
parent73692f3cb9b75c8784c2347a8ed9a348026d2b3a (diff)
parent5133e4bebd47d8ae089f967689ecab551c2c5844 (diff)
downloadspark-8c0d668468f068203e4aedaacd7ddd17b931a514.tar.gz
spark-8c0d668468f068203e4aedaacd7ddd17b931a514.tar.bz2
spark-8c0d668468f068203e4aedaacd7ddd17b931a514.zip
Merge branch 'master' into bootstrap-design
Conflicts: core/src/main/scala/spark/ui/UIUtils.scala core/src/main/scala/spark/ui/jobs/IndexPage.scala core/src/main/scala/spark/ui/storage/RDDPage.scala
Diffstat (limited to 'core/src/main/resources')
-rw-r--r--core/src/main/resources/spark/ui/static/webui.css28
1 files changed, 28 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..fd2cbad004 100644
--- a/core/src/main/resources/spark/ui/static/webui.css
+++ b/core/src/main/resources/spark/ui/static/webui.css
@@ -47,3 +47,31 @@
padding-top: 7px;
padding-left: 4px;
}
+
+.table td {
+ vertical-align: middle !important;
+}
+
+.progress-completed .bar,
+.progress .bar-completed {
+ background-color: #b3def9;
+ background-image: -moz-linear-gradient(top, #addfff, #badcf2);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#addfff), to(#badcf2));
+ background-image: -webkit-linear-gradient(top, #addfff, #badcf2);
+ background-image: -o-linear-gradient(top, #addfff, #badcf2);
+ background-image: linear-gradient(to bottom, #addfff, #badcf2);
+ background-repeat: repeat-x;
+ filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffaddfff', endColorstr='#ffbadcf2', GradientType=0);
+}
+
+.progress-running .bar,
+.progress .bar-running {
+ background-color: #c2ebfa;
+ background-image: -moz-linear-gradient(top, #bdedff, #c7e8f5);
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bdedff), to(#c7e8f5));
+ background-image: -webkit-linear-gradient(top, #bdedff, #c7e8f5);
+ background-image: -o-linear-gradient(top, #bdedff, #c7e8f5);
+ background-image: linear-gradient(to bottom, #bdedff, #c7e8f5);
+ background-repeat: repeat-x;
+ filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffbdedff', endColorstr='#ffc7e8f5', GradientType=0);
+}