diff options
author | zsloan | 2020-10-20 15:20:30 -0500 |
---|---|---|
committer | zsloan | 2020-10-20 15:20:30 -0500 |
commit | 96ff375e1aa7ebcb2684b4edf473706c9e54e2fd (patch) | |
tree | 6b94fa03388991132f8ee23a6b544b8c595d0d15 | |
parent | 8c62055ad6108a14a11eb8a38b44eff44257b54e (diff) | |
download | genenetwork2-96ff375e1aa7ebcb2684b4edf473706c9e54e2fd.tar.gz |
Made class names consistently use - instead of _ in show_trait_edit_data.html
* wqflask/wqflask/templates/show_trait_edit_data.html - replaced underscores with -
-rw-r--r-- | wqflask/wqflask/templates/show_trait_edit_data.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/wqflask/wqflask/templates/show_trait_edit_data.html b/wqflask/wqflask/templates/show_trait_edit_data.html index a8ed91b1..e94a8d23 100644 --- a/wqflask/wqflask/templates/show_trait_edit_data.html +++ b/wqflask/wqflask/templates/show_trait_edit_data.html @@ -1,10 +1,10 @@ <div> {% for sample_type in sample_groups %} - <div style="padding-bottom: 10px;"> - <div style="display: inline; height: 40px;"> - <input type="text" id="{{ sample_type.sample_group_type }}_searchbox" class="form-control" style="width: 200px; display: inline; float: left; vertical-align: top;" placeholder="Search This Table For ..."> + <div class="sample-table-container"> + <div class="sample-table-search-container"> + <input type="text" id="{{ sample_type.sample_group_type }}_searchbox" class="form-control sample-table-search" placeholder="Search This Table For ..."> </div> - <div style="padding-left: 10px; display: inline;"> + <div class="sample-table-export-container"> <button class="btn btn-default export">Export <span class="glyphicon glyphicon-download-alt"></span></button> <select class="select optional span2 export_format"> <option value="excel">Excel</option> @@ -13,8 +13,8 @@ <input type="button" class="btn btn-success reset" value="Reset"> </div> </div> - <div id="export_code" style="width: 600px; display: none;"> - <pre style="padding-top: 0px; padding-bottom: 0px; height: 150px;"> + <div id="export_code" class="export-code-container" style=""> + <pre class="export-code_field"> <code> # read into R trait <- read.csv("{{ this_trait.display_name}}.csv", header = TRUE, comment.char = "#") @@ -28,10 +28,10 @@ trait = pd.read_csv("{{ this_trait.display_name}}.csv", header = 0, comment = "# {% set outer_loop = loop %} <div class="sample_group" style="width:{{ trait_table_width }};"> <div style="position: relative;"> - <div style="display: inline;"><h3 style="float: left;">{{ sample_type.header }}<span name="transform_text"></span></h3> + <div class="inline-div"><h3 style="float: left;">{{ sample_type.header }}<span name="transform_text"></span></h3> </div> <div id="table_container"> - <table class="table-hover table-striped cell-border" id="samples_{{ sample_type.sample_group_type }}" style="float: left; width:100%;"> + <table class="table-hover table-striped cell-border sample-table" id="samples_{{ sample_type.sample_group_type }}"> <tbody> <td colspan="100%" align="center"><br><b><font size="15">Loading...</font></b><br></td> </tbody> |