Skip to content

Commit

Permalink
fix(feat: prevent content overflow in card)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lochipi committed Mar 31, 2024
1 parent 55d8db2 commit 7b4c3e2
Showing 1 changed file with 28 additions and 30 deletions.
58 changes: 28 additions & 30 deletions apps/Info.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,14 @@
<meta name="keywords" content="camicroscope, quip" />
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport'
content='width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no'>
<!-- common -->
<!-- <link rel='stylesheet' type='text/css' media='all' href='../css/style.css'/> -->
<!-- Check If we're logged in ok, otherwise, log in for us -->
<meta name='viewport' content='width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no'>

<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">

<script src='../common/authChecker.js'></script>
<script>
__auth_check(1)
</script>

<script src='../core/Store.js'></script>
<script src='../common/util.js'></script>
<script src='../common/ajv.js'></script>
<script src='../components/loading/loading.js'></script>
<script src="./loader/loader.js"></script>
<script src="./loader/chunked_upload.js"></script>
<title>CaMicroscope Data Table</title>

<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>

<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
Expand Down Expand Up @@ -107,21 +91,24 @@ <h4 class="modal-title" id="title-of-dialog">Slide Information Details</h4>
<div class="modal-body">
<div>
<div id="content">
<div class="alert alert-info" role="alert">

<h4 style="text-align:center">Synopsis</h4><hr style="margin-top:0px;">
<table id="detailtable">
</table>
<div class="card alert alert-info" role="alert">
<div class="card-body">
<h4 class="card-title text-center">Synopsis</h4><hr class="mt-0">
<div class="table-responsive">
<table id="detailtable">
</table>
</div>
</div>
</div>
<div class="alert alert-info" role="alert">

<h4 style="text-align:center">Annotations</h4><hr style="margin-top:0px;">
<h4 style="text-align:center">Annotations</h4><hr class="mt-0">
<table id="annotationtable">
</table>
</div>
<div class="alert alert-info" role="alert">

<h4 style="text-align:center">Heatmaps</h4><hr style="margin-top:0px;">
<h4 style="text-align:center">Heatmaps</h4><hr class="mt-0">
<table id="heatmaptable">
</table>
</div>
Expand Down Expand Up @@ -153,10 +140,6 @@ <h3 class="text-center h3 mb-2" style="margin-top:8px;margin-bottom:10px;">Infor
<input id="search-table" type="text" class="form-control" placeholder="Search">
</div>





<div class="table-responsive" id="summary">
<table class="table table-striped">
<thead id="infothead"></thead>
Expand All @@ -170,7 +153,22 @@ <h3 class="text-center h3 mb-2" style="margin-top:8px;margin-bottom:10px;">Infor
<p class="p">Copyright © 2021 caMicroscope</p>
</footer>
</div>

<!-- script tags -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>

<script src='../common/authChecker.js'></script>

<script>
__auth_check(1)
</script>

<script src='../core/Store.js'></script>
<script src='../common/util.js'></script>
<script src='../common/ajv.js'></script>
<script src='../components/loading/loading.js'></script>
<script src="./loader/loader.js"></script>
<script src="./loader/chunked_upload.js"></script>
</body>
<script>

Expand Down

0 comments on commit 7b4c3e2

Please sign in to comment.