diff --git a/skins/elastic/styles/widgets/buttons.less b/skins/elastic/styles/widgets/buttons.less index 6d6ed85ae..5f2f070ef 100644 --- a/skins/elastic/styles/widgets/buttons.less +++ b/skins/elastic/styles/widgets/buttons.less @@ -114,15 +114,18 @@ button.btn { &.folders:before { content: @fa-var-folder-open; } + &.options:before { + content: @fa-var-sliders-h; + } &.tools:before, &.settings:before { - content: @fa-var-wrench; + content: @fa-var-cog; } &.properties:before { content: @fa-var-info-circle; } &.select:before { - .font-icon-regular(@fa-var-check-circle); + .font-icon-regular(@fa-var-check-square); } &.insert.recipient:before { content: @fa-var-user-plus; diff --git a/skins/elastic/styles/widgets/menu.less b/skins/elastic/styles/widgets/menu.less index 952bf8b6f..8b77dd71d 100644 --- a/skins/elastic/styles/widgets/menu.less +++ b/skins/elastic/styles/widgets/menu.less @@ -370,9 +370,12 @@ a.toolbar-button { &.contacts:before { content: @fa-var-users; } - &.settings:before { + &.options:before { content: @fa-var-sliders-h; } + &.settings:before { + content: @fa-var-cog; + } &.help:before { content: @fa-var-life-ring; } @@ -469,10 +472,14 @@ a.toolbar-button { &.expand:before { content: @fa-var-angle-right; } - &.expand.all:before, - &.expand.none:before, + &.expand.all:before { + content: @fa-var-angle-double-down; + } + &.expand.none:before { + content: @fa-var-angle-double-right; + } &.expand.unread:before { - content: @fa-var-comments; + .font-icon-regular(@fa-var-envelope); } &.export:before, &.export.all:before, @@ -596,10 +603,10 @@ a.toolbar-button { content: @fa-var-trash-alt; } &.select:before { - .font-icon-regular(@fa-var-check-circle); + content: @fa-var-mouse-pointer; } &.select.all:before { - content: @fa-var-check-square; + content: @fa-var-asterisk; } &.select.invert:before { content: @fa-var-square; @@ -611,14 +618,11 @@ a.toolbar-button { .font-icon-solid(@fa-var-bars); } &.selection:before { - content: @fa-var-mouse-pointer; + .font-icon-regular(@fa-var-check-square); } &.send:before { content: @fa-var-paper-plane; } - &.settings:before { - content: @fa-var-sliders-h; - } &.showurl:before { content: @fa-var-link; } diff --git a/skins/elastic/templates/compose.html b/skins/elastic/templates/compose.html index 5d8adf766..7c2f11dca 100644 --- a/skins/elastic/templates/compose.html +++ b/skins/elastic/templates/compose.html @@ -79,7 +79,7 @@

diff --git a/skins/elastic/ui.js b/skins/elastic/ui.js index ad41643c8..cb5b19122 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 = $('').attr({'class': 'button select disabled', role: 'button', title: rcmail.gettext('select')}) + button = $('').attr({'class': 'button selection disabled', role: 'button', title: rcmail.gettext('select')}) .on('click', function() { if ($(this).is('.active')) table.toggleClass('withselection'); }) .append($('').text(rcmail.gettext('select')));