Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved settings and cleaned up the CSS #148

Merged
merged 9 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 9 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@
</head>

<body class="sdfv">
<div class="w3-sidebar w3-bar-block w3-card w3-animate-right"
style="display:none;right:0;" id="sidebar">
<div class="w3-sidebar" style="display:none;right:0;" id="sidebar">
<div class="dragbar" id="dragbar"></div>
<div class="sidebar-inner">
<button id="menuclose" class="w3-bar-item w3-button w3-large">
<button id="menuclose" class="w3-sidebar-close">
Close &times;
</button>
<h3 id="sidebar-header">
Expand All @@ -30,27 +29,27 @@ <h3 id="sidebar-header">
</div>
</div>
<div class="container-fluid" id="header-container">
<div class="row g-2">
<div class="row g-2 mb-2">
<div class="col-auto">
<input type="file" id="sdfg-file-input"
accept=".sdfg,.json,.sdfgz,.sdfg.gz"
class="form-control form-control-sm">
</div>
<div class="col-auto">
<button class="btn btn-sm btn-light btn-sdfv-light" id="reload">
<button class="btn btn-sm btn-light" id="reload">
Refresh
</button>
</div>
<div class="col-auto">
<button class="btn btn-sm btn-light btn-sdfv-light" id="outline">
<button class="btn btn-sm btn-light" id="outline">
SDFG Outline
</button>
</div>
<div class="col-auto">
<input type="file" accept=".json" id="instrumentation-report-file-input"
style="display: none;">
<button id="load-instrumentation-report-btn"
class="btn btn-sm btn-light btn-sdfv-light"
class="btn btn-sm btn-light"
onclick="document.getElementById('instrumentation-report-file-input').click();">
Load Instrumentation Report
</button>
Expand All @@ -61,7 +60,7 @@ <h3 id="sidebar-header">
<div class="input-group">
<input id="search" type="text" class="form-control form-control-sm"
placeholder="Search in graph elements">
<button id="search-btn" class="btn btn-sm btn-light btn-sdfv-light">
<button id="search-btn" class="btn btn-sm btn-light">
Search
</button>
</div>
Expand All @@ -76,7 +75,7 @@ <h3 id="sidebar-header">
</div>
<div class="col-auto">
<div class="dropdown">
<button class="btn btn-sm btn-light btn-sdfv-light dropdown-toggle" type="button"
<button class="btn btn-sm btn-light dropdown-toggle" type="button"
data-bs-toggle="dropdown">
Advanced Search
</button>
Expand All @@ -95,7 +94,7 @@ <h3 id="sidebar-header">
}
return false;
};</textarea>
<button id="advsearch-btn" class="btn btn-light btn-sdfv-light">
<button id="advsearch-btn" class="btn btn-light">
Search
</button>
</form>
Expand Down
112 changes: 56 additions & 56 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spcl/sdfv",
"version": "1.2.6",
"version": "1.2.7",
"description": "A standalone viewer for SDFGs",
"homepage": "https://github.com/spcl/dace-webclient",
"main": "out/index.js",
Expand Down Expand Up @@ -78,8 +78,7 @@
"coffeequate": "^1.3.0",
"dagre": "^0.8.5",
"jquery": "^3.6.3",
"material-icons": "^1.13.12",
"material-symbols": "^0.14.3",
"material-symbols": "^0.19.0",
"mathjs": "^12.2.1",
"monaco-editor": "^0.45.0",
"patch-package": "^8.0.0",
Expand Down
Loading
Loading