Skip to content

Commit 12406cc

Browse files
committed
improving some GUI stuff - missing lines
1 parent 0d6788e commit 12406cc

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

qiita_pet/static/js/qiita.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,14 @@ function delete_analysis(aname, analysis_id) {
6161
function show_hide_process_list() {
6262
if ($("#qiita-main").width() == $("#qiita-main").parent().width()) {
6363
$("#qiita-main").width("76%");
64+
$("#user-studies-table").width("76%");
65+
$("#studies-table").width("76%");
6466
$("#qiita-processing").width("24%");
6567
$("#qiita-processing").show();
6668
} else {
6769
$("#qiita-main").width("100%");
70+
$("#user-studies-table").width("100%");
71+
$("#studies-table").width("100%");
6872
$("#qiita-processing").width("0%");
6973
$("#qiita-processing").hide();
7074
}

qiita_pet/templates/sitebase.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ <h6>
486486
{% end %}
487487

488488
<!-- all templates should override this portion to present their main content -->
489-
<div id="template-content" class="container-fluid" style="width:98%">
489+
<div id="template-content" class="container-fluid" style="width:97%">
490490
{% block content %}{% end %}
491491
</div>
492492

@@ -514,7 +514,7 @@ <h1>This site only works with the following browsers</h1>
514514
</div>
515515

516516
<div id="qiita-processing" class="pre-scrollable" style="max-height: 100%">
517-
<div id="processing-jobs-table" style="padding: 5px 5px; background-color: #DDD";">
517+
<div id="processing-jobs-table" style="padding: 5px 5px;">
518518
<h3>Processing Jobs</h3>
519519
Search: <input v-model="search">
520520
<hr>

0 commit comments

Comments
 (0)