diff --git a/umap/static/umap/css/panel.css b/umap/static/umap/css/panel.css index 58116c08..967f5d60 100644 --- a/umap/static/umap/css/panel.css +++ b/umap/static/umap/css/panel.css @@ -84,6 +84,9 @@ .panel.dark .toolbox li:hover { background-color: #353c3e; } +.panel h3 { + line-height: 3; +} @media all and (orientation:landscape) { .panel { top: 0; diff --git a/umap/static/umap/img/16.svg b/umap/static/umap/img/16.svg index bc8233a7..54d14015 100644 --- a/umap/static/umap/img/16.svg +++ b/umap/static/umap/img/16.svg @@ -179,8 +179,11 @@ - - - + + + + + + diff --git a/umap/static/umap/img/source/16.svg b/umap/static/umap/img/source/16.svg index ed3d4715..48b69f61 100644 --- a/umap/static/umap/img/source/16.svg +++ b/umap/static/umap/img/source/16.svg @@ -10,7 +10,7 @@ - + @@ -203,5 +203,6 @@ + diff --git a/umap/static/umap/js/modules/browser.js b/umap/static/umap/js/modules/browser.js index b61ff293..a916c997 100644 --- a/umap/static/umap/js/modules/browser.js +++ b/umap/static/umap/js/modules/browser.js @@ -134,7 +134,7 @@ export default class Browser { // https://github.com/Leaflet/Leaflet/pull/9052 DomEvent.disableClickPropagation(container) - DomUtil.createTitle(container, translate('Browse data'), 'layers') + DomUtil.createTitle(container, translate('Browse data'), 'icon-layers') const formContainer = DomUtil.create('div', '', container) this.dataContainer = DomUtil.create('div', '', container) diff --git a/umap/static/umap/js/umap.core.js b/umap/static/umap/js/umap.core.js index e3794e82..dac89bba 100644 --- a/umap/static/umap/js/umap.core.js +++ b/umap/static/umap/js/umap.core.js @@ -128,7 +128,7 @@ L.DomUtil.createIcon = (parent, className, title, size = 16) => { L.DomUtil.createButtonIcon = (parent, className, title, size = 16) => { return L.DomUtil.element( 'button', - { className: `icon icon-${size} ${className}`, title: title }, + { className: `icon icon-${size} ${className}`, title: title || '' }, parent ) }