From 75c4df6540c7e963ff48d3e37576956489ef165d Mon Sep 17 00:00:00 2001 From: Jakob Stendahl Date: Sun, 20 May 2018 14:01:24 +0200 Subject: Made things work --- Hyperterm/local/hideTitle/index.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Hyperterm/local/hideTitle/index.js (limited to 'Hyperterm/local') diff --git a/Hyperterm/local/hideTitle/index.js b/Hyperterm/local/hideTitle/index.js new file mode 100644 index 0000000..d632cbc --- /dev/null +++ b/Hyperterm/local/hideTitle/index.js @@ -0,0 +1,21 @@ +'use strict' + +exports.decorateBrowserOptions = config => { + return Object.assign({}, config, { + titleBarStyle: '', + frame: false, + }); +} + +exports.decorateConfig = config => { + return Object.assign({}, config, { + css: ` + ${config.css || ''} + .tabs_borderShim { display: none; } + .tabs_list { margin-left: -1px; } + .tabs_list { display: none; } + //.header_header { display: none; } + .terms_terms { margin-top: 0px; } + ` + }) +} -- cgit v1.2.3