[DE] Add icons
This commit is contained in:
parent
e9f9aa1c16
commit
41c082ad44
BIN
apps/common/main/resources/img/toolbar/1x/btn-arrow-down.png
Normal file
BIN
apps/common/main/resources/img/toolbar/1x/btn-arrow-down.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 287 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-arrow-up.png
Normal file
BIN
apps/common/main/resources/img/toolbar/1x/btn-arrow-up.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 268 B |
BIN
apps/common/main/resources/img/toolbar/2x/btn-arrow-down.png
Normal file
BIN
apps/common/main/resources/img/toolbar/2x/btn-arrow-down.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 427 B |
BIN
apps/common/main/resources/img/toolbar/2x/btn-arrow-up.png
Normal file
BIN
apps/common/main/resources/img/toolbar/2x/btn-arrow-up.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 414 B |
|
@ -245,7 +245,7 @@ define([
|
||||||
this.btnListUp = new Common.UI.Button({
|
this.btnListUp = new Common.UI.Button({
|
||||||
parentEl: $markup.findById('#form-list-up'),
|
parentEl: $markup.findById('#form-list-up'),
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'toolbar__icon btn-up',
|
iconCls: 'toolbar__icon btn-arrow-up',
|
||||||
hint: this.textTipUp
|
hint: this.textTipUp
|
||||||
});
|
});
|
||||||
this.btnListUp.on('click', _.bind(this.onMoveItem, this, true));
|
this.btnListUp.on('click', _.bind(this.onMoveItem, this, true));
|
||||||
|
@ -254,7 +254,7 @@ define([
|
||||||
this.btnListDown = new Common.UI.Button({
|
this.btnListDown = new Common.UI.Button({
|
||||||
parentEl: $markup.findById('#form-list-down'),
|
parentEl: $markup.findById('#form-list-down'),
|
||||||
cls: 'btn-toolbar',
|
cls: 'btn-toolbar',
|
||||||
iconCls: 'toolbar__icon btn-down',
|
iconCls: 'toolbar__icon btn-arrow-down',
|
||||||
hint: this.textTipDown
|
hint: this.textTipDown
|
||||||
});
|
});
|
||||||
this.btnListDown.on('click', _.bind(this.onMoveItem, this, false));
|
this.btnListDown.on('click', _.bind(this.onMoveItem, this, false));
|
||||||
|
|
Loading…
Reference in a new issue