aboutsummaryrefslogtreecommitdiff
path: root/styles
diff options
context:
space:
mode:
authorJames Barnett <james.barnett@fivium.co.uk>2018-02-21 21:42:55 +0000
committerGitHub <noreply@github.com>2018-02-21 21:42:55 +0000
commit11e98009906651acb110cd3b1625a771b1e2f472 (patch)
treede0a90c201f1949e701c969b2a3a94d7015f4006 /styles
parent6e21916395fac6861783c2b930b47242ac0f4c09 (diff)
parent703f78867653ed9c53a745f9808eb96ae8a89dc7 (diff)
downloadsql-plus-plus-11e98009906651acb110cd3b1625a771b1e2f472.tar.xz
sql-plus-plus-11e98009906651acb110cd3b1625a771b1e2f472.zip
Merge branch tabbed-interface into master
Support multiple, configurable connections Each connection is displayed in its own tab in the main UI, and gets its own query executor. New connections can be added dynamically through the new connection dialog.
Diffstat (limited to 'styles')
-rw-r--r--styles/editor-instance.css (renamed from styles/style.css)0
-rw-r--r--styles/instance-manager.css35
-rw-r--r--styles/new-connection.css3
3 files changed, 38 insertions, 0 deletions
diff --git a/styles/style.css b/styles/editor-instance.css
index 7ae5727..7ae5727 100644
--- a/styles/style.css
+++ b/styles/editor-instance.css
diff --git a/styles/instance-manager.css b/styles/instance-manager.css
new file mode 100644
index 0000000..c49c8a3
--- /dev/null
+++ b/styles/instance-manager.css
@@ -0,0 +1,35 @@
+body {
+ margin: 0;
+}
+
+.etabs-tabgroup {
+ background-color: #282a36;
+}
+
+.etabs-tab {
+ color: white;
+ background: none;
+ background-color: #474A5E;
+ border: none;
+ font-weight: bold;
+}
+
+.etabs-tab.active {
+ background: #6D8A88;
+}
+
+.etabs-views {
+ border: none;
+ height: calc(100vh - 52px);
+}
+
+.etabs-buttons button {
+ width: inherit;
+ padding: 4px 6px;
+ background: #6D8A88;
+}
+
+.etabs-tabgroup-footer {
+ background: #6D8A88;
+ height: 20px;
+} \ No newline at end of file
diff --git a/styles/new-connection.css b/styles/new-connection.css
new file mode 100644
index 0000000..97aaae6
--- /dev/null
+++ b/styles/new-connection.css
@@ -0,0 +1,3 @@
+html, body {
+ padding: 8px;
+} \ No newline at end of file