about summary refs log tree commit diff
diff options
context:
space:
mode:
authorzsloan2021-08-17 03:07:18 +0000
committerzsloan2021-08-19 18:38:54 +0000
commite98ef60db6d0986360e6c8aa920241bbb268af8e (patch)
tree6ca106f6e530268ed89d7d3773d364f90d12fbde
parentcaf2c395f3aa2dc62236128a0db9f3243170db94 (diff)
downloadgenenetwork2-e98ef60db6d0986360e6c8aa920241bbb268af8e.tar.gz
Add some CSS changing the way the colorbox pop-up for adding covariates looks on the trait page
-rw-r--r--wqflask/wqflask/static/new/css/show_trait.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/wqflask/wqflask/static/new/css/show_trait.css b/wqflask/wqflask/static/new/css/show_trait.css
index 782dabc2..b0514e01 100644
--- a/wqflask/wqflask/static/new/css/show_trait.css
+++ b/wqflask/wqflask/static/new/css/show_trait.css
@@ -260,3 +260,33 @@ input.trait-value-input {
 div.inline-div {
   display: inline;
 }
+
+/* div.colorbox_border {
+  border: 1px solid grey;
+} */
+div#cboxContent {
+  /* box-shadow:
+  0 2.8px 2.2px rgba(0, 0, 0, 0.034),
+  0 6.7px 5.3px rgba(0, 0, 0, 0.048),
+  0 12.5px 10px rgba(0, 0, 0, 0.06),
+  0 22.3px 17.9px rgba(0, 0, 0, 0.072),
+  0 41.8px 33.4px rgba(0, 0, 0, 0.086),
+  0 100px 80px rgba(0, 0, 0, 0.12) */
+
+  padding: 10px 10px 5px 10px;
+
+  -moz-box-shadow: 3px 3px 5px #535353;
+  -webkit-box-shadow: 3px 3px 5px #535353;
+  box-shadow: 3px 3px 5px #535353;
+
+  -moz-border-radius: 6px 6px 6px 6px;
+  -webkit-border-radius: 6px;
+  border-radius: 6px 6px 6px 6px;
+
+  /* border: 2px solid grey; */
+}
+
+#cboxClose {
+  margin-right: 5px;
+  margin-bottom: 2px;
+}