Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2019-08-24 12:07:22 +0300
committerAleksander Machniak <alec@alec.pl>2019-08-24 12:07:22 +0300
commitb07f7212bea7682beb777a025866ea3822e1bb83 (patch)
treed12aa250003714375f64a5f64742cdfc1fcbc968 /skins
parent53ccce4be92087d141b454d1d68c2759421238cb (diff)
Elastic: Fix selection button icon in Enigma
Diffstat (limited to 'skins')
-rw-r--r--skins/elastic/ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/elastic/ui.js b/skins/elastic/ui.js
index 05cd85b14..401d52b71 100644
--- a/skins/elastic/ui.js
+++ b/skins/elastic/ui.js
@@ -522,7 +522,7 @@ function rcube_elastic_ui()
// Add Select button to the list navigation bar
if (!button) {
- button = $('<a>').attr({'class': 'button selection disabled', role: 'button', title: rcmail.gettext('select')})
+ button = $('<a>').attr({'class': 'button select disabled', role: 'button', title: rcmail.gettext('select')})
.on('click', function() { if ($(this).is('.active')) table.toggleClass('withselection'); })
.append($('<span class="inner">').text(rcmail.gettext('select')));