Make Help pane slightly wider

(re: "claustrophobia" on #4651, #4686)
This commit is contained in:
Bryan Housel
2018-01-18 17:31:26 -05:00
parent dc4461ed13
commit 44234ede66
+11 -11
View File
@@ -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