From 52f6783f63d2e2f52e06d14a97b5e00eab8ac1c0 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Sun, 18 Feb 2018 21:20:37 +0000 Subject: Add new connection dialog box - WIP --- styles/instance-manager.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 styles/instance-manager.css (limited to 'styles/instance-manager.css') diff --git a/styles/instance-manager.css b/styles/instance-manager.css new file mode 100644 index 0000000..8449b9c --- /dev/null +++ b/styles/instance-manager.css @@ -0,0 +1,28 @@ +body { + margin: 0; +} + +.etabs-tabgroup { + background-color: #282a36; +} + +.etabs-tab { + color: white; + background: none; + background-color: #474A5E; + border: none; +} + +.etabs-tab.active { + background: #6D8A88; +} + +.etabs-views { + border: none; +} + +.etabs-buttons button { + width: inherit; + padding: 4px 6px; + background: #6D8A88; +} \ No newline at end of file -- cgit v1.2.3 From 4ef675b2b7803c72ed6e74ee13841e356a71f103 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Wed, 21 Feb 2018 21:07:01 +0000 Subject: Make connection tab title configurable --- styles/instance-manager.css | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'styles/instance-manager.css') diff --git a/styles/instance-manager.css b/styles/instance-manager.css index 8449b9c..c49c8a3 100644 --- a/styles/instance-manager.css +++ b/styles/instance-manager.css @@ -11,6 +11,7 @@ body { background: none; background-color: #474A5E; border: none; + font-weight: bold; } .etabs-tab.active { @@ -19,10 +20,16 @@ body { .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 -- cgit v1.2.3