From 44234ede660988f3bbf7e70e2ab3707a83906a49 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 18 Jan 2018 17:31:26 -0500 Subject: [PATCH] Make Help pane slightly wider (re: "claustrophobia" on #4651, #4686) --- modules/ui/help.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/modules/ui/help.js b/modules/ui/help.js index 01196b3a75..30d17833a7 100644 --- a/modules/ui/help.js +++ b/modules/ui/help.js @@ -370,17 +370,17 @@ export function uiHelp(context) { var pane = selection.append('div') - .attr('class', 'help-wrap map-overlay fillL col5 content hide'), - tooltipBehavior = tooltip() - .placement((textDirection === 'rtl') ? 'right' : 'left') - .html(true) - .title(uiTooltipHtml(t('help.title'), key)), - button = selection.append('button') - .attr('tabindex', -1) - .on('click', togglePane) - .call(svgIcon('#icon-help', 'light')) - .call(tooltipBehavior), - shown = false; + .attr('class', 'help-wrap map-overlay fillL col6 content hide'); + var tooltipBehavior = tooltip() + .placement((textDirection === 'rtl') ? 'right' : 'left') + .html(true) + .title(uiTooltipHtml(t('help.title'), key)); + var button = selection.append('button') + .attr('tabindex', -1) + .on('click', togglePane) + .call(svgIcon('#icon-help', 'light')) + .call(tooltipBehavior); + var shown = false; var toc = pane