summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgebele <gebele@in-silico.ch>2019-07-05 11:48:24 +0000
committergebele <gebele@in-silico.ch>2019-07-05 11:48:24 +0000
commit4793ee48de2535aa4f0ed5ab596a1bcb751c42c2 (patch)
tree8c29cfaed718743f1e42a54f018308564fca841c
parent86a45822c29cef7fb84871416427f96782e4ecf5 (diff)
links for ppv and npv;fixed overflow in modal
-rw-r--r--views/model_details.haml8
-rw-r--r--views/style.scss7
2 files changed, 10 insertions, 5 deletions
diff --git a/views/model_details.haml b/views/model_details.haml
index c95b363..8faf785 100644
--- a/views/model_details.haml
+++ b/views/model_details.haml
@@ -66,8 +66,12 @@
%td
%a{:href=>"https://en.wikipedia.org/wiki/Sensitivity_and_specificity", :rel=>"external"}
True #{av[1] =~ /^non/ ? "negative" : "positive"} rate
- %td #{av[0] =~ /^non/ ? "Negative" : "Positive"} predictiv value
- %td #{av[1] =~ /^non/ ? "Negative" : "Positive"} predictiv value
+ %td
+ %a{:href=>"https://en.wikipedia.org/wiki/Positive_and_negative_predictive_values", :rel=>"external"}
+ #{av[0] =~ /^non/ ? "Negative" : "Positive"} predictiv value
+ %td
+ %a{:href=>"https://en.wikipedia.org/wiki/Positive_and_negative_predictive_values", :rel=>"external"}
+ #{av[1] =~ /^non/ ? "Negative" : "Positive"} predictiv value
- keys.each_with_index do |key,idx|
%tr
/ keys
diff --git a/views/style.scss b/views/style.scss
index 52be743..e6f6100 100644
--- a/views/style.scss
+++ b/views/style.scss
@@ -66,9 +66,6 @@ ul.share-buttons{
margin-top:3em;
}
.single-batch{
- width: 100%;
-}
-.single-batch{
table-layout: fixed;
width: 100%;
}
@@ -99,3 +96,7 @@ supporters{
white-space: nowrap;
width: 1%;
}
+
+.modal-body p {
+ word-wrap: break-word;
+}