diff --git a/apps/common/main/lib/view/SymbolTableDialog.js b/apps/common/main/lib/view/SymbolTableDialog.js index 8cef6f12a0..43a692f81e 100644 --- a/apps/common/main/lib/view/SymbolTableDialog.js +++ b/apps/common/main/lib/view/SymbolTableDialog.js @@ -361,9 +361,9 @@ define([ options: { resizable : true, minwidth : 448, - minheight : 434, + minheight : 420, width: 448, - height: 434, + height: 420, cls: 'modal-dlg invisible-borders', buttons: ['ok', 'cancel'] }, @@ -372,9 +372,9 @@ define([ var config = { resizable : true, minwidth : 448, - minheight : 434, + minheight : 420, width: 448, - height: 434, + height: 420, cls: 'modal-dlg invisible-borders', buttons: ['ok', 'cancel'] }; @@ -393,19 +393,19 @@ define([ this.options = _.extend(config, { title: this.textTitle, width : size[0] || 448, - height : size[1] || 434 + height : size[1] || 420 }, options || {}); this.api = this.options.api; this.type = this.options.type || 0; // 0 - close on OK, single adding symbol this.special = this.options.special || false; // true - show special tab this.showShortcutKey = this.options.showShortcutKey || false; - !this.special && (this.options.height -= 38); - !this.special && (this.options.minheight -= 38); + this.special && (this.options.height += 38); + this.special && (this.options.minheight += 38); this.template = [ '
', - '
', + '
', '', '', '
', @@ -424,8 +424,8 @@ define([ '', '', '', - '', '', + '
', - '
', + '
', + '
', '
', '
', '
', @@ -436,8 +436,10 @@ define([ '
', '
', + '', '', - '', @@ -465,13 +467,13 @@ define([ '
', + '', '', '
', '
', '', '', '', '', '', '', '
', - '', + '', '', '
', - '
', + '
', '
', @@ -769,6 +771,18 @@ define([ this.specialPanel = $window.find('#symbol-table-pnl-special'); }, + calcControlsHeight: function() { + var $window = this.$window, + tables = this.symbolsPanel.find('> table'), + switcher = $window.find('#symbol-table-switcher'), + bodyEl = $window.find('.body'); + this.hfHeight = parseInt($window.find('.header').css('height')) + parseInt($window.find('.footer').css('height')) + parseInt(bodyEl.css('padding-top')) + parseInt(bodyEl.css('padding-bottom')) + + parseInt($window.css('border-bottom-width')) + parseInt($window.css('border-top-width')); + this.switcherHeight = this.special ? switcher.height()+parseInt(switcher.css('margin-bottom')) : 0; + this.controlsSpecialHeight = this.special && this.btnSpecial.isActive() ? $window.find('#symbol-table-lbl-char').height() + switcher.height()+parseInt(switcher.css('margin-bottom')) : 0; + this.controlsSymbolsHeight = this.special && this.btnSpecial.isActive() ? 0 : tables.eq(0).height() + tables.eq(2).height() + tables.eq(3).height() + (this.special ? switcher.height()+parseInt(switcher.css('margin-bottom')) : 0); + }, + show: function() { Common.UI.Window.prototype.show.apply(this, arguments); @@ -1094,12 +1108,12 @@ define([ }, getColsCount: function(){ - var nMaxWidth = this.boxPanel.innerWidth()-13; + var nMaxWidth = this.boxPanel.width()-13; return ((nMaxWidth/CELL_WIDTH) >> 0); }, getMaxHeight: function(){ - return this.symbolTablePanel.innerHeight()-2; + return this.symbolTablePanel.height()-2; }, getRowsCount: function() { @@ -1431,20 +1445,11 @@ define([ this.curSize = {resize: false, width: size[0], height: size[1]}; } else if (this.curSize.resize) { this._preventUpdateScroll = false; - this.curSize.height = size[1] - 304 + 38*(this.special ? 0 : 1); - var rows = Math.max(1, (((this.curSize.height-2)/CELL_HEIGHT) >> 0)), - height = rows*CELL_HEIGHT; - - this.symbolTablePanel.css({'height': this.curSize.height + 'px'}); - this.previewPanel.css({'height': height + 'px'}); - this.previewScrolled.css({'height': height + 'px'}); this.scrollerY = null; - - this.updateView(undefined, undefined, undefined, true); - - this.specialList.cmpEl.height(size[1] - 157 + 38*(this.special ? 0 : 1)); - - !this.special && (size[1] += 38); + this.curSize.height = size[1]; + this.curSize.width = size[0]; + this.applyInnerSize(size[1]); + this.special && (size[1] -= this.switcherHeight); var valJson = JSON.stringify(size); Common.localStorage.setItem(this.appPrefix + 'settings-size-symbol-table', valJson); Common.Utils.InternalSettings.set(this.appPrefix + 'settings-size-symbol-table', valJson); @@ -1460,21 +1465,26 @@ define([ this.curSize.resize = true; this.curSize.width = size[0]; - this.curSize.height = size[1] - 304 + 38*(this.special ? 0 : 1); - - var rows = Math.max(1, (((this.curSize.height-2)/CELL_HEIGHT) >> 0)), - height = rows*CELL_HEIGHT; - - this.symbolTablePanel.css({'height': this.curSize.height + 'px'}); - this.previewPanel.css({'height': height + 'px'}); - this.previewScrolled.css({'height': height + 'px'}); - - this.specialList.cmpEl.height(size[1] - 157 + 38*(this.special ? 0 : 1)); - - this.updateView(undefined, undefined, undefined, true); + this.curSize.height = size[1]; + this.applyInnerSize(size[1]); } }, + applyInnerSize: function(windowHeight) { + var height = windowHeight - this.hfHeight; + if (this.controlsSymbolsHeight) { + height -= this.controlsSymbolsHeight; + this.symbolTablePanel.css({'height': height + 'px'}); + + var rows = Math.max(1, (((height-2)/CELL_HEIGHT) >> 0)); + height = rows*CELL_HEIGHT; + this.previewPanel.css({'height': height + 'px'}); + this.previewScrolled.css({'height': height + 'px'}); + this.updateView(undefined, undefined, undefined, true); + } else + this.specialList.cmpEl.height(height - this.controlsSpecialHeight); + }, + onModeClick: function(special, btn, event) { this.ShowHideElem(special); }, @@ -1482,6 +1492,8 @@ define([ ShowHideElem: function(special) { this.symbolsPanel.toggleClass('hidden', special); this.specialPanel.toggleClass('hidden', !special); + this.calcControlsHeight(); + this.applyInnerSize(this.getSize()[1]); var me = this; _.delay(function(){ special ? me.specialList.focus() : me.previewPanel.focus(); @@ -1489,6 +1501,14 @@ define([ }, + onThemeChanged: function() { + if (!this.$window || !this.isVisible()) return; + + Common.UI.Window.prototype.onThemeChanged.call(this); + this.calcControlsHeight(); + this.applyInnerSize(this.getSize()[1]); + }, + textTitle: 'Symbol', textFont: 'Font', textRange: 'Range', diff --git a/apps/common/main/resources/less/colors-table.less b/apps/common/main/resources/less/colors-table.less index 5cdda08751..cc447b9a9a 100644 --- a/apps/common/main/resources/less/colors-table.less +++ b/apps/common/main/resources/less/colors-table.less @@ -509,6 +509,7 @@ @toolbar-small-btn-margin-top: var(--toolbar-small-btn-margin-top, 8px); @toolbar-height-controls: var(--toolbar-height-controls, 66px); +@statusbar-height: var(--statusbar-height, 25px); @toolbar-group-height: var(--toolbar-group-height, 52px); @toolbar-v-paddings: calc((@toolbar-height-controls - @toolbar-group-height)/2); diff --git a/apps/common/main/resources/less/statusbar.less b/apps/common/main/resources/less/statusbar.less index b6d36fb657..037193d355 100644 --- a/apps/common/main/resources/less/statusbar.less +++ b/apps/common/main/resources/less/statusbar.less @@ -5,9 +5,9 @@ .statusbar { height: 25px; - height: var(--statusbar-height); + height: @statusbar-height; background-color: @background-pane-ie; - background-color: var(--background-statusbar); + background-color: @background-statusbar; .box-inner-shadow(0 @scaled-one-px-value-ie 0 @border-toolbar-ie); .box-inner-shadow(0 @scaled-one-px-value 0 @border-toolbar); diff --git a/apps/documenteditor/main/resources/less/statusbar.less b/apps/documenteditor/main/resources/less/statusbar.less index 1eab6270e3..3f5358a173 100644 --- a/apps/documenteditor/main/resources/less/statusbar.less +++ b/apps/documenteditor/main/resources/less/statusbar.less @@ -1,4 +1,3 @@ -@statusbar-height: var(--statusbar-height, 25px); .statusbar { .status-label { diff --git a/apps/pdfeditor/main/resources/img/toolbar/1.25x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/1.25x/big/btn-listbox.png new file mode 100644 index 0000000000..a5bb02f882 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/1.25x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/1.5x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/1.5x/big/btn-listbox.png new file mode 100644 index 0000000000..68752a2dea Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/1.5x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/1.75x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/1.75x/big/btn-listbox.png new file mode 100644 index 0000000000..2c0f2b3feb Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/1.75x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/1x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/1x/big/btn-listbox.png new file mode 100644 index 0000000000..6a2e554c9e Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/1x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/2.5x/big/btn-listbox.svg b/apps/pdfeditor/main/resources/img/toolbar/2.5x/big/btn-listbox.svg new file mode 100644 index 0000000000..edcb36dc4f --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/2.5x/big/btn-listbox.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/2x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/2x/big/btn-listbox.png new file mode 100644 index 0000000000..38a48872ef Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/2x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-big-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-big-magic-wand.png new file mode 100644 index 0000000000..1ce781a1aa Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-big-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-big-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-big-text-callout.png new file mode 100644 index 0000000000..f5cbb9bb70 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-big-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-big-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-big-text-comment.png new file mode 100644 index 0000000000..ec79551cff Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-big-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-blankpage.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-blankpage.png new file mode 100644 index 0000000000..74d77b0977 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-blankpage.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-checkbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-checkbox.png new file mode 100644 index 0000000000..0dcf36cadf Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-checkbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-clear-style.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-clear-style.png new file mode 100644 index 0000000000..851149c35a Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-clear-style.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-combo-box.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-combo-box.png new file mode 100644 index 0000000000..0d6fa4ce69 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-combo-box.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-credit-card.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-credit-card.png new file mode 100644 index 0000000000..6df8d2e85b Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-credit-card.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-dark-mode.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-dark-mode.png new file mode 100644 index 0000000000..1ead617504 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-dark-mode.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-dropdown.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-dropdown.png new file mode 100644 index 0000000000..a7bb669b68 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-dropdown.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-edit-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-edit-text.png new file mode 100644 index 0000000000..9a0ec090d1 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-edit-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-email.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-email.png new file mode 100644 index 0000000000..b59ade003d Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-email.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-listbox.png new file mode 100644 index 0000000000..991c87c34a Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-next-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-next-field.png new file mode 100644 index 0000000000..21304c922a Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-next-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-pagenum.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-pagenum.png new file mode 100644 index 0000000000..2f7de6f23a Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-pagenum.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-phone.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-phone.png new file mode 100644 index 0000000000..8d1640e60a Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-phone.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-previous-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-previous-field.png new file mode 100644 index 0000000000..a25c62b363 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-previous-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-radio-button.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-radio-button.png new file mode 100644 index 0000000000..53370bcc37 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-radio-button.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-rotate-page.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-rotate-page.png new file mode 100644 index 0000000000..f31d2be60a Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-rotate-page.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-save-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-save-form.png new file mode 100644 index 0000000000..25f79cd792 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-save-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-signature-field.png new file mode 100644 index 0000000000..1f8c3af6af Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-signature-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-stamp.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-stamp.png new file mode 100644 index 0000000000..c305700c90 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-stamp.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-submit-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-submit-form.png new file mode 100644 index 0000000000..ff2c2035a1 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-submit-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-text-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-text-field.png new file mode 100644 index 0000000000..aaf6708a8c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-text-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-zip-code.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-zip-code.png new file mode 100644 index 0000000000..102c68e7ef Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/big/btn-zip-code.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-add-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-add-text.png new file mode 100644 index 0000000000..ae1fa4a873 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-add-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-field.png new file mode 100644 index 0000000000..804f7922e6 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-hand-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-hand-tool.png new file mode 100644 index 0000000000..d099dd2c18 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-hand-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-magic-wand.png new file mode 100644 index 0000000000..e3aa29734e Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-thumbs.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-thumbs.png new file mode 100644 index 0000000000..053d25f757 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-thumbs.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-select-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-select-tool.png new file mode 100644 index 0000000000..feb3834713 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-select-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-text-callout.png new file mode 100644 index 0000000000..618637d15e Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-text-comment.png new file mode 100644 index 0000000000..82595009fc Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-thumbnail-big.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-thumbnail-big.png new file mode 100644 index 0000000000..fe3b331cac Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-thumbnail-big.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-thumbnail-small.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-thumbnail-small.png new file mode 100644 index 0000000000..7e97840b13 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.25x/btn-thumbnail-small.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-big-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-big-magic-wand.png new file mode 100644 index 0000000000..291e4ea1a5 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-big-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-big-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-big-text-callout.png new file mode 100644 index 0000000000..087ac6f7a2 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-big-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-big-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-big-text-comment.png new file mode 100644 index 0000000000..c76a9c73e6 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-big-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-blankpage.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-blankpage.png new file mode 100644 index 0000000000..9bfd1b0de3 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-blankpage.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-checkbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-checkbox.png new file mode 100644 index 0000000000..b145419249 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-checkbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-clear-style.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-clear-style.png new file mode 100644 index 0000000000..803f125f5f Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-clear-style.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-combo-box.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-combo-box.png new file mode 100644 index 0000000000..1a79569eb7 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-combo-box.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-credit-card.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-credit-card.png new file mode 100644 index 0000000000..1576670633 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-credit-card.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-dark-mode.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-dark-mode.png new file mode 100644 index 0000000000..84ca98de2c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-dark-mode.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-dropdown.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-dropdown.png new file mode 100644 index 0000000000..3799c3aeec Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-dropdown.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-edit-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-edit-text.png new file mode 100644 index 0000000000..da8a7d9a08 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-edit-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-email.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-email.png new file mode 100644 index 0000000000..59410f7e9f Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-email.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-listbox.png new file mode 100644 index 0000000000..bc241cb250 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-next-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-next-field.png new file mode 100644 index 0000000000..0efb7d389e Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-next-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-pagenum.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-pagenum.png new file mode 100644 index 0000000000..71139b9fe8 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-pagenum.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-phone.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-phone.png new file mode 100644 index 0000000000..7400192dc2 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-phone.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-previous-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-previous-field.png new file mode 100644 index 0000000000..d69737eead Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-previous-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-radio-button.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-radio-button.png new file mode 100644 index 0000000000..54138ee828 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-radio-button.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-rotate-page.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-rotate-page.png new file mode 100644 index 0000000000..580106c4b9 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-rotate-page.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-save-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-save-form.png new file mode 100644 index 0000000000..cad6f09e4e Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-save-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-signature-field.png new file mode 100644 index 0000000000..66d5ff1bfb Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-signature-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-stamp.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-stamp.png new file mode 100644 index 0000000000..47d7b845b9 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-stamp.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-submit-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-submit-form.png new file mode 100644 index 0000000000..0d492e21cd Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-submit-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-text-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-text-field.png new file mode 100644 index 0000000000..83f821efe4 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-text-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-zip-code.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-zip-code.png new file mode 100644 index 0000000000..d4b69cc0f9 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/big/btn-zip-code.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-add-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-add-text.png new file mode 100644 index 0000000000..4b50f9ea7b Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-add-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-field.png new file mode 100644 index 0000000000..6c2749ae64 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-hand-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-hand-tool.png new file mode 100644 index 0000000000..c6c35649a9 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-hand-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-magic-wand.png new file mode 100644 index 0000000000..269863f097 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-thumbs.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-thumbs.png new file mode 100644 index 0000000000..1295680ba9 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-thumbs.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-select-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-select-tool.png new file mode 100644 index 0000000000..2f108bea89 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-select-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-text-callout.png new file mode 100644 index 0000000000..df4750fccb Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-text-comment.png new file mode 100644 index 0000000000..3f2723cd6b Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-thumbnail-big.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-thumbnail-big.png new file mode 100644 index 0000000000..e9390f778d Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-thumbnail-big.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-thumbnail-small.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-thumbnail-small.png new file mode 100644 index 0000000000..b179a2ebe2 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.5x/btn-thumbnail-small.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-big-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-big-magic-wand.png new file mode 100644 index 0000000000..8ea9b5b888 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-big-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-big-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-big-text-callout.png new file mode 100644 index 0000000000..e26385617d Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-big-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-big-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-big-text-comment.png new file mode 100644 index 0000000000..a680e6663c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-big-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-blankpage.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-blankpage.png new file mode 100644 index 0000000000..b7eb09d021 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-blankpage.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-checkbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-checkbox.png new file mode 100644 index 0000000000..b68117d6d8 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-checkbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-clear-style.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-clear-style.png new file mode 100644 index 0000000000..69858b526f Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-clear-style.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-combo-box.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-combo-box.png new file mode 100644 index 0000000000..7178fc9868 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-combo-box.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-credit-card.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-credit-card.png new file mode 100644 index 0000000000..8aa85d3d76 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-credit-card.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-dark-mode.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-dark-mode.png new file mode 100644 index 0000000000..4bf2688ec5 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-dark-mode.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-dropdown.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-dropdown.png new file mode 100644 index 0000000000..f29f16db7a Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-dropdown.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-edit-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-edit-text.png new file mode 100644 index 0000000000..ceb6107d83 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-edit-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-email.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-email.png new file mode 100644 index 0000000000..d423966b86 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-email.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-listbox.png new file mode 100644 index 0000000000..f31950f8de Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-next-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-next-field.png new file mode 100644 index 0000000000..65abae09bf Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-next-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-pagenum.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-pagenum.png new file mode 100644 index 0000000000..c706f91bb4 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-pagenum.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-phone.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-phone.png new file mode 100644 index 0000000000..cba0c6b6f2 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-phone.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-previous-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-previous-field.png new file mode 100644 index 0000000000..5281f30361 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-previous-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-radio-button.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-radio-button.png new file mode 100644 index 0000000000..fc1ec36ed8 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-radio-button.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-rotate-page.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-rotate-page.png new file mode 100644 index 0000000000..ba781d7b69 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-rotate-page.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-save-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-save-form.png new file mode 100644 index 0000000000..d0c5d74f10 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-save-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-signature-field.png new file mode 100644 index 0000000000..912a472931 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-signature-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-stamp.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-stamp.png new file mode 100644 index 0000000000..4ab919bb4a Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-stamp.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-submit-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-submit-form.png new file mode 100644 index 0000000000..aba3bb816c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-submit-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-text-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-text-field.png new file mode 100644 index 0000000000..90fc7840e2 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-text-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-zip-code.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-zip-code.png new file mode 100644 index 0000000000..58f8fc62df Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/big/btn-zip-code.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-add-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-add-text.png new file mode 100644 index 0000000000..eeccefd5e9 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-add-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-field.png new file mode 100644 index 0000000000..6bb9619b94 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-hand-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-hand-tool.png new file mode 100644 index 0000000000..4752a6b340 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-hand-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-magic-wand.png new file mode 100644 index 0000000000..059a2f8b73 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-thumbs.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-thumbs.png new file mode 100644 index 0000000000..f29ecabfc0 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-thumbs.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-select-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-select-tool.png new file mode 100644 index 0000000000..dbe5155cce Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-select-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-text-callout.png new file mode 100644 index 0000000000..3a4129ce9c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-text-comment.png new file mode 100644 index 0000000000..14919c1ca3 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-thumbnail-big.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-thumbnail-big.png new file mode 100644 index 0000000000..6c17a158b4 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-thumbnail-big.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-thumbnail-small.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-thumbnail-small.png new file mode 100644 index 0000000000..0d4975a5a5 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1.75x/btn-thumbnail-small.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-big-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-big-magic-wand.png new file mode 100644 index 0000000000..cd6d2bbda0 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-big-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-big-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-big-text-callout.png new file mode 100644 index 0000000000..a94e0b4a33 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-big-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-big-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-big-text-comment.png new file mode 100644 index 0000000000..bd1dba055b Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-big-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-blankpage.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-blankpage.png new file mode 100644 index 0000000000..a86c13fbc2 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-blankpage.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-checkbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-checkbox.png new file mode 100644 index 0000000000..37ee55ab27 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-checkbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-clear-style.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-clear-style.png new file mode 100644 index 0000000000..be4328dab0 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-clear-style.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-combo-box.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-combo-box.png new file mode 100644 index 0000000000..d60c021d82 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-combo-box.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-credit-card.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-credit-card.png new file mode 100644 index 0000000000..ef0888a829 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-credit-card.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-dark-mode.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-dark-mode.png new file mode 100644 index 0000000000..25e0027e3f Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-dark-mode.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-dropdown.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-dropdown.png new file mode 100644 index 0000000000..0f2ef79f7f Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-dropdown.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-edit-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-edit-text.png new file mode 100644 index 0000000000..c9c1728840 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-edit-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-email.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-email.png new file mode 100644 index 0000000000..15348e2762 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-email.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-listbox.png new file mode 100644 index 0000000000..020fc66e64 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-next-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-next-field.png new file mode 100644 index 0000000000..a8b6b8abeb Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-next-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-pagenum.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-pagenum.png new file mode 100644 index 0000000000..c2c34f62a1 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-pagenum.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-phone.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-phone.png new file mode 100644 index 0000000000..27d78583a0 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-phone.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-previous-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-previous-field.png new file mode 100644 index 0000000000..58df3d1eae Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-previous-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-radio-button.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-radio-button.png new file mode 100644 index 0000000000..5295c5a1b4 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-radio-button.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-rotate-page.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-rotate-page.png new file mode 100644 index 0000000000..338851074c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-rotate-page.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-save-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-save-form.png new file mode 100644 index 0000000000..357259047b Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-save-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-signature-field.png new file mode 100644 index 0000000000..3ce0f4e5f7 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-signature-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-stamp.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-stamp.png new file mode 100644 index 0000000000..ed1e6e4d70 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-stamp.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-submit-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-submit-form.png new file mode 100644 index 0000000000..cb94db88c9 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-submit-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-text-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-text-field.png new file mode 100644 index 0000000000..1b232394ba Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-text-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-zip-code.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-zip-code.png new file mode 100644 index 0000000000..9b29b142ac Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/big/btn-zip-code.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-add-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-add-text.png new file mode 100644 index 0000000000..adfebeaedb Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-add-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-field.png new file mode 100644 index 0000000000..c99bf6c685 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-hand-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-hand-tool.png new file mode 100644 index 0000000000..93f9a25771 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-hand-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-magic-wand.png new file mode 100644 index 0000000000..c5dbf40470 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-menu-thumbs.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-menu-thumbs.png new file mode 100644 index 0000000000..2d85fd5f79 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-menu-thumbs.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-select-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-select-tool.png new file mode 100644 index 0000000000..a8ad6e5370 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-select-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-text-callout.png new file mode 100644 index 0000000000..a1d03859aa Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-text-comment.png new file mode 100644 index 0000000000..0272663f6c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-thumbnail-big.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-thumbnail-big.png new file mode 100644 index 0000000000..cbcfa036e5 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-thumbnail-big.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-thumbnail-small.png b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-thumbnail-small.png new file mode 100644 index 0000000000..6b23136a0f Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/1x/btn-thumbnail-small.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-big-magic-wand.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-big-magic-wand.svg new file mode 100644 index 0000000000..130473e536 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-big-magic-wand.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-big-text-callout.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-big-text-callout.svg new file mode 100644 index 0000000000..19780de8a4 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-big-text-callout.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-big-text-comment.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-big-text-comment.svg new file mode 100644 index 0000000000..c07318527b --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-big-text-comment.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-blankpage.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-blankpage.svg new file mode 100644 index 0000000000..4da4b6da4c --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-blankpage.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-checkbox.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-checkbox.svg new file mode 100644 index 0000000000..e1b0b5e49e --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-checkbox.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-clear-style.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-clear-style.svg new file mode 100644 index 0000000000..c5400576b1 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-clear-style.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-combo-box.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-combo-box.svg new file mode 100644 index 0000000000..e3199685fa --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-combo-box.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-credit-card.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-credit-card.svg new file mode 100644 index 0000000000..ace2c601ed --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-credit-card.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-dark-mode.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-dark-mode.svg new file mode 100644 index 0000000000..e27f1fd2c9 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-dark-mode.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-dropdown.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-dropdown.svg new file mode 100644 index 0000000000..635eff54f7 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-dropdown.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-edit-text.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-edit-text.svg new file mode 100644 index 0000000000..d906bf2312 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-edit-text.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-email.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-email.svg new file mode 100644 index 0000000000..cf01ccafdc --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-email.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-listbox.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-listbox.svg new file mode 100644 index 0000000000..d1a0c7ca53 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-listbox.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-next-field.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-next-field.svg new file mode 100644 index 0000000000..4e4757056d --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-next-field.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-pagenum.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-pagenum.svg new file mode 100644 index 0000000000..e6116e35b0 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-pagenum.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-phone.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-phone.svg new file mode 100644 index 0000000000..897fcc4c10 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-phone.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-previous-field.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-previous-field.svg new file mode 100644 index 0000000000..5c148d38ff --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-previous-field.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-radio-button.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-radio-button.svg new file mode 100644 index 0000000000..e9ad4101c9 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-radio-button.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-rotate-page.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-rotate-page.svg new file mode 100644 index 0000000000..f7a882ab57 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-rotate-page.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-save-form.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-save-form.svg new file mode 100644 index 0000000000..5fbc2774e6 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-save-form.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-signature-field.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-signature-field.svg new file mode 100644 index 0000000000..c225d615b5 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-signature-field.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-stamp.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-stamp.svg new file mode 100644 index 0000000000..d178492e45 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-stamp.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-submit-form.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-submit-form.svg new file mode 100644 index 0000000000..60ce417b01 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-submit-form.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-text-field.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-text-field.svg new file mode 100644 index 0000000000..1f82294b9a --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-text-field.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-zip-code.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-zip-code.svg new file mode 100644 index 0000000000..063c99761e --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/big/btn-zip-code.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-add-text.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-add-text.svg new file mode 100644 index 0000000000..e191d689e8 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-add-text.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-field.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-field.svg new file mode 100644 index 0000000000..21389d81f2 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-field.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-hand-tool.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-hand-tool.svg new file mode 100644 index 0000000000..5a9156bc27 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-hand-tool.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-magic-wand.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-magic-wand.svg new file mode 100644 index 0000000000..50768ec670 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-magic-wand.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-thumbs.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-thumbs.svg new file mode 100644 index 0000000000..bb975eb2aa --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-thumbs.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-select-tool.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-select-tool.svg new file mode 100644 index 0000000000..1b24c9a2c4 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-select-tool.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-text-callout.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-text-callout.svg new file mode 100644 index 0000000000..f91590e256 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-text-callout.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-text-comment.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-text-comment.svg new file mode 100644 index 0000000000..a244c0c7c9 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-text-comment.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-thumbnail-big.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-thumbnail-big.svg new file mode 100644 index 0000000000..919afaa9c2 --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-thumbnail-big.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-thumbnail-small.svg b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-thumbnail-small.svg new file mode 100644 index 0000000000..e6ebf6ba4b --- /dev/null +++ b/apps/pdfeditor/main/resources/img/toolbar/v2/2.5x/btn-thumbnail-small.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-big-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-big-magic-wand.png new file mode 100644 index 0000000000..fda4fd8a5b Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-big-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-big-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-big-text-callout.png new file mode 100644 index 0000000000..f8d6c062c5 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-big-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-big-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-big-text-comment.png new file mode 100644 index 0000000000..b7cd83a862 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-big-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-blankpage.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-blankpage.png new file mode 100644 index 0000000000..43858fcf38 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-blankpage.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-checkbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-checkbox.png new file mode 100644 index 0000000000..6642d44706 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-checkbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-clear-style.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-clear-style.png new file mode 100644 index 0000000000..59400fb631 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-clear-style.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-combo-box.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-combo-box.png new file mode 100644 index 0000000000..f9857cd8dc Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-combo-box.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-credit-card.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-credit-card.png new file mode 100644 index 0000000000..298ce88912 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-credit-card.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-dark-mode.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-dark-mode.png new file mode 100644 index 0000000000..c3333d0b75 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-dark-mode.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-dropdown.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-dropdown.png new file mode 100644 index 0000000000..8936adefe9 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-dropdown.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-edit-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-edit-text.png new file mode 100644 index 0000000000..0cca67128c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-edit-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-email.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-email.png new file mode 100644 index 0000000000..5752dc11ce Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-email.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-listbox.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-listbox.png new file mode 100644 index 0000000000..d984d7b2cb Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-listbox.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-next-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-next-field.png new file mode 100644 index 0000000000..a3bff842ea Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-next-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-pagenum.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-pagenum.png new file mode 100644 index 0000000000..e2105b4339 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-pagenum.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-phone.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-phone.png new file mode 100644 index 0000000000..00654bd0ab Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-phone.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-previous-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-previous-field.png new file mode 100644 index 0000000000..06797cbc76 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-previous-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-radio-button.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-radio-button.png new file mode 100644 index 0000000000..b01ec7bbbf Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-radio-button.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-rotate-page.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-rotate-page.png new file mode 100644 index 0000000000..28e30c688c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-rotate-page.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-save-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-save-form.png new file mode 100644 index 0000000000..0863658e17 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-save-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-signature-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-signature-field.png new file mode 100644 index 0000000000..22b3b0f0ca Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-signature-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-stamp.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-stamp.png new file mode 100644 index 0000000000..b249b2af93 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-stamp.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-submit-form.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-submit-form.png new file mode 100644 index 0000000000..3ada6265b6 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-submit-form.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-text-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-text-field.png new file mode 100644 index 0000000000..a67bfd9f6c Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-text-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-zip-code.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-zip-code.png new file mode 100644 index 0000000000..fc6535ec86 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/big/btn-zip-code.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-add-text.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-add-text.png new file mode 100644 index 0000000000..52c25d5b45 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-add-text.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-field.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-field.png new file mode 100644 index 0000000000..3a463969b3 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-field.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-hand-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-hand-tool.png new file mode 100644 index 0000000000..85defb5a73 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-hand-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-magic-wand.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-magic-wand.png new file mode 100644 index 0000000000..f3c0880a63 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-magic-wand.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-menu-thumbs.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-menu-thumbs.png new file mode 100644 index 0000000000..254c8eb74d Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-menu-thumbs.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-select-tool.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-select-tool.png new file mode 100644 index 0000000000..a261e6defd Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-select-tool.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-text-callout.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-text-callout.png new file mode 100644 index 0000000000..ba99c65437 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-text-callout.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-text-comment.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-text-comment.png new file mode 100644 index 0000000000..e3e6b4490e Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-text-comment.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-thumbnail-big.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-thumbnail-big.png new file mode 100644 index 0000000000..898e80aaab Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-thumbnail-big.png differ diff --git a/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-thumbnail-small.png b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-thumbnail-small.png new file mode 100644 index 0000000000..5cc16f4cb9 Binary files /dev/null and b/apps/pdfeditor/main/resources/img/toolbar/v2/2x/btn-thumbnail-small.png differ diff --git a/apps/pdfeditor/main/resources/less/statusbar.less b/apps/pdfeditor/main/resources/less/statusbar.less index f1c151716e..a85e9cb9d3 100644 --- a/apps/pdfeditor/main/resources/less/statusbar.less +++ b/apps/pdfeditor/main/resources/less/statusbar.less @@ -1,4 +1,3 @@ -@statusbar-height: var(--statusbar-height, 25px); .statusbar { .status-label { diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-blink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-blink.png new file mode 100644 index 0000000000..f9a7766ff7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-blink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-bold-flash.png new file mode 100644 index 0000000000..1661d69cc0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 0000000000..f4f279d144 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-brush-color.png new file mode 100644 index 0000000000..f90cd5554d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-color-pulse.png new file mode 100644 index 0000000000..19e85bfdb8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-complementary-color.png new file mode 100644 index 0000000000..6af6f8453a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-contrasting-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-contrasting-color.png new file mode 100644 index 0000000000..bb7c959eee Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-contrasting-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-custom.png new file mode 100644 index 0000000000..7d8fbfbfde Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-darken.png new file mode 100644 index 0000000000..d20953096e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-desaturate.png new file mode 100644 index 0000000000..02fdfe12d9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-fill-color.png new file mode 100644 index 0000000000..4820ce96de Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-font-color.png new file mode 100644 index 0000000000..f90cd5554d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 0000000000..9d1a63fafd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-grow-with-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-grow-with-color.png new file mode 100644 index 0000000000..3cf1fc1f4c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-grow-with-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-lighten.png new file mode 100644 index 0000000000..f031a4b11a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-line-color.png new file mode 100644 index 0000000000..e3ffb6f62a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-object-color.png new file mode 100644 index 0000000000..4820ce96de Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-pulse.png new file mode 100644 index 0000000000..9924c59797 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-shimmer.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-shimmer.png new file mode 100644 index 0000000000..efdc982b3b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-shimmer.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-spin.png new file mode 100644 index 0000000000..d4de6597db Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-teeter.png new file mode 100644 index 0000000000..18cfe38f2e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-transparency.png new file mode 100644 index 0000000000..8c9a03d0a2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-underline.png new file mode 100644 index 0000000000..ba320cec30 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-wave.png new file mode 100644 index 0000000000..ff8d7c729e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-Spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-Spinner.png new file mode 100644 index 0000000000..87acd914c8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-Spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-appear.png new file mode 100644 index 0000000000..7380f3293b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-basic-zoom.png new file mode 100644 index 0000000000..30d9aa3412 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-blinds.png new file mode 100644 index 0000000000..c9c2bb1857 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-boomerang.png new file mode 100644 index 0000000000..b7bf0f6e84 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-bounce.png new file mode 100644 index 0000000000..aae1ef783a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-center-revolve.png new file mode 100644 index 0000000000..65f53cc7f7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-checkerboard.png new file mode 100644 index 0000000000..5aeacc1a45 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-compress.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-compress.png new file mode 100644 index 0000000000..f329f9950c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-compress.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-credits.png new file mode 100644 index 0000000000..2a3b57ba25 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-curve-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-curve-up.png new file mode 100644 index 0000000000..1669caedfd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-curve-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-custom.png new file mode 100644 index 0000000000..a19f6a417c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-dissolve-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-dissolve-in.png new file mode 100644 index 0000000000..029ef06b93 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-dissolve-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-drop.png new file mode 100644 index 0000000000..8ed89c6fcf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-expand.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-expand.png new file mode 100644 index 0000000000..d5368f136d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-expand.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-fade.png new file mode 100644 index 0000000000..5506849043 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-flip.png new file mode 100644 index 0000000000..933e47ae0a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-float-in.png new file mode 100644 index 0000000000..386cb36283 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-float.png new file mode 100644 index 0000000000..65538d54ed Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-fly-in.png new file mode 100644 index 0000000000..a67a055451 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-grow-turn.png new file mode 100644 index 0000000000..4000f18921 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-peek-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-peek-in.png new file mode 100644 index 0000000000..a48396b462 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-peek-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-pinwheel.png new file mode 100644 index 0000000000..87acd914c8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-random-bars.png new file mode 100644 index 0000000000..df26b62c35 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-rise-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-rise-up.png new file mode 100644 index 0000000000..46992c5ac0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-rise-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-shape.png new file mode 100644 index 0000000000..3918f7e521 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-spiral-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-spiral-in.png new file mode 100644 index 0000000000..43d2f0ed85 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-spiral-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-split.png new file mode 100644 index 0000000000..6d26b297c4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-strips.png new file mode 100644 index 0000000000..be1bef3535 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-swivel.png new file mode 100644 index 0000000000..4d1304b000 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-wedge.png new file mode 100644 index 0000000000..4c096c0cdd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-wheel.png new file mode 100644 index 0000000000..b4d3bc1312 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-whip.png new file mode 100644 index 0000000000..3d53ecd2fb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-wipe.png new file mode 100644 index 0000000000..5558c953fc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-zoom.png new file mode 100644 index 0000000000..a8a981de80 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-Disappear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-Disappear.png new file mode 100644 index 0000000000..d3a41820ad Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-Disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-Dissolve-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-Dissolve-out.png new file mode 100644 index 0000000000..c5285696df Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-Dissolve-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-Peek-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-Peek-out.png new file mode 100644 index 0000000000..e94e28a176 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-Peek-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-basic-zoom.png new file mode 100644 index 0000000000..51da1c8318 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-blinds.png new file mode 100644 index 0000000000..f9f01881da Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-boomerang.png new file mode 100644 index 0000000000..92cfa40f2f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-bounce.png new file mode 100644 index 0000000000..75cb5765d6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-center-revolve.png new file mode 100644 index 0000000000..5b9b0fa6ef Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-checkerboard.png new file mode 100644 index 0000000000..45cbddd48a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-collapse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-collapse.png new file mode 100644 index 0000000000..fd6417d502 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-collapse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-contract.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-contract.png new file mode 100644 index 0000000000..f4384044ca Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-contract.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-credits.png new file mode 100644 index 0000000000..b19cac946a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-curve-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-curve-down.png new file mode 100644 index 0000000000..c9d6042580 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-curve-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-custom.png new file mode 100644 index 0000000000..627c3b62e1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-drop.png new file mode 100644 index 0000000000..fe7e94fac2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-fade.png new file mode 100644 index 0000000000..4f4b22a335 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-flip.png new file mode 100644 index 0000000000..4eb1dcf864 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-float-out.png new file mode 100644 index 0000000000..5fa43cd350 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-float.png new file mode 100644 index 0000000000..04129326b8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-fly-out.png new file mode 100644 index 0000000000..08278aa71c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-pinwheel.png new file mode 100644 index 0000000000..49418336de Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-random-bars.png new file mode 100644 index 0000000000..18c038141c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-shape.png new file mode 100644 index 0000000000..acff016a85 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-shrink-turn.png new file mode 100644 index 0000000000..4c22a28360 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-sink-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-sink-down.png new file mode 100644 index 0000000000..72e50153f8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-sink-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-spinner.png new file mode 100644 index 0000000000..49418336de Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-spiral-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-spiral-out.png new file mode 100644 index 0000000000..27314454bf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-spiral-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-split.png new file mode 100644 index 0000000000..f97234e46c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-strips.png new file mode 100644 index 0000000000..98d5a93af2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-swivel.png new file mode 100644 index 0000000000..72e36d73b3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-wedge.png new file mode 100644 index 0000000000..971cd74350 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-wheel.png new file mode 100644 index 0000000000..50a9b3d496 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-whip.png new file mode 100644 index 0000000000..3abafe1096 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-wipe.png new file mode 100644 index 0000000000..7bb424fd3d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-zoom.png new file mode 100644 index 0000000000..e6f60d6736 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-4-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-4-point-star.png new file mode 100644 index 0000000000..07260ec107 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-4-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-5-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-5-point-star.png new file mode 100644 index 0000000000..5598afe368 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-5-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-6-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-6-point-star.png new file mode 100644 index 0000000000..44cfd226d2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-6-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-8-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-8-point-star.png new file mode 100644 index 0000000000..ab42de0919 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-8-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-Inverted-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-Inverted-square.png new file mode 100644 index 0000000000..3da56973c6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-Inverted-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-Inverted-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-Inverted-triangle.png new file mode 100644 index 0000000000..33eb27ddd7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-Inverted-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-down.png new file mode 100644 index 0000000000..42c8170cdb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-left.png new file mode 100644 index 0000000000..46ab178224 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-right.png new file mode 100644 index 0000000000..4c43d20617 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-up.png new file mode 100644 index 0000000000..715ce5c11a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arc-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arcs.png new file mode 100644 index 0000000000..e3b53cc2be Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-bean.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-bean.png new file mode 100644 index 0000000000..6f04f29489 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-bean.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-bounce-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-bounce-left.png new file mode 100644 index 0000000000..47208a7dfe Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-bounce-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-bounce-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-bounce-right.png new file mode 100644 index 0000000000..a0b13ee699 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-bounce-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-circle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-circle.png new file mode 100644 index 0000000000..96657a636d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-circle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-clever.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-clever.png new file mode 100644 index 0000000000..473ef2eb50 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-clever.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-cresent-moon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-cresent-moon.png new file mode 100644 index 0000000000..0599312a02 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-cresent-moon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curved-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curved-square.png new file mode 100644 index 0000000000..62f420f47f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curved-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curved-x.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curved-x.png new file mode 100644 index 0000000000..6eccfcdcbc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curved-x.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curvy-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curvy-left.png new file mode 100644 index 0000000000..e6f6140062 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curvy-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curvy-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curvy-right.png new file mode 100644 index 0000000000..51c8307d4d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curvy-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curvy-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curvy-star.png new file mode 100644 index 0000000000..2efc535d5a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-curvy-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-custom-path.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-custom-path.png new file mode 100644 index 0000000000..8623ecbc87 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-custom-path.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-custom.png new file mode 100644 index 0000000000..095946ddaf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-decaying-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-decaying-wave.png new file mode 100644 index 0000000000..faa7100ab7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-decaying-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-diagonal-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-diagonal-down-right.png new file mode 100644 index 0000000000..e5922d851e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-diagonal-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-diagonal-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-diagonal-up-right.png new file mode 100644 index 0000000000..5acb049261 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-diagonal-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-diamond.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-diamond.png new file mode 100644 index 0000000000..b56ca974d7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-diamond.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-equal-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-equal-triangle.png new file mode 100644 index 0000000000..19c90da6bc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-equal-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-figure-8-four.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-figure-8-four.png new file mode 100644 index 0000000000..97c40b5b85 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-figure-8-four.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-football.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-football.png new file mode 100644 index 0000000000..33bf57e275 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-football.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-funnel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-funnel.png new file mode 100644 index 0000000000..fc65ab8b70 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-funnel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-heart.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-heart.png new file mode 100644 index 0000000000..7a50c060c6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-heart.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-heartbeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-heartbeat.png new file mode 100644 index 0000000000..6b26a0860c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-heartbeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-hexagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-hexagon.png new file mode 100644 index 0000000000..b73bba6db7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-hexagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-horizontal-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-horizontal-figure-8.png new file mode 100644 index 0000000000..056dc6e8c3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-horizontal-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-down.png new file mode 100644 index 0000000000..439085e182 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-left.png new file mode 100644 index 0000000000..4e3ca0230e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-right.png new file mode 100644 index 0000000000..78ec5a3828 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-up.png new file mode 100644 index 0000000000..99d040edbc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines.png new file mode 100644 index 0000000000..25e0c3d830 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-loop-de-loop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-loop-de-loop.png new file mode 100644 index 0000000000..d15452f230 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-loop-de-loop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-loops.png new file mode 100644 index 0000000000..176bf95008 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-neutron.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-neutron.png new file mode 100644 index 0000000000..9c0f6767f6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-neutron.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-octagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-octagon.png new file mode 100644 index 0000000000..22e581c185 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-octagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-parallelogram.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-parallelogram.png new file mode 100644 index 0000000000..17c02d408e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-parallelogram.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-peanut.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-peanut.png new file mode 100644 index 0000000000..ea27829106 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-peanut.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-pentagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-pentagon.png new file mode 100644 index 0000000000..fd2539fe59 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-pentagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-point-star.png new file mode 100644 index 0000000000..c97259a468 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-right-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-right-triangle.png new file mode 100644 index 0000000000..d60144f1c7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-right-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-s-curve-1.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-s-curve-1.png new file mode 100644 index 0000000000..7bde1a30ca Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-s-curve-1.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-s-curve-2.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-s-curve-2.png new file mode 100644 index 0000000000..94d2f3ceb6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-s-curve-2.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-shapes.png new file mode 100644 index 0000000000..c2b8eb146e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-sine-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-sine-wave.png new file mode 100644 index 0000000000..0183f0202c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-sine-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-spiral-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-spiral-left.png new file mode 100644 index 0000000000..b758791b10 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-spiral-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-spiral-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-spiral-right.png new file mode 100644 index 0000000000..b5d84d834e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-spiral-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-spiral.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-spiral.png new file mode 100644 index 0000000000..c982d0e355 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-spiral.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-square.png new file mode 100644 index 0000000000..6eb299b620 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-stairs-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-stairs-down.png new file mode 100644 index 0000000000..39301a0402 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-stairs-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-swoosh.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-swoosh.png new file mode 100644 index 0000000000..ffd0293c4e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-swoosh.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-teardrop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-teardrop.png new file mode 100644 index 0000000000..72d6cd3202 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-teardrop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-trapezoid.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-trapezoid.png new file mode 100644 index 0000000000..4384409a84 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-trapezoid.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-down-right.png new file mode 100644 index 0000000000..dbc5978858 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-down.png new file mode 100644 index 0000000000..475a24f105 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-up-right.png new file mode 100644 index 0000000000..8310f42dd1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-up.png new file mode 100644 index 0000000000..b282672904 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turn-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turns.png new file mode 100644 index 0000000000..dd7e96c57e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-vertical-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-vertical-figure-8.png new file mode 100644 index 0000000000..a6aa189b98 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-vertical-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-wave.png new file mode 100644 index 0000000000..564edd0b1e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-zigzag.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-zigzag.png new file mode 100644 index 0000000000..808781758c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-motion-paths-zigzag.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-multiple.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-multiple.png new file mode 100644 index 0000000000..82c852322d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-multiple.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-none.png new file mode 100644 index 0000000000..7b14a3175f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/animation-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-add-animation.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-add-animation.png new file mode 100644 index 0000000000..b63bef7b6d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-add-animation.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-add-layout.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-add-layout.png new file mode 100644 index 0000000000..d0a5bf9f40 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-add-layout.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-add-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-add-slide-master.png new file mode 100644 index 0000000000..42b94b6954 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-add-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-addslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-addslide.png new file mode 100644 index 0000000000..453956795b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-addslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-panel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-panel.png new file mode 100644 index 0000000000..f615811ad4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-panel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-parameters.png new file mode 100644 index 0000000000..cb6fed33bb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-preview-start.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-preview-start.png new file mode 100644 index 0000000000..cf64cc18c3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-preview-start.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-preview-stop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-preview-stop.png new file mode 100644 index 0000000000..d828d0c346 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-animation-preview-stop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-close-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-close-master.png new file mode 100644 index 0000000000..7ccdb14d3c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-close-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-gridlines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-gridlines.png new file mode 100644 index 0000000000..83cbcfab53 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-gridlines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-guides.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-guides.png new file mode 100644 index 0000000000..34bc60b6a6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-guides.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-chart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-chart-placeholder.png new file mode 100644 index 0000000000..6bb910759f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-chart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-content-placeholder.png new file mode 100644 index 0000000000..d340a55e33 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-picture-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-picture-placeholder.png new file mode 100644 index 0000000000..5192680e90 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-picture-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-smartart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-smartart-placeholder.png new file mode 100644 index 0000000000..980de73e22 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-smartart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-table-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-table-placeholder.png new file mode 100644 index 0000000000..0e215d8c3e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-table-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-text-placeholder.png new file mode 100644 index 0000000000..fa1c9925fb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-vertical-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-vertical-content-placeholder.png new file mode 100644 index 0000000000..96afbf3c0f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-vertical-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-vertical-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-vertical-text-placeholder.png new file mode 100644 index 0000000000..5bc839e2cd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-ins-vertical-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-normal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-normal.png new file mode 100644 index 0000000000..976417e2b0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-normal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-pagenum.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-pagenum.png new file mode 100644 index 0000000000..572a84c695 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-pagenum.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-slide-master.png new file mode 100644 index 0000000000..134dc77b38 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-slidesize.png new file mode 100644 index 0000000000..22892f917d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-clock.png new file mode 100644 index 0000000000..f9b2062091 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-cover.png new file mode 100644 index 0000000000..c8b66a1ee4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-fade.png new file mode 100644 index 0000000000..6503f2227b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-morph.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-morph.png new file mode 100644 index 0000000000..37a544bfbb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-morph.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-none.png new file mode 100644 index 0000000000..89c98e8b1f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-push.png new file mode 100644 index 0000000000..f34b5a8bbd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-random.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-random.png new file mode 100644 index 0000000000..d6232a27bf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-random.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-split.png new file mode 100644 index 0000000000..7ee99923d7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-uncover.png new file mode 100644 index 0000000000..21d748b651 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-wipe.png new file mode 100644 index 0000000000..f3941b123c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-zoom.png new file mode 100644 index 0000000000..a49f68e31b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/big/btn-transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-animation-delay.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-animation-delay.png new file mode 100644 index 0000000000..b0254ed964 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-animation-delay.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-animation-duration.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-animation-duration.png new file mode 100644 index 0000000000..9c1d5e0e34 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-animation-duration.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-animation-repeat.png new file mode 100644 index 0000000000..45211b623a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-animation-repeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-changeslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-changeslide.png new file mode 100644 index 0000000000..981db2e283 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-changeslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-clear-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-clear-all.png new file mode 100644 index 0000000000..f723fc37e2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-clear-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-clearstyle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-clearstyle.png new file mode 100644 index 0000000000..e35d87221a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-clearstyle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-fullscreen.png new file mode 100644 index 0000000000..d88c12e136 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-highlighter-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-highlighter-tool.png new file mode 100644 index 0000000000..94d4915879 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-highlighter-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-horizontal-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-horizontal-guide.png new file mode 100644 index 0000000000..ad73dd2572 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-horizontal-guide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-ic-zoomtoslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..43e6d4c218 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-ic-zoomtoslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-laser-pointer-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-laser-pointer-tool.png new file mode 100644 index 0000000000..2913fe0b42 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-laser-pointer-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-slide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-slide.png new file mode 100644 index 0000000000..3ea07f940e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-slide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-thumbs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-thumbs.png new file mode 100644 index 0000000000..053d25f757 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-thumbs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-pen-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-pen-tool.png new file mode 100644 index 0000000000..eff2119708 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-pen-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-play.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-play.png new file mode 100644 index 0000000000..c54de9ea2b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-play.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-presenter-view.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-presenter-view.png new file mode 100644 index 0000000000..5df7302da6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-presenter-view.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview-exit-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview-exit-fullscreen.png new file mode 100644 index 0000000000..865ff213e0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview-exit-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview-pause.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview-pause.png new file mode 100644 index 0000000000..636d38986e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview-pause.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview-transitions.png new file mode 100644 index 0000000000..5479601858 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview.png new file mode 100644 index 0000000000..203d663cb0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-preview.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-slidesize.png new file mode 100644 index 0000000000..4c3b4c18dc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-transition-apply-all.png new file mode 100644 index 0000000000..ff487be88c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-trigger.png new file mode 100644 index 0000000000..2e24133054 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-trigger.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-vertical-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-vertical-guide.png new file mode 100644 index 0000000000..cd264e0e6c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.25x/btn-vertical-guide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-blink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-blink.png new file mode 100644 index 0000000000..42f9b69e9f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-blink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-bold-flash.png new file mode 100644 index 0000000000..6d5e0b4043 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 0000000000..5ad5fc992d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-brush-color.png new file mode 100644 index 0000000000..a94935a96b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-color-pulse.png new file mode 100644 index 0000000000..a758e6b980 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-complementary-color.png new file mode 100644 index 0000000000..31da7ced8e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-contrasting-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-contrasting-color.png new file mode 100644 index 0000000000..639cd75a1b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-contrasting-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-custom.png new file mode 100644 index 0000000000..20e36a75fd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-darken.png new file mode 100644 index 0000000000..1a6919dd3f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-desaturate.png new file mode 100644 index 0000000000..903b7f5465 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-fill-color.png new file mode 100644 index 0000000000..3ef065a906 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-font-color.png new file mode 100644 index 0000000000..f38057460e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 0000000000..3129a3b3f8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-grow-with-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-grow-with-color.png new file mode 100644 index 0000000000..d8d515001d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-grow-with-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-lighten.png new file mode 100644 index 0000000000..8a36340f76 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-line-color.png new file mode 100644 index 0000000000..e304aec98f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-object-color.png new file mode 100644 index 0000000000..3ef065a906 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-pulse.png new file mode 100644 index 0000000000..b7f86f33f6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-shimmer.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-shimmer.png new file mode 100644 index 0000000000..14f1670fd2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-shimmer.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-spin.png new file mode 100644 index 0000000000..c91a615d1f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-teeter.png new file mode 100644 index 0000000000..887eb38d1c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-transparency.png new file mode 100644 index 0000000000..cd85ce8ed3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-underline.png new file mode 100644 index 0000000000..251e74ecf6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-wave.png new file mode 100644 index 0000000000..7500994f88 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-Spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-Spinner.png new file mode 100644 index 0000000000..51be2fde00 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-Spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-appear.png new file mode 100644 index 0000000000..bc0aa7dc29 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-basic-zoom.png new file mode 100644 index 0000000000..13fcec4897 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-blinds.png new file mode 100644 index 0000000000..888090f8e5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-boomerang.png new file mode 100644 index 0000000000..6c63b2aa16 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-bounce.png new file mode 100644 index 0000000000..8f96e56d1e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-center-revolve.png new file mode 100644 index 0000000000..f9684a3a06 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-checkerboard.png new file mode 100644 index 0000000000..29b97a7ec7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-compress.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-compress.png new file mode 100644 index 0000000000..76b1feeb39 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-compress.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-credits.png new file mode 100644 index 0000000000..1063dfff1d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-curve-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-curve-up.png new file mode 100644 index 0000000000..14da3fd241 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-curve-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-custom.png new file mode 100644 index 0000000000..aaf8ff19b2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-dissolve-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-dissolve-in.png new file mode 100644 index 0000000000..ad054b616b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-dissolve-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-drop.png new file mode 100644 index 0000000000..1ea054cbb9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-expand.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-expand.png new file mode 100644 index 0000000000..df75339a31 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-expand.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-fade.png new file mode 100644 index 0000000000..384dfc9c33 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-flip.png new file mode 100644 index 0000000000..debb67837e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-float-in.png new file mode 100644 index 0000000000..3c57946390 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-float.png new file mode 100644 index 0000000000..0ff04d0d39 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-fly-in.png new file mode 100644 index 0000000000..19772aa741 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-grow-turn.png new file mode 100644 index 0000000000..29d6f60704 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-peek-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-peek-in.png new file mode 100644 index 0000000000..e4bf519528 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-peek-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-pinwheel.png new file mode 100644 index 0000000000..48d4879d24 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-random-bars.png new file mode 100644 index 0000000000..489050c2d5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-rise-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-rise-up.png new file mode 100644 index 0000000000..3f35c34ecc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-rise-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-shape.png new file mode 100644 index 0000000000..1a61721a0d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-spiral-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-spiral-in.png new file mode 100644 index 0000000000..62a643f72c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-spiral-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-split.png new file mode 100644 index 0000000000..a578f0dab4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-strips.png new file mode 100644 index 0000000000..c67a591e4d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-swivel.png new file mode 100644 index 0000000000..ad692588e4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-wedge.png new file mode 100644 index 0000000000..2d13b19f39 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-wheel.png new file mode 100644 index 0000000000..714cace711 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-whip.png new file mode 100644 index 0000000000..eed53814d6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-wipe.png new file mode 100644 index 0000000000..b1b0456308 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-zoom.png new file mode 100644 index 0000000000..bc6ce9dc77 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-Dissolve-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-Dissolve-out.png new file mode 100644 index 0000000000..9b78065ec0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-Dissolve-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-Peek-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-Peek-out.png new file mode 100644 index 0000000000..b11c04648a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-Peek-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-Wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-Wheel.png new file mode 100644 index 0000000000..e879546430 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-Wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-basic-zoom.png new file mode 100644 index 0000000000..084f27a0bb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-blinds.png new file mode 100644 index 0000000000..b12343b2d9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-boomerang.png new file mode 100644 index 0000000000..a3ebad685e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-bounce.png new file mode 100644 index 0000000000..434ebc5e44 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-center-revolve.png new file mode 100644 index 0000000000..a960eb13af Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-checkerboard.png new file mode 100644 index 0000000000..5170abc32e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-collapse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-collapse.png new file mode 100644 index 0000000000..d8f8a0eeea Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-collapse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-contract.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-contract.png new file mode 100644 index 0000000000..5c379561d9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-contract.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-credits.png new file mode 100644 index 0000000000..cf1c5c0154 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-curve-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-curve-down.png new file mode 100644 index 0000000000..a21d47d7c9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-curve-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-custom.png new file mode 100644 index 0000000000..f5064dba53 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-disappear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-disappear.png new file mode 100644 index 0000000000..a8888d7a96 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-drop.png new file mode 100644 index 0000000000..fa2b352090 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-fade.png new file mode 100644 index 0000000000..fedd101625 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-flip.png new file mode 100644 index 0000000000..aa631469bb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-float-out.png new file mode 100644 index 0000000000..1a42dfc54f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-float.png new file mode 100644 index 0000000000..317b532f47 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-fly-out.png new file mode 100644 index 0000000000..c5cf6b7dfa Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-pinwheel.png new file mode 100644 index 0000000000..6f22485192 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-random-bars.png new file mode 100644 index 0000000000..80478e1a4e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-shape.png new file mode 100644 index 0000000000..b2c76f787d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-shrink-turn.png new file mode 100644 index 0000000000..e627962be3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-sink-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-sink-down.png new file mode 100644 index 0000000000..3152b10b98 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-sink-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-spinner.png new file mode 100644 index 0000000000..6f22485192 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-spiral-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-spiral-out.png new file mode 100644 index 0000000000..6168d40806 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-spiral-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-split.png new file mode 100644 index 0000000000..a4024008c8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-strips.png new file mode 100644 index 0000000000..bb3613aa42 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-swivel.png new file mode 100644 index 0000000000..2085492c4d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-wedge.png new file mode 100644 index 0000000000..92ff9e37f9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-whip.png new file mode 100644 index 0000000000..d7627a3160 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-wipe.png new file mode 100644 index 0000000000..8658bf138a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-zoom.png new file mode 100644 index 0000000000..d1ae67d532 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-4-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-4-point-star.png new file mode 100644 index 0000000000..3e30a4851d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-4-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-5-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-5-point-star.png new file mode 100644 index 0000000000..c25d7e7384 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-5-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-6-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-6-point-star.png new file mode 100644 index 0000000000..af9bf48c7b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-6-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-8-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-8-point-star.png new file mode 100644 index 0000000000..27ee3e8616 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-8-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-Inverted-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-Inverted-square.png new file mode 100644 index 0000000000..5ff7e5870e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-Inverted-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-Inverted-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-Inverted-triangle.png new file mode 100644 index 0000000000..bb110d4d7b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-Inverted-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-down.png new file mode 100644 index 0000000000..d32329c33b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-left.png new file mode 100644 index 0000000000..c3fb01a7e3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-right.png new file mode 100644 index 0000000000..4308899067 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-up.png new file mode 100644 index 0000000000..d4efb1d9d8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arc-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arcs.png new file mode 100644 index 0000000000..1cff6d30f0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-bean.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-bean.png new file mode 100644 index 0000000000..26be7c7673 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-bean.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-bounce-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-bounce-left.png new file mode 100644 index 0000000000..e1cbe30e8c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-bounce-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-bounce-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-bounce-right.png new file mode 100644 index 0000000000..1ef70139e8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-bounce-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-circle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-circle.png new file mode 100644 index 0000000000..f577a9b1c0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-circle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-clever.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-clever.png new file mode 100644 index 0000000000..cc2c6f5629 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-clever.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-cresent-moon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-cresent-moon.png new file mode 100644 index 0000000000..9a58feb36a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-cresent-moon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curved-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curved-square.png new file mode 100644 index 0000000000..4cf65ffc3a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curved-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curved-x.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curved-x.png new file mode 100644 index 0000000000..c4b68f81b9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curved-x.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curvy-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curvy-left.png new file mode 100644 index 0000000000..643db6d05f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curvy-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curvy-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curvy-right.png new file mode 100644 index 0000000000..dbd532f13f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curvy-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curvy-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curvy-star.png new file mode 100644 index 0000000000..bb55199277 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-curvy-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-custom-path.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-custom-path.png new file mode 100644 index 0000000000..70d42eefeb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-custom-path.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-custom.png new file mode 100644 index 0000000000..9d20d4d498 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-decaying-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-decaying-wave.png new file mode 100644 index 0000000000..a51077519d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-decaying-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-diagonal-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-diagonal-down-right.png new file mode 100644 index 0000000000..e0d6ff7064 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-diagonal-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-diagonal-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-diagonal-up-right.png new file mode 100644 index 0000000000..a55f45db05 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-diagonal-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-diamond.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-diamond.png new file mode 100644 index 0000000000..7519383c39 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-diamond.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-equal-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-equal-triangle.png new file mode 100644 index 0000000000..f146f7093a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-equal-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-figure-8-four.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-figure-8-four.png new file mode 100644 index 0000000000..bea4810c3c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-figure-8-four.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-football.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-football.png new file mode 100644 index 0000000000..1c1c7b7617 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-football.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-funnel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-funnel.png new file mode 100644 index 0000000000..db60f2696b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-funnel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-heart.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-heart.png new file mode 100644 index 0000000000..cc04c11fcf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-heart.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-heartbeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-heartbeat.png new file mode 100644 index 0000000000..564aa80589 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-heartbeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-hexagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-hexagon.png new file mode 100644 index 0000000000..0ae913f7d5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-hexagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-horizontal-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-horizontal-figure-8.png new file mode 100644 index 0000000000..a97dc81ceb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-horizontal-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-down.png new file mode 100644 index 0000000000..26fc019b7c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-left.png new file mode 100644 index 0000000000..3ec1a23b04 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-right.png new file mode 100644 index 0000000000..544137c4c9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-up.png new file mode 100644 index 0000000000..61031962f6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines.png new file mode 100644 index 0000000000..8c325a8013 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-loop-de-loop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-loop-de-loop.png new file mode 100644 index 0000000000..001a1f9487 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-loop-de-loop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-loops.png new file mode 100644 index 0000000000..680420fedc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-neutron.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-neutron.png new file mode 100644 index 0000000000..5b0baf10f7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-neutron.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-octagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-octagon.png new file mode 100644 index 0000000000..a698789658 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-octagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-parallelogram.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-parallelogram.png new file mode 100644 index 0000000000..3445edadea Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-parallelogram.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-peanut.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-peanut.png new file mode 100644 index 0000000000..33d04f7104 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-peanut.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-pentagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-pentagon.png new file mode 100644 index 0000000000..6b08348082 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-pentagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-point-star.png new file mode 100644 index 0000000000..caade5ee5f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-right-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-right-triangle.png new file mode 100644 index 0000000000..f14a053f59 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-right-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-s-curve-1.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-s-curve-1.png new file mode 100644 index 0000000000..6d10aaa363 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-s-curve-1.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-s-curve-2.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-s-curve-2.png new file mode 100644 index 0000000000..0d76559fe2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-s-curve-2.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-shapes.png new file mode 100644 index 0000000000..c6f6e7abd6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-sine-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-sine-wave.png new file mode 100644 index 0000000000..644a30d126 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-sine-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-spiral-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-spiral-left.png new file mode 100644 index 0000000000..bd63cd501d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-spiral-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-spiral-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-spiral-right.png new file mode 100644 index 0000000000..3efb9a0717 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-spiral-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-spiral.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-spiral.png new file mode 100644 index 0000000000..c5a4835f98 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-spiral.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-square.png new file mode 100644 index 0000000000..1a7d5bff2d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-stairs-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-stairs-down.png new file mode 100644 index 0000000000..9d120b0752 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-stairs-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-swoosh.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-swoosh.png new file mode 100644 index 0000000000..d4b63ae12a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-swoosh.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-teardrop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-teardrop.png new file mode 100644 index 0000000000..7697c99315 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-teardrop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-trapezoid.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-trapezoid.png new file mode 100644 index 0000000000..da7851f172 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-trapezoid.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-down-right.png new file mode 100644 index 0000000000..02cd1839c3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-down.png new file mode 100644 index 0000000000..2224c2766a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-up-right.png new file mode 100644 index 0000000000..8b6c687139 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-up.png new file mode 100644 index 0000000000..d445a85f03 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turn-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turns.png new file mode 100644 index 0000000000..0049994696 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-vertical-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-vertical-figure-8.png new file mode 100644 index 0000000000..7e69effb27 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-vertical-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-wave.png new file mode 100644 index 0000000000..ebaa1869ed Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-zigzag.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-zigzag.png new file mode 100644 index 0000000000..a79fa5f7c2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-motion-paths-zigzag.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-multiple.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-multiple.png new file mode 100644 index 0000000000..361ddecdab Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-multiple.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-none.png new file mode 100644 index 0000000000..edb13be473 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/animation-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-add-animation.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-add-animation.png new file mode 100644 index 0000000000..31769e47b3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-add-animation.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-add-layout.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-add-layout.png new file mode 100644 index 0000000000..c52c559ba7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-add-layout.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-add-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-add-slide-master.png new file mode 100644 index 0000000000..3d316fceae Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-add-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-addslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-addslide.png new file mode 100644 index 0000000000..2d1df0d865 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-addslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-panel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-panel.png new file mode 100644 index 0000000000..5dc2a88380 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-panel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-parameters.png new file mode 100644 index 0000000000..4a4cb97db5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-preview-start.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-preview-start.png new file mode 100644 index 0000000000..74eb59e492 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-preview-start.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-preview-stop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-preview-stop.png new file mode 100644 index 0000000000..97804c3b74 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-animation-preview-stop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-close-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-close-master.png new file mode 100644 index 0000000000..42568a132e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-close-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-gridlines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-gridlines.png new file mode 100644 index 0000000000..50fce2d963 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-gridlines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-guides.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-guides.png new file mode 100644 index 0000000000..2864205a8d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-guides.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-chart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-chart-placeholder.png new file mode 100644 index 0000000000..15fde29740 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-chart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-content-placeholder.png new file mode 100644 index 0000000000..e2f06077a2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-picture-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-picture-placeholder.png new file mode 100644 index 0000000000..433407e233 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-picture-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-smartart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-smartart-placeholder.png new file mode 100644 index 0000000000..3768a1eb61 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-smartart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-table-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-table-placeholder.png new file mode 100644 index 0000000000..c491a9e876 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-table-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-text-placeholder.png new file mode 100644 index 0000000000..314c069988 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-vertical-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-vertical-content-placeholder.png new file mode 100644 index 0000000000..1ef774d92f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-vertical-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-vertical-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-vertical-text-placeholder.png new file mode 100644 index 0000000000..a4b5ba6ebf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-ins-vertical-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-normal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-normal.png new file mode 100644 index 0000000000..0364b8745b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-normal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-pagenum.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-pagenum.png new file mode 100644 index 0000000000..b1bb4d8f83 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-pagenum.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-slide-master.png new file mode 100644 index 0000000000..2f8cd76d22 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-slidesize.png new file mode 100644 index 0000000000..064a4be0ec Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-clock.png new file mode 100644 index 0000000000..b2b3697112 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-cover.png new file mode 100644 index 0000000000..dcdedc2f40 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-fade.png new file mode 100644 index 0000000000..9a2791b2bb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-morph.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-morph.png new file mode 100644 index 0000000000..1c03736f87 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-morph.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-none.png new file mode 100644 index 0000000000..021b630189 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-push.png new file mode 100644 index 0000000000..3b04d58406 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-random.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-random.png new file mode 100644 index 0000000000..971f573467 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-random.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-split.png new file mode 100644 index 0000000000..3a170adf63 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-uncover.png new file mode 100644 index 0000000000..4ddfe739e6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-wipe.png new file mode 100644 index 0000000000..3ba8a85916 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-zoom.png new file mode 100644 index 0000000000..1588c30e41 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/big/btn-transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-animation-delay.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-animation-delay.png new file mode 100644 index 0000000000..bf3e5cd864 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-animation-delay.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-animation-duration.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-animation-duration.png new file mode 100644 index 0000000000..119411a158 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-animation-duration.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-animation-repeat.png new file mode 100644 index 0000000000..5b22286a3c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-animation-repeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-changeslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-changeslide.png new file mode 100644 index 0000000000..6964620815 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-changeslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-clear-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-clear-all.png new file mode 100644 index 0000000000..8797657b7a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-clear-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-clearstyle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-clearstyle.png new file mode 100644 index 0000000000..6668262819 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-clearstyle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-fullscreen.png new file mode 100644 index 0000000000..fa40294fef Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-highlighter-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-highlighter-tool.png new file mode 100644 index 0000000000..1fb8a9fd4c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-highlighter-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-horizontal-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-horizontal-guide.png new file mode 100644 index 0000000000..997d388a81 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-horizontal-guide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-ic-zoomtoslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..fb98ed2f1b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-ic-zoomtoslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-laser-pointer-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-laser-pointer-tool.png new file mode 100644 index 0000000000..92e3749595 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-laser-pointer-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-slide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-slide.png new file mode 100644 index 0000000000..17739afb9c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-slide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-thumbs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-thumbs.png new file mode 100644 index 0000000000..1295680ba9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-thumbs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-pen-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-pen-tool.png new file mode 100644 index 0000000000..1e2d7ce928 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-pen-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-play.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-play.png new file mode 100644 index 0000000000..78945a57af Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-play.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-presenter-view.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-presenter-view.png new file mode 100644 index 0000000000..18dce34dbe Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-presenter-view.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview-exit-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview-exit-fullscreen.png new file mode 100644 index 0000000000..aa2aed8e51 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview-exit-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview-pause.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview-pause.png new file mode 100644 index 0000000000..3ad9764c0b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview-pause.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview-transitions.png new file mode 100644 index 0000000000..af211e1dfd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview.png new file mode 100644 index 0000000000..e60d5db07e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-preview.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-slidesize.png new file mode 100644 index 0000000000..0edae13d98 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-transition-apply-all.png new file mode 100644 index 0000000000..38fe00ee8a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-trigger.png new file mode 100644 index 0000000000..63c015a2fc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-trigger.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-vertical-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-vertical-guide.png new file mode 100644 index 0000000000..6b8556aa1b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.5x/btn-vertical-guide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-blink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-blink.png new file mode 100644 index 0000000000..08e8c1c807 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-blink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-bold-flash.png new file mode 100644 index 0000000000..7900e65cca Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 0000000000..8298a81f11 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-brush-color.png new file mode 100644 index 0000000000..613148282d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-color-pulse.png new file mode 100644 index 0000000000..aa3ae81d4b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-complementary-color.png new file mode 100644 index 0000000000..d5e96da351 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-contrasting-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-contrasting-color.png new file mode 100644 index 0000000000..f240b53665 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-contrasting-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-custom.png new file mode 100644 index 0000000000..54ce7893a8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-darken.png new file mode 100644 index 0000000000..15e0f76376 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-desaturate.png new file mode 100644 index 0000000000..31bdfb206b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-fill-color.png new file mode 100644 index 0000000000..efca753ef6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-font-color.png new file mode 100644 index 0000000000..577d709ea4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 0000000000..d05f3d591c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-grow-with-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-grow-with-color.png new file mode 100644 index 0000000000..bd0f14b8c6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-grow-with-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-lighten.png new file mode 100644 index 0000000000..c754e721af Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-line-color.png new file mode 100644 index 0000000000..f8e781d4cf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-object-color.png new file mode 100644 index 0000000000..efca753ef6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-pulse.png new file mode 100644 index 0000000000..6b354a856a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-shimmer.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-shimmer.png new file mode 100644 index 0000000000..8c3f525396 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-shimmer.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-spin.png new file mode 100644 index 0000000000..4821b26094 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-teeter.png new file mode 100644 index 0000000000..5d738e97b7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-transparency.png new file mode 100644 index 0000000000..ea3aa7c3f4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-underline.png new file mode 100644 index 0000000000..c13aea6610 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-wave.png new file mode 100644 index 0000000000..e5dea6750f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-Spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-Spinner.png new file mode 100644 index 0000000000..b6230128ad Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-Spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-appear.png new file mode 100644 index 0000000000..b7c62c6bcc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-basic-zoom.png new file mode 100644 index 0000000000..859f472383 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-blinds.png new file mode 100644 index 0000000000..77289a4c5e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-boomerang.png new file mode 100644 index 0000000000..d1361c0e63 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-bounce.png new file mode 100644 index 0000000000..73ad31292e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-center-revolve.png new file mode 100644 index 0000000000..6bfa2f6fb1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-checkerboard.png new file mode 100644 index 0000000000..9cbfedc39f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-compress.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-compress.png new file mode 100644 index 0000000000..b154798530 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-compress.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-credits.png new file mode 100644 index 0000000000..48c5d43c1a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-curve-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-curve-up.png new file mode 100644 index 0000000000..7a397c40a6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-curve-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-custom.png new file mode 100644 index 0000000000..a3be4edcea Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-dissolve-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-dissolve-in.png new file mode 100644 index 0000000000..33f612f507 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-dissolve-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-drop.png new file mode 100644 index 0000000000..142494efc6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-expand.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-expand.png new file mode 100644 index 0000000000..50eca1a695 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-expand.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-fade.png new file mode 100644 index 0000000000..fd7039d6d4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-flip.png new file mode 100644 index 0000000000..6ec10fe4b9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-float-in.png new file mode 100644 index 0000000000..2831b5acaf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-float.png new file mode 100644 index 0000000000..cdd2e63f87 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-fly-in.png new file mode 100644 index 0000000000..ebcb19973e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-grow-turn.png new file mode 100644 index 0000000000..3a08b91fcd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-peek-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-peek-in.png new file mode 100644 index 0000000000..d42dae69cd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-peek-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-pinwheel.png new file mode 100644 index 0000000000..b6230128ad Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-random-bars.png new file mode 100644 index 0000000000..367fad7210 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-rise-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-rise-up.png new file mode 100644 index 0000000000..8c058be57b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-rise-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-shape.png new file mode 100644 index 0000000000..fd84baf0af Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-spiral-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-spiral-in.png new file mode 100644 index 0000000000..dcb84162f3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-spiral-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-split.png new file mode 100644 index 0000000000..d1fd22b498 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-strips.png new file mode 100644 index 0000000000..3325b14cff Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-swivel.png new file mode 100644 index 0000000000..20b97bddee Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-wedge.png new file mode 100644 index 0000000000..72cdc4ea49 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-wheel.png new file mode 100644 index 0000000000..37d4e07a0e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-whip.png new file mode 100644 index 0000000000..839bf1ed1d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-wipe.png new file mode 100644 index 0000000000..e111af11c0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-zoom.png new file mode 100644 index 0000000000..d4709de597 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-Dissolve-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-Dissolve-out.png new file mode 100644 index 0000000000..24a2a0b410 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-Dissolve-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-Peek-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-Peek-out.png new file mode 100644 index 0000000000..c32db07511 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-Peek-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-basic-zoom.png new file mode 100644 index 0000000000..3e3c3cc95e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-blinds.png new file mode 100644 index 0000000000..c431bb5d81 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-boomerang.png new file mode 100644 index 0000000000..c05f25987f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-bounce.png new file mode 100644 index 0000000000..148afb4a83 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-center-revolve.png new file mode 100644 index 0000000000..6a96f56633 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-checkerboard.png new file mode 100644 index 0000000000..625f623ff3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-collapse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-collapse.png new file mode 100644 index 0000000000..1ebd4181ca Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-collapse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-contract.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-contract.png new file mode 100644 index 0000000000..e36537267c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-contract.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-credits.png new file mode 100644 index 0000000000..3d2da09bb8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-curve-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-curve-down.png new file mode 100644 index 0000000000..cdad044268 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-curve-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-custom.png new file mode 100644 index 0000000000..760e09c836 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-disappear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-disappear.png new file mode 100644 index 0000000000..5f604709f6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-drop.png new file mode 100644 index 0000000000..46c93229ba Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-fade.png new file mode 100644 index 0000000000..85987ccf50 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-flip.png new file mode 100644 index 0000000000..65cd9dd2f5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-float-out.png new file mode 100644 index 0000000000..dc891a52e2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-float.png new file mode 100644 index 0000000000..b115694287 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-fly-out.png new file mode 100644 index 0000000000..910838cd49 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-pinwheel.png new file mode 100644 index 0000000000..ed3f64e061 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-random-bars.png new file mode 100644 index 0000000000..73b450df9a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-shape.png new file mode 100644 index 0000000000..087ae87cb0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-shrink-turn.png new file mode 100644 index 0000000000..2e5c720c9a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-sink-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-sink-down.png new file mode 100644 index 0000000000..ed095bfcc3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-sink-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-spinner.png new file mode 100644 index 0000000000..80e2920bb7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-spiral-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-spiral-out.png new file mode 100644 index 0000000000..61031dc3be Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-spiral-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-split.png new file mode 100644 index 0000000000..dc2ef613de Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-strips.png new file mode 100644 index 0000000000..82b398abcc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-swivel.png new file mode 100644 index 0000000000..c78da440e2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-wedge.png new file mode 100644 index 0000000000..beff5164a3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-wheel.png new file mode 100644 index 0000000000..d90be1981d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-whip.png new file mode 100644 index 0000000000..a910887f10 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-wipe.png new file mode 100644 index 0000000000..0bbdb0e35a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-zoom.png new file mode 100644 index 0000000000..0c80732382 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-4-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-4-point-star.png new file mode 100644 index 0000000000..32b03b31d3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-4-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-5-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-5-point-star.png new file mode 100644 index 0000000000..f1b99b45f4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-5-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-6-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-6-point-star.png new file mode 100644 index 0000000000..87a4fea512 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-6-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-8-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-8-point-star.png new file mode 100644 index 0000000000..d1f4b85437 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-8-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-Inverted-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-Inverted-square.png new file mode 100644 index 0000000000..dd4fa4c9ab Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-Inverted-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-Inverted-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-Inverted-triangle.png new file mode 100644 index 0000000000..2ca1366aac Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-Inverted-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-down.png new file mode 100644 index 0000000000..1f45f4c967 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-left.png new file mode 100644 index 0000000000..b0c7041de1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-right.png new file mode 100644 index 0000000000..7ad350fb7f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-up.png new file mode 100644 index 0000000000..340036cc49 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arc-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arcs.png new file mode 100644 index 0000000000..9758f0e881 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-bean.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-bean.png new file mode 100644 index 0000000000..70d3667322 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-bean.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-bounce-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-bounce-left.png new file mode 100644 index 0000000000..5ea6f528fe Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-bounce-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-bounce-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-bounce-right.png new file mode 100644 index 0000000000..4c11d3643b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-bounce-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-circle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-circle.png new file mode 100644 index 0000000000..197143b306 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-circle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-clever.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-clever.png new file mode 100644 index 0000000000..f6543b28dc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-clever.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-cresent-moon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-cresent-moon.png new file mode 100644 index 0000000000..76d5b74c21 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-cresent-moon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curved-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curved-square.png new file mode 100644 index 0000000000..0108fc8047 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curved-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curved-x.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curved-x.png new file mode 100644 index 0000000000..12579ad4f4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curved-x.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curvy-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curvy-left.png new file mode 100644 index 0000000000..21f541f5c6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curvy-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curvy-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curvy-right.png new file mode 100644 index 0000000000..82c5ebf0fc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curvy-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curvy-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curvy-star.png new file mode 100644 index 0000000000..7ae1eddab9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-curvy-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-custom-path.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-custom-path.png new file mode 100644 index 0000000000..a688397906 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-custom-path.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-custom.png new file mode 100644 index 0000000000..ebe7918cf2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-decaying-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-decaying-wave.png new file mode 100644 index 0000000000..532dcc7d62 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-decaying-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-diagonal-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-diagonal-down-right.png new file mode 100644 index 0000000000..2d89956074 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-diagonal-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-diagonal-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-diagonal-up-right.png new file mode 100644 index 0000000000..280a5cd6bf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-diagonal-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-diamond.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-diamond.png new file mode 100644 index 0000000000..69594c045a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-diamond.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-equal-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-equal-triangle.png new file mode 100644 index 0000000000..442338f656 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-equal-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-figure-8-four.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-figure-8-four.png new file mode 100644 index 0000000000..e034a48bd2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-figure-8-four.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-football.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-football.png new file mode 100644 index 0000000000..f811c2121a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-football.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-funnel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-funnel.png new file mode 100644 index 0000000000..477da6001a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-funnel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-heart.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-heart.png new file mode 100644 index 0000000000..266fa5506a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-heart.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-heartbeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-heartbeat.png new file mode 100644 index 0000000000..5f1686b37d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-heartbeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-hexagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-hexagon.png new file mode 100644 index 0000000000..698089ddd2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-hexagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-horizontal-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-horizontal-figure-8.png new file mode 100644 index 0000000000..3d1f919c5c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-horizontal-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-down.png new file mode 100644 index 0000000000..4a39b0e090 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-left.png new file mode 100644 index 0000000000..e5b5045be3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-right.png new file mode 100644 index 0000000000..dfe4015242 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-up.png new file mode 100644 index 0000000000..42a1c1e10b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines.png new file mode 100644 index 0000000000..d3d7fe7377 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-loop-de-loop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-loop-de-loop.png new file mode 100644 index 0000000000..6879aef733 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-loop-de-loop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-loops.png new file mode 100644 index 0000000000..5ea24f450a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-neutron.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-neutron.png new file mode 100644 index 0000000000..da7c5a473c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-neutron.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-octagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-octagon.png new file mode 100644 index 0000000000..a30c196d4e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-octagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-parallelogram.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-parallelogram.png new file mode 100644 index 0000000000..25b112a20c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-parallelogram.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-peanut.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-peanut.png new file mode 100644 index 0000000000..a617e620ca Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-peanut.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-pentagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-pentagon.png new file mode 100644 index 0000000000..73dfdbf33e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-pentagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-point-star.png new file mode 100644 index 0000000000..808fe4f4f4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-right-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-right-triangle.png new file mode 100644 index 0000000000..cbb18dce32 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-right-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-s-curve-1.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-s-curve-1.png new file mode 100644 index 0000000000..a26592ac87 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-s-curve-1.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-s-curve-2.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-s-curve-2.png new file mode 100644 index 0000000000..3e270192b5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-s-curve-2.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-shapes.png new file mode 100644 index 0000000000..3b47a4b7f8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-sine-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-sine-wave.png new file mode 100644 index 0000000000..b7074f476d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-sine-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-spiral-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-spiral-left.png new file mode 100644 index 0000000000..6f42327e6c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-spiral-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-spiral-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-spiral-right.png new file mode 100644 index 0000000000..6d55f2a8c9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-spiral-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-spiral.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-spiral.png new file mode 100644 index 0000000000..0fa3526707 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-spiral.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-square.png new file mode 100644 index 0000000000..3416f2777c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-stairs-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-stairs-down.png new file mode 100644 index 0000000000..b0fd4dc61c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-stairs-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-swoosh.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-swoosh.png new file mode 100644 index 0000000000..9f8db90174 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-swoosh.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-teardrop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-teardrop.png new file mode 100644 index 0000000000..a29e12f360 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-teardrop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-trapezoid.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-trapezoid.png new file mode 100644 index 0000000000..a4e30aae5a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-trapezoid.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-down-right.png new file mode 100644 index 0000000000..70f9ded128 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-down.png new file mode 100644 index 0000000000..544b450aa2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-up-right.png new file mode 100644 index 0000000000..ae749d39b5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-up.png new file mode 100644 index 0000000000..a4d81e911c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turn-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turns.png new file mode 100644 index 0000000000..6584b3f186 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-vertical-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-vertical-figure-8.png new file mode 100644 index 0000000000..60f5f719cc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-vertical-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-wave.png new file mode 100644 index 0000000000..9acc0f2675 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-zigzag.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-zigzag.png new file mode 100644 index 0000000000..d8527b97e0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-motion-paths-zigzag.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-multiple.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-multiple.png new file mode 100644 index 0000000000..2a1bcbfbe9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-multiple.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-none.png new file mode 100644 index 0000000000..83b5683763 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/animation-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-add-animation.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-add-animation.png new file mode 100644 index 0000000000..a0d7c4fa61 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-add-animation.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-add-layout.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-add-layout.png new file mode 100644 index 0000000000..4cf091ce6c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-add-layout.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-add-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-add-slide-master.png new file mode 100644 index 0000000000..29a3597b60 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-add-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-addslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-addslide.png new file mode 100644 index 0000000000..c91c6cff82 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-addslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-panel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-panel.png new file mode 100644 index 0000000000..7618c3ec31 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-panel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-parameters.png new file mode 100644 index 0000000000..d142f93d78 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-preview-start.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-preview-start.png new file mode 100644 index 0000000000..5a32596417 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-preview-start.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-preview-stop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-preview-stop.png new file mode 100644 index 0000000000..0e3eba1031 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-animation-preview-stop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-close-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-close-master.png new file mode 100644 index 0000000000..9761ff4b9a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-close-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-gridlines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-gridlines.png new file mode 100644 index 0000000000..1897412296 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-gridlines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-guides.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-guides.png new file mode 100644 index 0000000000..cfdaf3a4d5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-guides.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-chart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-chart-placeholder.png new file mode 100644 index 0000000000..27bfe0c9fb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-chart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-content-placeholder.png new file mode 100644 index 0000000000..52b765501b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-picture-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-picture-placeholder.png new file mode 100644 index 0000000000..16567759b3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-picture-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-smartart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-smartart-placeholder.png new file mode 100644 index 0000000000..3f1c8f0a32 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-smartart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-table-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-table-placeholder.png new file mode 100644 index 0000000000..d2d96db52e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-table-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-text-placeholder.png new file mode 100644 index 0000000000..7d245cb514 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-vertical-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-vertical-content-placeholder.png new file mode 100644 index 0000000000..13750b22fd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-vertical-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-vertical-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-vertical-text-placeholder.png new file mode 100644 index 0000000000..9e81681310 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-ins-vertical-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-normal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-normal.png new file mode 100644 index 0000000000..0e5bfec994 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-normal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-pagenum.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-pagenum.png new file mode 100644 index 0000000000..b63ed807f5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-pagenum.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-slide-master.png new file mode 100644 index 0000000000..1ca1c6e3ca Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-slidesize.png new file mode 100644 index 0000000000..ce17deaba2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-clock.png new file mode 100644 index 0000000000..23fa6b98cf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-cover.png new file mode 100644 index 0000000000..1f0107cd93 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-fade.png new file mode 100644 index 0000000000..8882440a9a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-morph.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-morph.png new file mode 100644 index 0000000000..0627e29214 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-morph.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-none.png new file mode 100644 index 0000000000..d2a54336f8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-push.png new file mode 100644 index 0000000000..d337d1f14b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-random.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-random.png new file mode 100644 index 0000000000..6357480b87 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-random.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-split.png new file mode 100644 index 0000000000..32fe07b995 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-uncover.png new file mode 100644 index 0000000000..de1da0c3e1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-wipe.png new file mode 100644 index 0000000000..2c0fcd947c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-zoom.png new file mode 100644 index 0000000000..cea132dd47 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/big/btn-transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-animation-delay.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-animation-delay.png new file mode 100644 index 0000000000..25c000e198 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-animation-delay.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-animation-duration.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-animation-duration.png new file mode 100644 index 0000000000..8e83809ecb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-animation-duration.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-animation-repeat.png new file mode 100644 index 0000000000..201e7ace20 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-animation-repeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-changeslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-changeslide.png new file mode 100644 index 0000000000..422de5f81f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-changeslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-clear-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-clear-all.png new file mode 100644 index 0000000000..489284e01c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-clear-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-clearstyle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-clearstyle.png new file mode 100644 index 0000000000..fc0f217f30 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-clearstyle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-fullscreen.png new file mode 100644 index 0000000000..48e82677cc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-highlighter-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-highlighter-tool.png new file mode 100644 index 0000000000..dc8eaa00ef Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-highlighter-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-horizontal-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-horizontal-guide.png new file mode 100644 index 0000000000..9bda887101 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-horizontal-guide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-ic-zoomtoslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..93b5e3ec30 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-ic-zoomtoslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-laser-pointer-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-laser-pointer-tool.png new file mode 100644 index 0000000000..0d2c994323 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-laser-pointer-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-slide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-slide.png new file mode 100644 index 0000000000..d0702f5cb1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-slide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-thumbs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-thumbs.png new file mode 100644 index 0000000000..f29ecabfc0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-thumbs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-pen-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-pen-tool.png new file mode 100644 index 0000000000..18470f64d8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-pen-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-play.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-play.png new file mode 100644 index 0000000000..dc342f4ba0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-play.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-presenter-view.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-presenter-view.png new file mode 100644 index 0000000000..b3efaebff5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-presenter-view.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview-exit-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview-exit-fullscreen.png new file mode 100644 index 0000000000..28e608d09d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview-exit-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview-pause.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview-pause.png new file mode 100644 index 0000000000..a8090f7134 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview-pause.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview-transitions.png new file mode 100644 index 0000000000..54390050af Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview.png new file mode 100644 index 0000000000..e6a5cfe670 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-preview.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-slidesize.png new file mode 100644 index 0000000000..0df56df4a5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-transition-apply-all.png new file mode 100644 index 0000000000..62657e93e2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-trigger.png new file mode 100644 index 0000000000..e30bad3dfb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-trigger.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-vertical-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-vertical-guide.png new file mode 100644 index 0000000000..681d7a6039 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1.75x/btn-vertical-guide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-blink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-blink.png new file mode 100644 index 0000000000..1acf55ac5f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-blink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-bold-flash.png new file mode 100644 index 0000000000..a82e909853 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 0000000000..987286573c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-brush-color.png new file mode 100644 index 0000000000..9b605bc4de Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-color-pulse.png new file mode 100644 index 0000000000..83723fb5d6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-complementary-color.png new file mode 100644 index 0000000000..2bb6d07612 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-contrasting-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-contrasting-color.png new file mode 100644 index 0000000000..55bae67dd4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-contrasting-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-custom.png new file mode 100644 index 0000000000..ead8797a0c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-darken.png new file mode 100644 index 0000000000..50dd779d85 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-desaturate.png new file mode 100644 index 0000000000..d689f83cff Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-fill-color.png new file mode 100644 index 0000000000..e2732b03af Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-font-color.png new file mode 100644 index 0000000000..04c7607bc2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 0000000000..079253c73a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-grow-with-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-grow-with-color.png new file mode 100644 index 0000000000..9af287fe36 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-grow-with-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-lighten.png new file mode 100644 index 0000000000..69da3c3ac3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-line-color.png new file mode 100644 index 0000000000..dc010eff6b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-object-color.png new file mode 100644 index 0000000000..e2732b03af Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-pulse.png new file mode 100644 index 0000000000..00206b3eba Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-shimmer.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-shimmer.png new file mode 100644 index 0000000000..bc235ade25 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-shimmer.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-spin.png new file mode 100644 index 0000000000..5e8dd88a39 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-teeter.png new file mode 100644 index 0000000000..6ebfa6fd81 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-transparency.png new file mode 100644 index 0000000000..5e2e9214cd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-underline.png new file mode 100644 index 0000000000..da799f1a56 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-wave.png new file mode 100644 index 0000000000..be93b1889c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-Spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-Spinner.png new file mode 100644 index 0000000000..5e1641ca38 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-Spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-appear.png new file mode 100644 index 0000000000..c2bd64e066 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-basic-zoom.png new file mode 100644 index 0000000000..868d1b2fb1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-blinds.png new file mode 100644 index 0000000000..205d5e100e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-boomerang.png new file mode 100644 index 0000000000..e214549e0c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-bounce.png new file mode 100644 index 0000000000..cf5040b08b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-center-revolve.png new file mode 100644 index 0000000000..f188658167 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-checkerboard.png new file mode 100644 index 0000000000..5d06955edb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-compress.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-compress.png new file mode 100644 index 0000000000..57677e9e69 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-compress.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-credits.png new file mode 100644 index 0000000000..ca5f5d03d9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-curve-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-curve-up.png new file mode 100644 index 0000000000..63b982d58e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-curve-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-custom.png new file mode 100644 index 0000000000..34282ffe37 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-dissolve-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-dissolve-in.png new file mode 100644 index 0000000000..6dac13cbcf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-dissolve-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-drop.png new file mode 100644 index 0000000000..5043579f14 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-expand.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-expand.png new file mode 100644 index 0000000000..d9f9c409f6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-expand.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-fade.png new file mode 100644 index 0000000000..cbb314eb49 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-flip.png new file mode 100644 index 0000000000..b9f82b9cdd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-float-in.png new file mode 100644 index 0000000000..3f6fc053d7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-float.png new file mode 100644 index 0000000000..aef88a1692 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-fly-in.png new file mode 100644 index 0000000000..5ad49773f9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-grow-turn.png new file mode 100644 index 0000000000..9fa0d46181 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-peek-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-peek-in.png new file mode 100644 index 0000000000..b76f1b8837 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-peek-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-pinwheel.png new file mode 100644 index 0000000000..5e1641ca38 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-random-bars.png new file mode 100644 index 0000000000..afb0289afb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-rise-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-rise-up.png new file mode 100644 index 0000000000..acd9884e40 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-rise-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-shape.png new file mode 100644 index 0000000000..d9ef515f1d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-spiral-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-spiral-in.png new file mode 100644 index 0000000000..af15f578aa Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-spiral-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-split.png new file mode 100644 index 0000000000..2585a6d4b1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-strips.png new file mode 100644 index 0000000000..a4274260e1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-swivel.png new file mode 100644 index 0000000000..d721674386 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-wedge.png new file mode 100644 index 0000000000..ee94296baf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-wheel.png new file mode 100644 index 0000000000..220d5f03c7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-whip.png new file mode 100644 index 0000000000..a451963e28 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-wipe.png new file mode 100644 index 0000000000..79287c8277 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-zoom.png new file mode 100644 index 0000000000..5ab173dcf3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-Dissolve-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-Dissolve-out.png new file mode 100644 index 0000000000..0caeb59bd2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-Dissolve-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-Peek-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-Peek-out.png new file mode 100644 index 0000000000..c2b21a0c07 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-Peek-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-basic-zoom.png new file mode 100644 index 0000000000..1b41f93e2b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-blinds.png new file mode 100644 index 0000000000..fa3c2f4d27 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-boomerang.png new file mode 100644 index 0000000000..c81d777140 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-bounce.png new file mode 100644 index 0000000000..4f3cf0c4d0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-center-revolve.png new file mode 100644 index 0000000000..2b57a7a9b9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-checkerboard.png new file mode 100644 index 0000000000..65a8a8d24b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-collapse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-collapse.png new file mode 100644 index 0000000000..377587d34d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-collapse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-contract.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-contract.png new file mode 100644 index 0000000000..c030b8ab1b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-contract.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-credits.png new file mode 100644 index 0000000000..e8a1e2acef Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-curve-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-curve-down.png new file mode 100644 index 0000000000..7379bfa59d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-curve-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-custom.png new file mode 100644 index 0000000000..eee41d9a82 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-disappear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-disappear.png new file mode 100644 index 0000000000..bf189e002a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-drop.png new file mode 100644 index 0000000000..a63152aab4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-fade.png new file mode 100644 index 0000000000..b5c676783c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-flip.png new file mode 100644 index 0000000000..a05c258055 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-float-out.png new file mode 100644 index 0000000000..2d3bf461c1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-float.png new file mode 100644 index 0000000000..151c7f2f94 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-fly-out.png new file mode 100644 index 0000000000..f51abc4562 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-pinwheel.png new file mode 100644 index 0000000000..a64b12ecd1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-random-bars.png new file mode 100644 index 0000000000..7ab0558083 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-shape.png new file mode 100644 index 0000000000..f3dafd78a9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-shrink-turn.png new file mode 100644 index 0000000000..b4bd6ef955 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-sink-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-sink-down.png new file mode 100644 index 0000000000..05e196c165 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-sink-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-spinner.png new file mode 100644 index 0000000000..a64b12ecd1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-spiral-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-spiral-out.png new file mode 100644 index 0000000000..c3abccc206 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-spiral-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-split.png new file mode 100644 index 0000000000..d8ead95a63 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-strips.png new file mode 100644 index 0000000000..0abe4aaf90 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-swivel.png new file mode 100644 index 0000000000..01dd604c25 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-wedge.png new file mode 100644 index 0000000000..c6abf4dded Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-wheel.png new file mode 100644 index 0000000000..140707e4ab Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-whip.png new file mode 100644 index 0000000000..cf531fe939 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-wipe.png new file mode 100644 index 0000000000..bcc4df4c15 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-zoom.png new file mode 100644 index 0000000000..6b70abaa05 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-4-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-4-point-star.png new file mode 100644 index 0000000000..8196afd2eb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-4-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-5-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-5-point-star.png new file mode 100644 index 0000000000..f0b76df139 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-5-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-6-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-6-point-star.png new file mode 100644 index 0000000000..facb4b67ee Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-6-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-8-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-8-point-star.png new file mode 100644 index 0000000000..cb315fda85 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-8-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-Inverted-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-Inverted-square.png new file mode 100644 index 0000000000..62e7246eb6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-Inverted-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-Inverted-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-Inverted-triangle.png new file mode 100644 index 0000000000..acc37dc80d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-Inverted-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-down.png new file mode 100644 index 0000000000..eb031df29d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-left.png new file mode 100644 index 0000000000..07f6af9152 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-right.png new file mode 100644 index 0000000000..5823353ecb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-up.png new file mode 100644 index 0000000000..f1a1027f93 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arc-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arcs.png new file mode 100644 index 0000000000..ab0c2e0860 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-bean.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-bean.png new file mode 100644 index 0000000000..af577a5301 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-bean.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-bounce-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-bounce-left.png new file mode 100644 index 0000000000..6ced7d5763 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-bounce-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-bounce-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-bounce-right.png new file mode 100644 index 0000000000..67c24f1340 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-bounce-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-circle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-circle.png new file mode 100644 index 0000000000..e53d9f6bd2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-circle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-clever.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-clever.png new file mode 100644 index 0000000000..339077cb3f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-clever.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-cresent-moon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-cresent-moon.png new file mode 100644 index 0000000000..f5cd2d1ef9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-cresent-moon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curved-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curved-square.png new file mode 100644 index 0000000000..e9b69b7c0f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curved-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curved-x.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curved-x.png new file mode 100644 index 0000000000..f9b51ddbaf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curved-x.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curvy-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curvy-left.png new file mode 100644 index 0000000000..80522522d4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curvy-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curvy-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curvy-right.png new file mode 100644 index 0000000000..741a1c2c5f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curvy-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curvy-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curvy-star.png new file mode 100644 index 0000000000..f0be204f3e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-curvy-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-custom-path.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-custom-path.png new file mode 100644 index 0000000000..3d45e5d9a4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-custom-path.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-custom.png new file mode 100644 index 0000000000..8b51acacf2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-decaying-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-decaying-wave.png new file mode 100644 index 0000000000..c80f96a426 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-decaying-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-diagonal-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-diagonal-down-right.png new file mode 100644 index 0000000000..58ee941e76 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-diagonal-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-diagonal-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-diagonal-up-right.png new file mode 100644 index 0000000000..93c103c0ee Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-diagonal-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-diamond.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-diamond.png new file mode 100644 index 0000000000..8a180f4ed3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-diamond.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-equal-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-equal-triangle.png new file mode 100644 index 0000000000..536deed53e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-equal-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-figure-8-four.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-figure-8-four.png new file mode 100644 index 0000000000..fdd2f147a4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-figure-8-four.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-football.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-football.png new file mode 100644 index 0000000000..0005a806e4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-football.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-funnel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-funnel.png new file mode 100644 index 0000000000..5a5e6e4438 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-funnel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-heart.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-heart.png new file mode 100644 index 0000000000..92df636a4a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-heart.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-heartbeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-heartbeat.png new file mode 100644 index 0000000000..e8d2b34ede Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-heartbeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-hexagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-hexagon.png new file mode 100644 index 0000000000..5b41c91b2d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-hexagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-horizontal-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-horizontal-figure-8.png new file mode 100644 index 0000000000..1a814e4368 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-horizontal-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-down.png new file mode 100644 index 0000000000..50bef1e833 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-left.png new file mode 100644 index 0000000000..c514d0b47f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-right.png new file mode 100644 index 0000000000..d1b4c13c3b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-up.png new file mode 100644 index 0000000000..83e940724d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines.png new file mode 100644 index 0000000000..158d833b2b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-loop-de-loop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-loop-de-loop.png new file mode 100644 index 0000000000..83b62ab089 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-loop-de-loop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-loops.png new file mode 100644 index 0000000000..2bcbbf89f5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-neutron.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-neutron.png new file mode 100644 index 0000000000..1e9820197f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-neutron.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-octagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-octagon.png new file mode 100644 index 0000000000..8b83c4445e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-octagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-parallelogram.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-parallelogram.png new file mode 100644 index 0000000000..811176d831 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-parallelogram.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-peanut.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-peanut.png new file mode 100644 index 0000000000..4ccdcb5474 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-peanut.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-pentagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-pentagon.png new file mode 100644 index 0000000000..a0db0a4c83 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-pentagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-point-star.png new file mode 100644 index 0000000000..4e202876eb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-right-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-right-triangle.png new file mode 100644 index 0000000000..e95075c89f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-right-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-s-curve-1.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-s-curve-1.png new file mode 100644 index 0000000000..3f8bc9a73f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-s-curve-1.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-s-curve-2.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-s-curve-2.png new file mode 100644 index 0000000000..ac01a34812 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-s-curve-2.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-shapes.png new file mode 100644 index 0000000000..f12946cadb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-sine-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-sine-wave.png new file mode 100644 index 0000000000..6170ce6b9b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-sine-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-spiral-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-spiral-left.png new file mode 100644 index 0000000000..2d42cca0d5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-spiral-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-spiral-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-spiral-right.png new file mode 100644 index 0000000000..19c7597991 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-spiral-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-spiral.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-spiral.png new file mode 100644 index 0000000000..5a7aaceb8b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-spiral.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-square.png new file mode 100644 index 0000000000..5985e085ed Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-stairs-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-stairs-down.png new file mode 100644 index 0000000000..ba1f3deab3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-stairs-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-swoosh.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-swoosh.png new file mode 100644 index 0000000000..bc49beb62e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-swoosh.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-teardrop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-teardrop.png new file mode 100644 index 0000000000..9c4f113908 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-teardrop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-trapezoid.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-trapezoid.png new file mode 100644 index 0000000000..92ba4838ea Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-trapezoid.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-down-right.png new file mode 100644 index 0000000000..78c961fa90 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-down.png new file mode 100644 index 0000000000..09aa1b28ec Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-up-right.png new file mode 100644 index 0000000000..67ed19b081 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-up.png new file mode 100644 index 0000000000..0ffb6b8b37 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turn-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turns.png new file mode 100644 index 0000000000..3a60e9dc30 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-vertical-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-vertical-figure-8.png new file mode 100644 index 0000000000..3a5df5f24f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-vertical-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-wave.png new file mode 100644 index 0000000000..992938999a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-zigzag.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-zigzag.png new file mode 100644 index 0000000000..98201fda6e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-motion-paths-zigzag.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-multiple.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-multiple.png new file mode 100644 index 0000000000..16472a5f6c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-multiple.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-none.png new file mode 100644 index 0000000000..4d00291ad6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/animation-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-add-animation.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-add-animation.png new file mode 100644 index 0000000000..c4732870ab Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-add-animation.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-add-layout.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-add-layout.png new file mode 100644 index 0000000000..3c73472115 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-add-layout.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-add-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-add-slide-master.png new file mode 100644 index 0000000000..b9cf1228da Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-add-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-addslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-addslide.png new file mode 100644 index 0000000000..7c4e367c5d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-addslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-panel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-panel.png new file mode 100644 index 0000000000..76427aa665 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-panel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-parameters.png new file mode 100644 index 0000000000..2d4909439c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-preview-start.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-preview-start.png new file mode 100644 index 0000000000..85a0442feb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-preview-start.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-preview-stop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-preview-stop.png new file mode 100644 index 0000000000..73e78b4414 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-animation-preview-stop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-close-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-close-master.png new file mode 100644 index 0000000000..2c35cec72d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-close-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-gridlines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-gridlines.png new file mode 100644 index 0000000000..910cc3f9ed Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-gridlines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-guides.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-guides.png new file mode 100644 index 0000000000..a6f69996a5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-guides.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-chart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-chart-placeholder.png new file mode 100644 index 0000000000..8da333bd20 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-chart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-content-placeholder.png new file mode 100644 index 0000000000..dfe6077408 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-picture-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-picture-placeholder.png new file mode 100644 index 0000000000..9a60c41893 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-picture-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-smartart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-smartart-placeholder.png new file mode 100644 index 0000000000..f99fc82d28 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-smartart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-table-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-table-placeholder.png new file mode 100644 index 0000000000..7007689fdb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-table-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-text-placeholder.png new file mode 100644 index 0000000000..d5c3c49fb3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-vertical-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-vertical-content-placeholder.png new file mode 100644 index 0000000000..980bf972cf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-vertical-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-vertical-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-vertical-text-placeholder.png new file mode 100644 index 0000000000..d8661acffe Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-ins-vertical-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-normal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-normal.png new file mode 100644 index 0000000000..82ca2d5cb4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-normal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-pagenum.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-pagenum.png new file mode 100644 index 0000000000..222f85a60b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-pagenum.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-slide-master.png new file mode 100644 index 0000000000..62adfa96eb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-slidesize.png new file mode 100644 index 0000000000..cbfa85c1ef Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-clock.png new file mode 100644 index 0000000000..a6a1be3472 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-cover.png new file mode 100644 index 0000000000..3a27397394 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-fade.png new file mode 100644 index 0000000000..a0eae75642 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-morph.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-morph.png new file mode 100644 index 0000000000..3c95ba2221 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-morph.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-none.png new file mode 100644 index 0000000000..66eca1f874 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-push.png new file mode 100644 index 0000000000..adaf00297c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-random.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-random.png new file mode 100644 index 0000000000..f4ab2f84e1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-random.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-split.png new file mode 100644 index 0000000000..3a143282fd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-uncover.png new file mode 100644 index 0000000000..6b7c5b48d4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-wipe.png new file mode 100644 index 0000000000..32deb5c1ce Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-zoom.png new file mode 100644 index 0000000000..f2f7c7b2bc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/big/btn-transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-animation-delay.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-animation-delay.png new file mode 100644 index 0000000000..9490c0eeca Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-animation-delay.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-animation-duration.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-animation-duration.png new file mode 100644 index 0000000000..29e1f9bd5d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-animation-duration.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-animation-repeat.png new file mode 100644 index 0000000000..f27c256262 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-animation-repeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-changeslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-changeslide.png new file mode 100644 index 0000000000..36e0485dc5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-changeslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-clear-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-clear-all.png new file mode 100644 index 0000000000..07762b4f12 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-clear-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-clearstyle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-clearstyle.png new file mode 100644 index 0000000000..c748b929cc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-clearstyle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-fullscreen.png new file mode 100644 index 0000000000..d05198c46a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-highlighter-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-highlighter-tool.png new file mode 100644 index 0000000000..cc4ba16ff4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-highlighter-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-horizontal-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-horizontal-guide.png new file mode 100644 index 0000000000..cf47751595 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-horizontal-guide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-ic-zoomtoslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..b68e8971bb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-ic-zoomtoslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-laser-pointer-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-laser-pointer-tool.png new file mode 100644 index 0000000000..3d606e714e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-laser-pointer-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-menu-slide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-menu-slide.png new file mode 100644 index 0000000000..c83af9bd8f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-menu-slide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-menu-thumbs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-menu-thumbs.png new file mode 100644 index 0000000000..2d85fd5f79 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-menu-thumbs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-pen-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-pen-tool.png new file mode 100644 index 0000000000..540eea0fa2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-pen-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-play.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-play.png new file mode 100644 index 0000000000..51acf4a8bd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-play.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-presenter-view.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-presenter-view.png new file mode 100644 index 0000000000..ef4f30519f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-presenter-view.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview-exit-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview-exit-fullscreen.png new file mode 100644 index 0000000000..537b60641c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview-exit-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview-pause.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview-pause.png new file mode 100644 index 0000000000..a44d6cf04c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview-pause.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview-transitions.png new file mode 100644 index 0000000000..cfaac000f4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview.png new file mode 100644 index 0000000000..94a9040a5f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-preview.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-slidesize.png new file mode 100644 index 0000000000..bb4eb67eb1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-transition-apply-all.png new file mode 100644 index 0000000000..842cc1312f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-trigger.png new file mode 100644 index 0000000000..686d653117 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-trigger.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-vertical-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-vertical-guide.png new file mode 100644 index 0000000000..a999ce559e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/1x/btn-vertical-guide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-bold-flash.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-bold-flash.svg new file mode 100644 index 0000000000..096d6e0817 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-bold-flash.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-bold-reveal.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-bold-reveal.svg new file mode 100644 index 0000000000..f778b9588e --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-bold-reveal.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-brush-color.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-brush-color.svg new file mode 100644 index 0000000000..e5c0b0d536 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-brush-color.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-color-pulse.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-color-pulse.svg new file mode 100644 index 0000000000..ea844b18c5 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-color-pulse.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-complementary-color.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-complementary-color.svg new file mode 100644 index 0000000000..990c60f9a3 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-complementary-color.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-custom.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-custom.svg new file mode 100644 index 0000000000..0e8bcadafe --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-custom.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-darken.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-darken.svg new file mode 100644 index 0000000000..146b3f7f2d --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-darken.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-desaturate.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-desaturate.svg new file mode 100644 index 0000000000..3bf3cd81b8 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-desaturate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-fill-color.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-fill-color.svg new file mode 100644 index 0000000000..0b333b5419 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-fill-color.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-font-color.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-font-color.svg new file mode 100644 index 0000000000..15b8e7c35b --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-font-color.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-grow-or-shrink.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-grow-or-shrink.svg new file mode 100644 index 0000000000..952f289c05 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-grow-or-shrink.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-lighten.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-lighten.svg new file mode 100644 index 0000000000..9f7db22159 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-lighten.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-line-color.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-line-color.svg new file mode 100644 index 0000000000..a1fdd1d4c6 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-line-color.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-object-color.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-object-color.svg new file mode 100644 index 0000000000..0b333b5419 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-object-color.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-pulse.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-pulse.svg new file mode 100644 index 0000000000..2bf3bcb502 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-pulse.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-spin.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-spin.svg new file mode 100644 index 0000000000..e928424c99 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-spin.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-teeter.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-teeter.svg new file mode 100644 index 0000000000..af85e560be --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-teeter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-transparency.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-transparency.svg new file mode 100644 index 0000000000..884115191c --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-transparency.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-underline.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-underline.svg new file mode 100644 index 0000000000..4286fdb476 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-underline.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-wave.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-wave.svg new file mode 100644 index 0000000000..a9a8029e10 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-emphasis-wave.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-appear.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-appear.svg new file mode 100644 index 0000000000..acee128723 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-appear.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-bounce.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-bounce.svg new file mode 100644 index 0000000000..a708f2bf13 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-bounce.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-custom.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-custom.svg new file mode 100644 index 0000000000..ea5f763601 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-custom.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-fade.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-fade.svg new file mode 100644 index 0000000000..17eeedac00 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-fade.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-float-in.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-float-in.svg new file mode 100644 index 0000000000..c2241f4d6a --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-float-in.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-fly-in.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-fly-in.svg new file mode 100644 index 0000000000..53d74f8707 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-fly-in.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-grow-turn.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-grow-turn.svg new file mode 100644 index 0000000000..4a12640aa7 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-grow-turn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-random-bars.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-random-bars.svg new file mode 100644 index 0000000000..0dacf603ac --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-random-bars.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-shape.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-shape.svg new file mode 100644 index 0000000000..9ebd95e806 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-shape.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-split.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-split.svg new file mode 100644 index 0000000000..cde9e946a0 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-split.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-swivel.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-swivel.svg new file mode 100644 index 0000000000..ae45f0efc9 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-swivel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-wheel.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-wheel.svg new file mode 100644 index 0000000000..17df5438a9 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-wheel.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-wipe.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-wipe.svg new file mode 100644 index 0000000000..c302b27b7a --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-wipe.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-zoom.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-zoom.svg new file mode 100644 index 0000000000..17c8910ad2 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-entrance-zoom.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-bounce.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-bounce.svg new file mode 100644 index 0000000000..d0b5280059 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-bounce.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-custom.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-custom.svg new file mode 100644 index 0000000000..178aa9f805 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-custom.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-disappear.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-disappear.svg new file mode 100644 index 0000000000..ab2129ffe5 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-disappear.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-fade.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-fade.svg new file mode 100644 index 0000000000..8615536c96 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-fade.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-float-out.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-float-out.svg new file mode 100644 index 0000000000..f678c8690a --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-float-out.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-fly-out.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-fly-out.svg new file mode 100644 index 0000000000..e62b401f4e --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-fly-out.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-random-bars.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-random-bars.svg new file mode 100644 index 0000000000..29f56d9f44 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-random-bars.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-shape.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-shape.svg new file mode 100644 index 0000000000..e144a7f0da --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-shape.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-shrink-turn.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-shrink-turn.svg new file mode 100644 index 0000000000..867d786b94 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-shrink-turn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-split.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-split.svg new file mode 100644 index 0000000000..118b6b01aa --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-split.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-swivel.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-swivel.svg new file mode 100644 index 0000000000..b87ae3754c --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-swivel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-wheel.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-wheel.svg new file mode 100644 index 0000000000..004a993e42 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-wheel.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-wipe.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-wipe.svg new file mode 100644 index 0000000000..0b7eec2734 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-wipe.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-zoom.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-zoom.svg new file mode 100644 index 0000000000..2d4b892e78 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-exit-zoom.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-arcs.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-arcs.svg new file mode 100644 index 0000000000..4fa449774e --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-arcs.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-custom-path.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-custom-path.svg new file mode 100644 index 0000000000..11e000ab31 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-custom-path.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-custom.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-custom.svg new file mode 100644 index 0000000000..c8f51d3f3d --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-custom.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-lines.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-lines.svg new file mode 100644 index 0000000000..6ddc257665 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-lines.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-loops.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-loops.svg new file mode 100644 index 0000000000..57a4a1a0be --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-loops.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-shapes.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-shapes.svg new file mode 100644 index 0000000000..dc051365df --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-shapes.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-turns.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-turns.svg new file mode 100644 index 0000000000..be7d122841 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-motion-paths-turns.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-multiple.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-multiple.svg new file mode 100644 index 0000000000..cd6b64d005 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-multiple.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-none.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-none.svg new file mode 100644 index 0000000000..b106cd72c8 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/animation-none.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-add-animation.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-add-animation.svg new file mode 100644 index 0000000000..3bb3a92249 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-add-animation.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-add-layout.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-add-layout.svg new file mode 100644 index 0000000000..a879eff91c --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-add-layout.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-add-slide-master.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-add-slide-master.svg new file mode 100644 index 0000000000..9c9598b66a --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-add-slide-master.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-addslide.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-addslide.svg new file mode 100644 index 0000000000..68634306c1 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-addslide.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-panel.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-panel.svg new file mode 100644 index 0000000000..be612b1425 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-panel.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-parameters.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-parameters.svg new file mode 100644 index 0000000000..dc21fd825f --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-parameters.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-preview-start.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-preview-start.svg new file mode 100644 index 0000000000..cb62883f3c --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-preview-start.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-preview-stop.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-preview-stop.svg new file mode 100644 index 0000000000..9b09174d91 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-animation-preview-stop.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-close-master.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-close-master.svg new file mode 100644 index 0000000000..21574396c1 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-close-master.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-gridlines.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-gridlines.svg new file mode 100644 index 0000000000..77b6c2ded7 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-gridlines.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-guides.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-guides.svg new file mode 100644 index 0000000000..66532367b4 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-guides.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-chart-placeholder.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-chart-placeholder.svg new file mode 100644 index 0000000000..9e8fe0d30c --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-chart-placeholder.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-content-placeholder.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-content-placeholder.svg new file mode 100644 index 0000000000..4c5c5115b3 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-content-placeholder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-picture-placeholder.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-picture-placeholder.svg new file mode 100644 index 0000000000..131cbefeeb --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-picture-placeholder.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-smartart-placeholder.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-smartart-placeholder.svg new file mode 100644 index 0000000000..47243c22d6 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-smartart-placeholder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-table-placeholder.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-table-placeholder.svg new file mode 100644 index 0000000000..732bd7afaf --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-table-placeholder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-text-placeholder.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-text-placeholder.svg new file mode 100644 index 0000000000..fe67ce7556 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-text-placeholder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-vertical-content-placeholder.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-vertical-content-placeholder.svg new file mode 100644 index 0000000000..bd89fd6f6d --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-vertical-content-placeholder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-vertical-text-placeholder.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-vertical-text-placeholder.svg new file mode 100644 index 0000000000..a714f3be6a --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-ins-vertical-text-placeholder.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-normal.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-normal.svg new file mode 100644 index 0000000000..e31987e791 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-normal.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-pagenum.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-pagenum.svg new file mode 100644 index 0000000000..068d596595 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-pagenum.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-slide-master.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-slide-master.svg new file mode 100644 index 0000000000..84a4591c4e --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-slide-master.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-slidesize.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-slidesize.svg new file mode 100644 index 0000000000..0ba7320d21 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-slidesize.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-clock.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-clock.svg new file mode 100644 index 0000000000..1c7235e6c2 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-clock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-cover.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-cover.svg new file mode 100644 index 0000000000..4dbe7817e1 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-cover.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-fade.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-fade.svg new file mode 100644 index 0000000000..b675bb87b0 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-fade.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-morph.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-morph.svg new file mode 100644 index 0000000000..cca14da88c --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-morph.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-none.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-none.svg new file mode 100644 index 0000000000..6a061a68c2 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-none.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-push.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-push.svg new file mode 100644 index 0000000000..44ce0b2c3d --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-push.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-random.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-random.svg new file mode 100644 index 0000000000..34eda44c3b --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-random.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-split.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-split.svg new file mode 100644 index 0000000000..6e4ef237b9 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-split.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-uncover.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-uncover.svg new file mode 100644 index 0000000000..4135cd565a --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-uncover.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-wipe.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-wipe.svg new file mode 100644 index 0000000000..b1c21884b8 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-wipe.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-zoom.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-zoom.svg new file mode 100644 index 0000000000..d44af1795c --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/big/btn-transition-zoom.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-animation-delay.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-animation-delay.svg new file mode 100644 index 0000000000..07c3e87c82 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-animation-delay.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-animation-duration.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-animation-duration.svg new file mode 100644 index 0000000000..c24e362609 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-animation-duration.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-animation-repeat.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-animation-repeat.svg new file mode 100644 index 0000000000..c2fd4d7415 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-animation-repeat.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-changeslide.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-changeslide.svg new file mode 100644 index 0000000000..f793cf1d4f --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-changeslide.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-clear-all.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-clear-all.svg new file mode 100644 index 0000000000..0a96b8c570 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-clear-all.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-clearstyle.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-clearstyle.svg new file mode 100644 index 0000000000..87a3c14a92 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-clearstyle.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-fullscreen.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-fullscreen.svg new file mode 100644 index 0000000000..4f3b6f99c0 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-fullscreen.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-highlighter-tool.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-highlighter-tool.svg new file mode 100644 index 0000000000..a29ae14f87 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-highlighter-tool.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-horizontal-guide.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-horizontal-guide.svg new file mode 100644 index 0000000000..598d3ed810 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-horizontal-guide.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-ic-zoomtoslide.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-ic-zoomtoslide.svg new file mode 100644 index 0000000000..43c2641fdc --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-ic-zoomtoslide.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-laser-pointer-tool.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-laser-pointer-tool.svg new file mode 100644 index 0000000000..9d27bab6df --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-laser-pointer-tool.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-slide.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-slide.svg new file mode 100644 index 0000000000..1a47c2b206 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-slide.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-thumbs.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-thumbs.svg new file mode 100644 index 0000000000..c755bcfe22 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-thumbs.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-pen-tool.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-pen-tool.svg new file mode 100644 index 0000000000..8b9290a475 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-pen-tool.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-play.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-play.svg new file mode 100644 index 0000000000..bf8451d0f8 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-play.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-presenter-view.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-presenter-view.svg new file mode 100644 index 0000000000..b74971ada6 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-presenter-view.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview-exit-fullscreen.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview-exit-fullscreen.svg new file mode 100644 index 0000000000..857a65108c --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview-exit-fullscreen.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview-pause.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview-pause.svg new file mode 100644 index 0000000000..0035e177c9 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview-pause.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview-transitions.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview-transitions.svg new file mode 100644 index 0000000000..7c7d1f8c78 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview-transitions.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview.svg new file mode 100644 index 0000000000..ae849eb08d --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-preview.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-slidesize.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-slidesize.svg new file mode 100644 index 0000000000..91d2a26ace --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-slidesize.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-transition-apply-all.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-transition-apply-all.svg new file mode 100644 index 0000000000..2bc092ba3e --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-transition-apply-all.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-trigger.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-trigger.svg new file mode 100644 index 0000000000..5abd563715 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-trigger.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-vertical-guide.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-vertical-guide.svg new file mode 100644 index 0000000000..9c418dac83 --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/btn-vertical-guide.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/huge/emptyicon.svg b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/huge/emptyicon.svg new file mode 100644 index 0000000000..0f70fe4bce --- /dev/null +++ b/apps/presentationeditor/main/resources/img/toolbar/v2/2.5x/huge/emptyicon.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/animation-delay.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/animation-delay.png new file mode 100644 index 0000000000..f57bb66807 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/animation-delay.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/animation-duration.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/animation-duration.png new file mode 100644 index 0000000000..5861ffdbcf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/animation-duration.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-blink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-blink.png new file mode 100644 index 0000000000..20cfbc0691 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-blink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-bold-flash.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-bold-flash.png new file mode 100644 index 0000000000..70af5adeff Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-bold-flash.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-bold-reveal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-bold-reveal.png new file mode 100644 index 0000000000..5edf0a2c9b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-bold-reveal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-brush-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-brush-color.png new file mode 100644 index 0000000000..032aa87aca Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-brush-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-color-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-color-pulse.png new file mode 100644 index 0000000000..a5e2a626bb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-color-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-complementary-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-complementary-color.png new file mode 100644 index 0000000000..8ef18eb431 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-complementary-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-contrasting-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-contrasting-color.png new file mode 100644 index 0000000000..3e5a2959d2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-contrasting-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-custom.png new file mode 100644 index 0000000000..dc77abe06f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-darken.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-darken.png new file mode 100644 index 0000000000..7ef3d34c2d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-darken.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-desaturate.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-desaturate.png new file mode 100644 index 0000000000..b0bf992a69 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-desaturate.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-fill-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-fill-color.png new file mode 100644 index 0000000000..94b95ef4ec Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-fill-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-font-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-font-color.png new file mode 100644 index 0000000000..c9d4cc959b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-font-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-grow-or-shrink.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-grow-or-shrink.png new file mode 100644 index 0000000000..e361c76890 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-grow-or-shrink.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-grow-with-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-grow-with-color.png new file mode 100644 index 0000000000..44693e4872 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-grow-with-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-lighten.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-lighten.png new file mode 100644 index 0000000000..fe986ff52a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-lighten.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-line-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-line-color.png new file mode 100644 index 0000000000..7faaa178c0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-line-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-object-color.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-object-color.png new file mode 100644 index 0000000000..94b95ef4ec Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-object-color.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-pulse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-pulse.png new file mode 100644 index 0000000000..86d103ebaa Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-pulse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-shimmer.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-shimmer.png new file mode 100644 index 0000000000..e5ad0b36fd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-shimmer.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-spin.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-spin.png new file mode 100644 index 0000000000..3494c1f3b8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-spin.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-teeter.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-teeter.png new file mode 100644 index 0000000000..6f013a6aa1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-teeter.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-transparency.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-transparency.png new file mode 100644 index 0000000000..e1b3b1e184 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-transparency.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-underline.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-underline.png new file mode 100644 index 0000000000..7d5f07b630 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-underline.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-wave.png new file mode 100644 index 0000000000..0a340c4899 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-emphasis-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-Spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-Spinner.png new file mode 100644 index 0000000000..24da3ab0fe Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-Spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-appear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-appear.png new file mode 100644 index 0000000000..5defd8a914 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-appear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-basic-zoom.png new file mode 100644 index 0000000000..b419c50fe4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-blinds.png new file mode 100644 index 0000000000..d4eb53fbc1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-boomerang.png new file mode 100644 index 0000000000..161b22da59 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-bounce.png new file mode 100644 index 0000000000..c56d99693f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-center-revolve.png new file mode 100644 index 0000000000..c5c87d26a7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-checkerboard.png new file mode 100644 index 0000000000..155f68e1e0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-compress.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-compress.png new file mode 100644 index 0000000000..759e47924a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-compress.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-credits.png new file mode 100644 index 0000000000..a0c81112aa Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-curve-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-curve-up.png new file mode 100644 index 0000000000..a979216a2c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-curve-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-custom.png new file mode 100644 index 0000000000..c29b36fc04 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-dissolve-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-dissolve-in.png new file mode 100644 index 0000000000..4bcda77d7b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-dissolve-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-drop.png new file mode 100644 index 0000000000..b90b903e26 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-expand.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-expand.png new file mode 100644 index 0000000000..a4b90ebb2a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-expand.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-fade.png new file mode 100644 index 0000000000..8bac5437ff Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-flip.png new file mode 100644 index 0000000000..b4d12ea482 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-float-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-float-in.png new file mode 100644 index 0000000000..da1655a74a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-float-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-float.png new file mode 100644 index 0000000000..0a57f31e41 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-fly-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-fly-in.png new file mode 100644 index 0000000000..ecaaec5960 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-fly-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-grow-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-grow-turn.png new file mode 100644 index 0000000000..989a187a18 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-grow-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-peek-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-peek-in.png new file mode 100644 index 0000000000..e220fbf117 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-peek-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-pinwheel.png new file mode 100644 index 0000000000..57bfb5c4fe Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-random-bars.png new file mode 100644 index 0000000000..bacda643d3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-rise-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-rise-up.png new file mode 100644 index 0000000000..eac6d115bd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-rise-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-shape.png new file mode 100644 index 0000000000..d5f3819993 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-spiral-in.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-spiral-in.png new file mode 100644 index 0000000000..49204d5d33 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-spiral-in.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-split.png new file mode 100644 index 0000000000..76972cb602 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-strips.png new file mode 100644 index 0000000000..c3dad8996f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-swivel.png new file mode 100644 index 0000000000..9984ba85d7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-wedge.png new file mode 100644 index 0000000000..ba164144d9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-wheel.png new file mode 100644 index 0000000000..ef7353c14b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-whip.png new file mode 100644 index 0000000000..c27ec4e783 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-wipe.png new file mode 100644 index 0000000000..eebf348266 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-zoom.png new file mode 100644 index 0000000000..f9bcd39084 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-entrance-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-Dissolve-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-Dissolve-out.png new file mode 100644 index 0000000000..0fa5170770 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-Dissolve-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-Peek-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-Peek-out.png new file mode 100644 index 0000000000..be13ab6058 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-Peek-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-basic-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-basic-zoom.png new file mode 100644 index 0000000000..fbcb5f1e33 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-basic-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-blinds.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-blinds.png new file mode 100644 index 0000000000..c8d468bb54 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-blinds.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-boomerang.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-boomerang.png new file mode 100644 index 0000000000..f33688c6f7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-boomerang.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-bounce.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-bounce.png new file mode 100644 index 0000000000..28ad320712 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-bounce.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-center-revolve.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-center-revolve.png new file mode 100644 index 0000000000..605052ecd0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-center-revolve.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-checkerboard.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-checkerboard.png new file mode 100644 index 0000000000..9787e96c21 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-checkerboard.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-collapse.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-collapse.png new file mode 100644 index 0000000000..3d2b5d19f5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-collapse.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-contract.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-contract.png new file mode 100644 index 0000000000..95ec7467fa Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-contract.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-credits.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-credits.png new file mode 100644 index 0000000000..7b8e95d958 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-credits.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-curve-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-curve-down.png new file mode 100644 index 0000000000..3009a73e4a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-curve-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-custom.png new file mode 100644 index 0000000000..c700645bab Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-disappear.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-disappear.png new file mode 100644 index 0000000000..6c9cb24fde Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-disappear.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-drop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-drop.png new file mode 100644 index 0000000000..579fbdf6d2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-drop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-fade.png new file mode 100644 index 0000000000..addf61313e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-flip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-flip.png new file mode 100644 index 0000000000..07f6492264 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-flip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-float-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-float-out.png new file mode 100644 index 0000000000..b50058b822 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-float-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-float.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-float.png new file mode 100644 index 0000000000..7e21291afc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-float.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-fly-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-fly-out.png new file mode 100644 index 0000000000..8bc2b9752d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-fly-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-pinwheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-pinwheel.png new file mode 100644 index 0000000000..3292cb0323 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-pinwheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-random-bars.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-random-bars.png new file mode 100644 index 0000000000..aa54c18c81 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-random-bars.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-shape.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-shape.png new file mode 100644 index 0000000000..159905ee08 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-shape.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-shrink-turn.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-shrink-turn.png new file mode 100644 index 0000000000..52d445e43e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-shrink-turn.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-sink-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-sink-down.png new file mode 100644 index 0000000000..035f8e3ede Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-sink-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-spinner.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-spinner.png new file mode 100644 index 0000000000..d81b5c629e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-spinner.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-spiral-out.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-spiral-out.png new file mode 100644 index 0000000000..6dfa9ecae3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-spiral-out.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-split.png new file mode 100644 index 0000000000..6d9025d6fe Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-strips.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-strips.png new file mode 100644 index 0000000000..8495add6dc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-strips.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-swivel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-swivel.png new file mode 100644 index 0000000000..853eea1503 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-swivel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-wedge.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-wedge.png new file mode 100644 index 0000000000..0018e4201a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-wedge.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-wheel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-wheel.png new file mode 100644 index 0000000000..4f2a8e898c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-wheel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-whip.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-whip.png new file mode 100644 index 0000000000..f0df545ea5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-whip.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-wipe.png new file mode 100644 index 0000000000..dfeb55d5f9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-zoom.png new file mode 100644 index 0000000000..11341c1410 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-exit-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-4-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-4-point-star.png new file mode 100644 index 0000000000..0c4678ca67 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-4-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-5-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-5-point-star.png new file mode 100644 index 0000000000..cf4d0a163d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-5-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-6-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-6-point-star.png new file mode 100644 index 0000000000..4b10ea3217 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-6-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-8-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-8-point-star.png new file mode 100644 index 0000000000..51b7f022f1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-8-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-Inverted-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-Inverted-square.png new file mode 100644 index 0000000000..2a1ea2846b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-Inverted-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-Inverted-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-Inverted-triangle.png new file mode 100644 index 0000000000..8e386fc19d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-Inverted-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-down.png new file mode 100644 index 0000000000..eaa0b06ff9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-left.png new file mode 100644 index 0000000000..3aa57fe7fd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-right.png new file mode 100644 index 0000000000..01ac49272f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-up.png new file mode 100644 index 0000000000..fd028fb51d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arc-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arcs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arcs.png new file mode 100644 index 0000000000..358eb3f618 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-arcs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-bean.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-bean.png new file mode 100644 index 0000000000..1d29717369 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-bean.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-bounce-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-bounce-left.png new file mode 100644 index 0000000000..24682a3921 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-bounce-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-bounce-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-bounce-right.png new file mode 100644 index 0000000000..a67f2ac9cb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-bounce-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-circle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-circle.png new file mode 100644 index 0000000000..3df33b2139 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-circle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-clever.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-clever.png new file mode 100644 index 0000000000..00daaba051 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-clever.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-cresent-moon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-cresent-moon.png new file mode 100644 index 0000000000..350d101a49 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-cresent-moon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curved-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curved-square.png new file mode 100644 index 0000000000..85bd366519 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curved-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curved-x.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curved-x.png new file mode 100644 index 0000000000..fe64ec8cf7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curved-x.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curvy-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curvy-left.png new file mode 100644 index 0000000000..49f06cf7d3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curvy-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curvy-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curvy-right.png new file mode 100644 index 0000000000..3aec2a18c9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curvy-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curvy-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curvy-star.png new file mode 100644 index 0000000000..9fbe92a93d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-curvy-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-custom-path.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-custom-path.png new file mode 100644 index 0000000000..02c660040a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-custom-path.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-custom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-custom.png new file mode 100644 index 0000000000..19fa4a5879 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-custom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-decaying-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-decaying-wave.png new file mode 100644 index 0000000000..3a4b0e8b31 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-decaying-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-diagonal-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-diagonal-down-right.png new file mode 100644 index 0000000000..e4a70a9b38 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-diagonal-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-diagonal-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-diagonal-up-right.png new file mode 100644 index 0000000000..7fb0478b34 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-diagonal-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-diamond.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-diamond.png new file mode 100644 index 0000000000..1a0ff14fd7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-diamond.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-equal-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-equal-triangle.png new file mode 100644 index 0000000000..3ff56c881d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-equal-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-figure-8-four.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-figure-8-four.png new file mode 100644 index 0000000000..b6ebbab60a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-figure-8-four.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-football.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-football.png new file mode 100644 index 0000000000..bcbc28373d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-football.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-funnel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-funnel.png new file mode 100644 index 0000000000..582813e246 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-funnel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-heart.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-heart.png new file mode 100644 index 0000000000..417ed15556 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-heart.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-heartbeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-heartbeat.png new file mode 100644 index 0000000000..d8d7562f10 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-heartbeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-hexagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-hexagon.png new file mode 100644 index 0000000000..5995eab49c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-hexagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-horizontal-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-horizontal-figure-8.png new file mode 100644 index 0000000000..d3aeff39e0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-horizontal-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-down.png new file mode 100644 index 0000000000..ac75f7f6d6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-left.png new file mode 100644 index 0000000000..a988c9fab9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-right.png new file mode 100644 index 0000000000..0939b6f3b7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-up.png new file mode 100644 index 0000000000..55783b5e3c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines.png new file mode 100644 index 0000000000..18f70a0b38 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-lines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-loop-de-loop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-loop-de-loop.png new file mode 100644 index 0000000000..19332c0058 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-loop-de-loop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-loops.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-loops.png new file mode 100644 index 0000000000..4f06b102f0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-loops.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-neutron.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-neutron.png new file mode 100644 index 0000000000..7584c4cdfd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-neutron.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-octagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-octagon.png new file mode 100644 index 0000000000..3e884403c5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-octagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-parallelogram.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-parallelogram.png new file mode 100644 index 0000000000..42b629b2aa Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-parallelogram.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-peanut.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-peanut.png new file mode 100644 index 0000000000..b1df5cc598 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-peanut.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-pentagon.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-pentagon.png new file mode 100644 index 0000000000..360c160207 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-pentagon.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-point-star.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-point-star.png new file mode 100644 index 0000000000..d6f67f1576 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-point-star.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-right-triangle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-right-triangle.png new file mode 100644 index 0000000000..b74bec3d21 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-right-triangle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-s-curve-1.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-s-curve-1.png new file mode 100644 index 0000000000..fbc933dd73 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-s-curve-1.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-s-curve-2.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-s-curve-2.png new file mode 100644 index 0000000000..b2cd67e305 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-s-curve-2.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-shapes.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-shapes.png new file mode 100644 index 0000000000..653f155f29 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-shapes.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-sine-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-sine-wave.png new file mode 100644 index 0000000000..4bd844cc21 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-sine-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-spiral-left.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-spiral-left.png new file mode 100644 index 0000000000..1c5685149d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-spiral-left.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-spiral-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-spiral-right.png new file mode 100644 index 0000000000..5f02505f21 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-spiral-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-spiral.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-spiral.png new file mode 100644 index 0000000000..7519e8680e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-spiral.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-square.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-square.png new file mode 100644 index 0000000000..4dff0cd475 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-square.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-stairs-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-stairs-down.png new file mode 100644 index 0000000000..bfcf813c61 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-stairs-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-swoosh.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-swoosh.png new file mode 100644 index 0000000000..0e4ecb41e1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-swoosh.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-teardrop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-teardrop.png new file mode 100644 index 0000000000..d31ca9e89e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-teardrop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-trapezoid.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-trapezoid.png new file mode 100644 index 0000000000..f4100ffef2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-trapezoid.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-down-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-down-right.png new file mode 100644 index 0000000000..e04bf33daf Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-down-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-down.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-down.png new file mode 100644 index 0000000000..e811b305d2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-down.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-up-right.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-up-right.png new file mode 100644 index 0000000000..15556ba623 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-up-right.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-up.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-up.png new file mode 100644 index 0000000000..ab60fc37cc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turn-up.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turns.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turns.png new file mode 100644 index 0000000000..19fa04ae4a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-turns.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-vertical-figure-8.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-vertical-figure-8.png new file mode 100644 index 0000000000..96cc69b0a6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-vertical-figure-8.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-wave.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-wave.png new file mode 100644 index 0000000000..bd9ad6e4b2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-wave.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-zigzag.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-zigzag.png new file mode 100644 index 0000000000..38dafd8fd2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-motion-paths-zigzag.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-multiple.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-multiple.png new file mode 100644 index 0000000000..b0c1ec76b5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-multiple.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-none.png new file mode 100644 index 0000000000..cc744a7577 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-parameters.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-parameters.png new file mode 100644 index 0000000000..2709670ba9 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-parameters.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-preview-start.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-preview-start.png new file mode 100644 index 0000000000..eeba5481ce Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-preview-start.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-preview-stop.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-preview-stop.png new file mode 100644 index 0000000000..25cc9ad55a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/animation-preview-stop.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-add-animation.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-add-animation.png new file mode 100644 index 0000000000..9290c3b4f4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-add-animation.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-add-layout.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-add-layout.png new file mode 100644 index 0000000000..587be9e38c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-add-layout.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-add-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-add-slide-master.png new file mode 100644 index 0000000000..c5d70e9bbe Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-add-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-addslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-addslide.png new file mode 100644 index 0000000000..162c5c73c3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-addslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-animation-panel.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-animation-panel.png new file mode 100644 index 0000000000..0cdcd2d770 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-animation-panel.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-close-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-close-master.png new file mode 100644 index 0000000000..4b4fac3727 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-close-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-gridlines.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-gridlines.png new file mode 100644 index 0000000000..1ff2978650 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-gridlines.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-guides.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-guides.png new file mode 100644 index 0000000000..7b654a9c2f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-guides.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-chart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-chart-placeholder.png new file mode 100644 index 0000000000..fd3ef485fb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-chart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-content-placeholder.png new file mode 100644 index 0000000000..04827decf1 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-picture-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-picture-placeholder.png new file mode 100644 index 0000000000..ca94463bd8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-picture-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-smartart-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-smartart-placeholder.png new file mode 100644 index 0000000000..9c311bdb2a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-smartart-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-table-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-table-placeholder.png new file mode 100644 index 0000000000..cce98e12b4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-table-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-text-placeholder.png new file mode 100644 index 0000000000..e1ca5a6846 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-vertical-content-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-vertical-content-placeholder.png new file mode 100644 index 0000000000..1f2c85110c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-vertical-content-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-vertical-text-placeholder.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-vertical-text-placeholder.png new file mode 100644 index 0000000000..ff0cafed18 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-ins-vertical-text-placeholder.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-normal.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-normal.png new file mode 100644 index 0000000000..59cbc4feb4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-normal.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-pagenum.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-pagenum.png new file mode 100644 index 0000000000..98e6fbc782 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-pagenum.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-slide-master.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-slide-master.png new file mode 100644 index 0000000000..ce05f6e93e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-slide-master.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-slidesize.png new file mode 100644 index 0000000000..e97a43287f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-clock.png new file mode 100644 index 0000000000..82da9536b4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-cover.png new file mode 100644 index 0000000000..9e981d9b69 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-fade.png new file mode 100644 index 0000000000..ef55932a38 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-morph.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-morph.png new file mode 100644 index 0000000000..bff9044487 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-morph.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-none.png new file mode 100644 index 0000000000..72b4b0d4c2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-push.png new file mode 100644 index 0000000000..4a63bc95ff Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-random.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-random.png new file mode 100644 index 0000000000..04cd830326 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-random.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-split.png new file mode 100644 index 0000000000..084457bc6c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-uncover.png new file mode 100644 index 0000000000..226d604d7d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-wipe.png new file mode 100644 index 0000000000..2ace297f1d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-zoom.png new file mode 100644 index 0000000000..9318d78354 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/big/btn-transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-animation-repeat.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-animation-repeat.png new file mode 100644 index 0000000000..8f67a62055 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-animation-repeat.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-changeslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-changeslide.png new file mode 100644 index 0000000000..a307ab80e5 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-changeslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-clear-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-clear-all.png new file mode 100644 index 0000000000..0928004369 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-clear-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-clearstyle.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-clearstyle.png new file mode 100644 index 0000000000..701e24b1ea Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-clearstyle.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-fullscreen.png new file mode 100644 index 0000000000..2b0b104ff6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-highlighter-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-highlighter-tool.png new file mode 100644 index 0000000000..1103f5f303 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-highlighter-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-horizontal-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-horizontal-guide.png new file mode 100644 index 0000000000..606daa397e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-horizontal-guide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-ic-zoomtoslide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..933b2ed815 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-ic-zoomtoslide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-laser-pointer-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-laser-pointer-tool.png new file mode 100644 index 0000000000..9296ff166f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-laser-pointer-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-menu-slide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-menu-slide.png new file mode 100644 index 0000000000..970a5f5439 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-menu-slide.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-menu-thumbs.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-menu-thumbs.png new file mode 100644 index 0000000000..254c8eb74d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-menu-thumbs.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-pen-tool.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-pen-tool.png new file mode 100644 index 0000000000..92e0948aa3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-pen-tool.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-play.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-play.png new file mode 100644 index 0000000000..4c621ad614 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-play.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-presenter-view.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-presenter-view.png new file mode 100644 index 0000000000..63816b3437 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-presenter-view.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview-exit-fullscreen.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview-exit-fullscreen.png new file mode 100644 index 0000000000..eefeed9418 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview-exit-fullscreen.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview-pause.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview-pause.png new file mode 100644 index 0000000000..81e638d3ed Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview-pause.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview-transitions.png new file mode 100644 index 0000000000..cc2b62dd00 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview.png new file mode 100644 index 0000000000..a270d2ad3f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-preview.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-slidesize.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-slidesize.png new file mode 100644 index 0000000000..fb6da55900 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-slidesize.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-transition-apply-all.png new file mode 100644 index 0000000000..4378593e40 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-trigger.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-trigger.png new file mode 100644 index 0000000000..5f6463a747 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-trigger.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-vertical-guide.png b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-vertical-guide.png new file mode 100644 index 0000000000..5157810c59 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/v2/2x/btn-vertical-guide.png differ diff --git a/apps/presentationeditor/main/resources/less/statusbar.less b/apps/presentationeditor/main/resources/less/statusbar.less index 6df8b8f86c..44e6691a44 100644 --- a/apps/presentationeditor/main/resources/less/statusbar.less +++ b/apps/presentationeditor/main/resources/less/statusbar.less @@ -1,4 +1,3 @@ -@statusbar-height: var(--statusbar-height, 25px); .statusbar { .status-label { diff --git a/apps/spreadsheeteditor/main/app/template/StatusBar.template b/apps/spreadsheeteditor/main/app/template/StatusBar.template index bf1e7bd9aa..a7cb3be4ef 100644 --- a/apps/spreadsheeteditor/main/app/template/StatusBar.template +++ b/apps/spreadsheeteditor/main/app/template/StatusBar.template @@ -20,7 +20,7 @@
-
+
@@ -28,7 +28,7 @@
-
+
@@ -39,7 +39,7 @@
-
+
diff --git a/apps/spreadsheeteditor/main/resources/less/statusbar.less b/apps/spreadsheeteditor/main/resources/less/statusbar.less index df197f0b28..c60aa98da5 100644 --- a/apps/spreadsheeteditor/main/resources/less/statusbar.less +++ b/apps/spreadsheeteditor/main/resources/less/statusbar.less @@ -1,4 +1,3 @@ -@statusbar-height: var(--statusbar-height, 25px); @status-scroll-padding-left: 12px; @statusb-scroll-padding-right: 10px; @status-scroll-width: calc(2*@x-small-btn-size + @status-scroll-padding-left + @statusb-scroll-padding-right); @@ -46,7 +45,6 @@ } } - #status-tabs-scroll { width: @status-scroll-width; padding: 0 @status-scroll-padding-left 0 @statusb-scroll-padding-right; @@ -54,7 +52,7 @@ float: left; .rtl-sheet& { - padding: calc(@statusbar-height - @x-small-btn-size) @statusb-scroll-padding-right 0 @status-scroll-padding-left; + padding: 0 @statusb-scroll-padding-right 0 @status-scroll-padding-left; float: right; } } @@ -63,10 +61,6 @@ position: absolute; height: @statusbar-height; - .separator { - margin-top: calc(-1*(@statusbar-height - @x-small-btn-size)); - } - #status-label-zoom { cursor: pointer; text-align: center; @@ -174,12 +168,10 @@ #status-math-box, #status-filtered-box { - padding-top: 6px; position: absolute; height: @statusbar-height; .separator { position: relative; - margin-top: -6px; } } @@ -241,7 +233,7 @@ display: inline-block; .border-radius(0); padding: 0 10px 0; - line-height: 24px; + line-height: @statusbar-height; background-color: @background-pane-additional-ie; background-color: @background-pane-additional; outline: none; @@ -418,6 +410,7 @@ .color-tab { .border-radius(4px); margin-top: -25px; + margin-top: calc(-1 * @statusbar-height); } } @@ -583,4 +576,8 @@ .rtl-sheet .nav { padding-right: 0; +} +#statusbar { + background-color: @background-pane-ie; + background-color: @background-statusbar; } \ No newline at end of file diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1.25x/btn-ic-zoomtoslide.png b/apps/visioeditor/main/resources/img/toolbar/v2/1.25x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..43e6d4c218 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1.25x/btn-ic-zoomtoslide.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-thumbs.png b/apps/visioeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-thumbs.png new file mode 100644 index 0000000000..053d25f757 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1.25x/btn-menu-thumbs.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1.25x/btn-sheet-list.png b/apps/visioeditor/main/resources/img/toolbar/v2/1.25x/btn-sheet-list.png new file mode 100644 index 0000000000..86bd31234d Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1.25x/btn-sheet-list.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1.5x/btn-ic-zoomtoslide.png b/apps/visioeditor/main/resources/img/toolbar/v2/1.5x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..fb98ed2f1b Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1.5x/btn-ic-zoomtoslide.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-thumbs.png b/apps/visioeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-thumbs.png new file mode 100644 index 0000000000..1295680ba9 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1.5x/btn-menu-thumbs.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1.5x/btn-sheet-list.png b/apps/visioeditor/main/resources/img/toolbar/v2/1.5x/btn-sheet-list.png new file mode 100644 index 0000000000..0b2fa28741 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1.5x/btn-sheet-list.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1.75x/btn-ic-zoomtoslide.png b/apps/visioeditor/main/resources/img/toolbar/v2/1.75x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..93b5e3ec30 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1.75x/btn-ic-zoomtoslide.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-thumbs.png b/apps/visioeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-thumbs.png new file mode 100644 index 0000000000..f29ecabfc0 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1.75x/btn-menu-thumbs.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1.75x/btn-sheet-list.png b/apps/visioeditor/main/resources/img/toolbar/v2/1.75x/btn-sheet-list.png new file mode 100644 index 0000000000..29a4b6d6a4 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1.75x/btn-sheet-list.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1x/btn-ic-zoomtoslide.png b/apps/visioeditor/main/resources/img/toolbar/v2/1x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..b68e8971bb Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1x/btn-ic-zoomtoslide.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1x/btn-menu-thumbs.png b/apps/visioeditor/main/resources/img/toolbar/v2/1x/btn-menu-thumbs.png new file mode 100644 index 0000000000..2d85fd5f79 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1x/btn-menu-thumbs.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/1x/btn-sheet-list.png b/apps/visioeditor/main/resources/img/toolbar/v2/1x/btn-sheet-list.png new file mode 100644 index 0000000000..f8c71ec836 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/1x/btn-sheet-list.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/2.5x/btn-ic-zoomtoslide.svg b/apps/visioeditor/main/resources/img/toolbar/v2/2.5x/btn-ic-zoomtoslide.svg new file mode 100644 index 0000000000..43c2641fdc --- /dev/null +++ b/apps/visioeditor/main/resources/img/toolbar/v2/2.5x/btn-ic-zoomtoslide.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-thumbs.svg b/apps/visioeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-thumbs.svg new file mode 100644 index 0000000000..bb975eb2aa --- /dev/null +++ b/apps/visioeditor/main/resources/img/toolbar/v2/2.5x/btn-menu-thumbs.svg @@ -0,0 +1,4 @@ + + + + diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/2.5x/btn-sheet-list.svg b/apps/visioeditor/main/resources/img/toolbar/v2/2.5x/btn-sheet-list.svg new file mode 100644 index 0000000000..33fc4c4b39 --- /dev/null +++ b/apps/visioeditor/main/resources/img/toolbar/v2/2.5x/btn-sheet-list.svg @@ -0,0 +1,3 @@ + + + diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/2x/btn-ic-zoomtoslide.png b/apps/visioeditor/main/resources/img/toolbar/v2/2x/btn-ic-zoomtoslide.png new file mode 100644 index 0000000000..933b2ed815 Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/2x/btn-ic-zoomtoslide.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/2x/btn-menu-thumbs.png b/apps/visioeditor/main/resources/img/toolbar/v2/2x/btn-menu-thumbs.png new file mode 100644 index 0000000000..254c8eb74d Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/2x/btn-menu-thumbs.png differ diff --git a/apps/visioeditor/main/resources/img/toolbar/v2/2x/btn-sheet-list.png b/apps/visioeditor/main/resources/img/toolbar/v2/2x/btn-sheet-list.png new file mode 100644 index 0000000000..2b308c2aaa Binary files /dev/null and b/apps/visioeditor/main/resources/img/toolbar/v2/2x/btn-sheet-list.png differ diff --git a/apps/visioeditor/main/resources/less/statusbar.less b/apps/visioeditor/main/resources/less/statusbar.less index 46cc92e7f1..a68fa19aa8 100644 --- a/apps/visioeditor/main/resources/less/statusbar.less +++ b/apps/visioeditor/main/resources/less/statusbar.less @@ -1,4 +1,3 @@ -@statusbar-height: var(--statusbar-height, 25px); .statusbar { padding: 0 2px 0; z-index: 500; @@ -190,7 +189,7 @@ display: inline-block; .border-radius(0); padding: 0 10px 0; - line-height: 24px; + line-height: @statusbar-height; background-color: @background-pane-additional-ie; background-color: @background-pane-additional; outline: none; @@ -381,5 +380,5 @@ } #statusbar { background-color: @background-pane-ie; - background-color: @background-pane; + background-color: @background-statusbar; } \ No newline at end of file