aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2018-02-17 18:03:34 +0000
committerJames Barnett <noreply@jamesbarnett.xyz>2018-02-17 18:03:34 +0000
commit2327e4e536e3be29ffd7af54ebba6ae24265c692 (patch)
tree1441aaa24076633c08fa05da4f17f202e6301af7 /index.html
parent6e21916395fac6861783c2b930b47242ac0f4c09 (diff)
downloadsql-plus-plus-2327e4e536e3be29ffd7af54ebba6ae24265c692.tar.xz
sql-plus-plus-2327e4e536e3be29ffd7af54ebba6ae24265c692.zip
WIP - Add basic unstyled static tabs. IPC needs work
Diffstat (limited to 'index.html')
-rw-r--r--index.html38
1 files changed, 12 insertions, 26 deletions
diff --git a/index.html b/index.html
index 0de4296..217c363 100644
--- a/index.html
+++ b/index.html
@@ -4,37 +4,23 @@
<meta charset="UTF-8">
<title>SQL++</title>
- <link rel="stylesheet" href="node_modules/codemirror/lib/codemirror.css"></link>
- <link rel="stylesheet" href="node_modules/codemirror/theme/dracula.css"></link>
- <link rel="stylesheet" href="node_modules/codemirror/addon/hint/show-hint.css"></link>
- <link rel="stylesheet" href="node_modules/jquery.tabulator/dist/css/tabulator.css"></link>
- <link rel="stylesheet" type="text/css" href="./styles/style.css"></link>
- <link rel="stylesheet" type="text/css" href="./styles/table-style.css"></link>
+ <link rel="stylesheet" href="node_modules/electron-tabs/electron-tabs.css"></link>
+ <style>
+ body {
+ margin: 0;
+ }
+ </style>
</head>
<body>
- <div class="flex-wrapper">
- <div class="row header">
- <input id="run-query" type="button" value="Run"></input>
- </div>
-
- <div class="row content">
- <div id="editor" class="editor-row split-row"></div>
-
- <div class="results-row split-row">
- <div id="result-table"></div>
- <div id="result-error"></div>
- </div>
- </div>
-
- <div class="row footer">
- <div id="execution-status" class="exec-idle">Idle</div>
- <div id="execution-time"></div>
- <div id="cursor-coords"></div>
- </div>
+ <div class="etabs-tabgroup">
+ <div class="etabs-tabs"></div>
+ <div class="etabs-buttons"></div>
</div>
+ <div class="etabs-views"></div>
+
<script>
- require("./renderer.js");
+ require("./instance-manager.js");
</script>
</body>
</html> \ No newline at end of file