summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/batch.haml7
-rw-r--r--views/layout.haml2
-rw-r--r--views/style.scss31
3 files changed, 32 insertions, 8 deletions
diff --git a/views/batch.haml b/views/batch.haml
index 7f6ddb7..e532e9d 100644
--- a/views/batch.haml
+++ b/views/batch.haml
@@ -29,16 +29,11 @@
var aClient = new HttpClient();
aClient.get(uri, function(res) {
var response = JSON.parse(res);
- if (model_id == "Cramer"){
- $("img.circle").show();
- }else{
- progress(response['percent'],id);
- }
+ progress(response['percent'],id);
if (response['percent'] == 100){
window.clearInterval(markers[id]);
$("a#downbutton_"+id).removeClass("disabled");
$("a#detailsbutton_"+id).removeClass("disabled");
- $("img.circle").hide();
};
});
};
diff --git a/views/layout.haml b/views/layout.haml
index 9b13e2f..647282c 100644
--- a/views/layout.haml
+++ b/views/layout.haml
@@ -10,12 +10,14 @@
%link{:rel=>'stylesheet', :href=>"#{'/css/theme.default.min.css'}"}
%link{:rel=>'stylesheet', :href=>"#{'/css/theme.bootstrap.min.css'}"}
%link{ :href=>"/style.css", :rel=>"stylesheet"}
+ %link{:href=>"/stylesheets/pagination.css", :rel=>"stylesheet"}
%link{ :href=>"/stylesheets/jquery-ui.css", :rel=>"stylesheet"}
%script{:src=>"/javascripts/jquery-1.11.2.min.js"}
%script{:src=>"/javascripts/bootstrap.min.js"}
%script{:src=>"/javascripts/jquery.tablesorter.min.js"}
%script{:src=>"/javascripts/jquery.tablesorter.widgets.js"}
%script{:src=>"/javascripts/lazar-gui.js"}
+ %script{:src=>"/javascripts/pagination.min.js"}
%script{:src=>"/javascripts/google_analytics_lazar.js"}
%body
%noscript
diff --git a/views/style.scss b/views/style.scss
index a23bb5d..fc6f8f2 100644
--- a/views/style.scss
+++ b/views/style.scss
@@ -26,6 +26,10 @@
}
body {
background-color:#E7E7E7;
+
+ a {
+ color: inherit;
+ }
}
table.table-borderless tbody tr td{
border-top: none;
@@ -41,7 +45,7 @@ h4.head-back, h5.head-back{
}
li a {
- //height: 7em;
+ height: 7em;
}
}
img {
@@ -89,7 +93,30 @@ supporters{
margin: 1em;
}
}
-
+.csv.btn{
+ width: 100%;
+ height: 30px;
+}
+.dlwait{
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+.single-batch{
+ width: 100%;
+}
+.single-batch{
+ table-layout: fixed;
+ width: 100%;
+}
+tr.hide-top > td {
+ border-top: 0px !important;
+}
.footer{
margin-top:3em;
}
+.storage-list {
+ height: 400px;
+ overflow-y: auto;
+ overflow-x: auto;
+}