aboutsummaryrefslogtreecommitdiff
path: root/styles/instance-manager.css
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/instance-manager.css
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/instance-manager.css')
-rw-r--r--styles/instance-manager.css35
1 files changed, 35 insertions, 0 deletions
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