[DE] build icon sprite from source images
|
@ -126,7 +126,7 @@ define([
|
|||
|
||||
this.btnPwd = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'btn-ic-protect',
|
||||
iconCls: 'toolbar__icon btn-ic-protect',
|
||||
caption: this.txtEncrypt,
|
||||
menu: true,
|
||||
visible: false
|
||||
|
|
|
@ -178,19 +178,19 @@ define([
|
|||
cls: 'btn-toolbar x-huge icon-top',
|
||||
caption: this.txtAccept,
|
||||
split: true,
|
||||
iconCls: 'review-save'
|
||||
iconCls: 'toolbar__icon btn-review-save'
|
||||
});
|
||||
|
||||
this.btnReject = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
caption: this.txtReject,
|
||||
split: true,
|
||||
iconCls: 'review-deny'
|
||||
iconCls: 'toolbar__icon btn-review-deny'
|
||||
});
|
||||
|
||||
this.btnTurnOn = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'btn-ic-review',
|
||||
iconCls: 'toolbar__icon btn-ic-review',
|
||||
caption: this.txtTurnon,
|
||||
enableToggle: true
|
||||
});
|
||||
|
@ -199,13 +199,13 @@ define([
|
|||
if (this.appConfig.canViewReview) {
|
||||
this.btnPrev = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'review-prev',
|
||||
iconCls: 'toolbar__icon btn-review-prev',
|
||||
caption: this.txtPrev
|
||||
});
|
||||
|
||||
this.btnNext = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'review-next',
|
||||
iconCls: 'toolbar__icon btn-review-next',
|
||||
caption: this.txtNext
|
||||
});
|
||||
|
||||
|
@ -216,7 +216,7 @@ define([
|
|||
|
||||
this.btnReviewView = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'btn-ic-reviewview',
|
||||
iconCls: 'toolbar__icon btn-ic-reviewview',
|
||||
caption: this.txtView,
|
||||
menu: new Common.UI.Menu({
|
||||
cls: 'ppm-toolbar',
|
||||
|
@ -257,7 +257,7 @@ define([
|
|||
if (!!this.appConfig.sharingSettingsUrl && this.appConfig.sharingSettingsUrl.length && this._readonlyRights!==true) {
|
||||
this.btnSharing = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'btn-ic-sharing',
|
||||
iconCls: 'toolbar__icon btn-ic-sharing',
|
||||
caption: this.txtSharing
|
||||
});
|
||||
}
|
||||
|
@ -265,7 +265,7 @@ define([
|
|||
if (this.appConfig.isEdit && !this.appConfig.isOffline && this.appConfig.canCoAuthoring) {
|
||||
this.btnCoAuthMode = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'btn-ic-coedit',
|
||||
iconCls: 'toolbar__icon btn-ic-coedit',
|
||||
caption: this.txtCoAuthMode,
|
||||
menu: true
|
||||
});
|
||||
|
@ -277,7 +277,7 @@ define([
|
|||
if (this.appConfig.canUseHistory && !this.appConfig.isDisconnected) {
|
||||
this.btnHistory = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'btn-ic-history',
|
||||
iconCls: 'toolbar__icon btn-ic-history',
|
||||
caption: this.txtHistory
|
||||
});
|
||||
}
|
||||
|
@ -285,7 +285,7 @@ define([
|
|||
if (this.appConfig.canCoAuthoring && this.appConfig.canChat) {
|
||||
this.btnChat = new Common.UI.Button({
|
||||
cls: 'btn-toolbar x-huge icon-top',
|
||||
iconCls: 'btn-ic-chat',
|
||||
iconCls: 'toolbar__icon btn-ic-chat',
|
||||
caption: this.txtChat,
|
||||
enableToggle: true
|
||||
});
|
||||
|
@ -461,7 +461,7 @@ define([
|
|||
if ( type == 'turn' && parent == 'statusbar' ) {
|
||||
var button = new Common.UI.Button({
|
||||
cls : 'btn-toolbar',
|
||||
iconCls : 'btn-ic-review',
|
||||
iconCls : 'toolbar__icon btn-ic-review',
|
||||
hintAnchor : 'top',
|
||||
hint : this.tipReview,
|
||||
enableToggle: true
|
||||
|
@ -474,7 +474,7 @@ define([
|
|||
if ( type == 'spelling' ) {
|
||||
button = new Common.UI.Button({
|
||||
cls: 'btn-toolbar',
|
||||
iconCls: 'btn-ic-docspell',
|
||||
iconCls: 'toolbar__icon btn-ic-docspell',
|
||||
hintAnchor : 'top',
|
||||
hint: this.tipSetSpelling,
|
||||
enableToggle: true
|
||||
|
@ -485,7 +485,7 @@ define([
|
|||
} else if (type == 'doclang' && parent == 'statusbar' ) {
|
||||
button = new Common.UI.Button({
|
||||
cls: 'btn-toolbar',
|
||||
iconCls: 'btn-ic-doclang',
|
||||
iconCls: 'toolbar__icon btn-ic-doclang',
|
||||
hintAnchor : 'top',
|
||||
hint: this.tipSetDocLang,
|
||||
disabled: true
|
||||
|
|
|
@ -131,7 +131,7 @@
|
|||
this.btnOptions = new Common.UI.Button({
|
||||
id : 'search-btn-options',
|
||||
cls : 'btn-toolbar',
|
||||
iconCls : 'btn-settings',
|
||||
iconCls : 'toolbar__icon btn-settings',
|
||||
// hint : me.tipMerge,
|
||||
menu : new Common.UI.Menu({
|
||||
items : [
|
||||
|
|
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 14 KiB |
BIN
apps/common/main/resources/img/toolbar/1x/arrange-back.png
Normal file
After Width: | Height: | Size: 161 B |
BIN
apps/common/main/resources/img/toolbar/1x/arrange-backward.png
Normal file
After Width: | Height: | Size: 146 B |
BIN
apps/common/main/resources/img/toolbar/1x/arrange-forward.png
Normal file
After Width: | Height: | Size: 147 B |
BIN
apps/common/main/resources/img/toolbar/1x/arrange-front.png
Normal file
After Width: | Height: | Size: 174 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-controls.png
Normal file
After Width: | Height: | Size: 187 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-editheader.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-ic-chat.png
Normal file
After Width: | Height: | Size: 247 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-ic-coedit.png
Normal file
After Width: | Height: | Size: 430 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-ic-history.png
Normal file
After Width: | Height: | Size: 429 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-ic-protect.png
Normal file
After Width: | Height: | Size: 312 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-ic-sharing.png
Normal file
After Width: | Height: | Size: 422 B |
After Width: | Height: | Size: 660 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-img-align.png
Normal file
After Width: | Height: | Size: 150 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-img-bkwd.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-img-frwd.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-img-group.png
Normal file
After Width: | Height: | Size: 166 B |
After Width: | Height: | Size: 150 B |
After Width: | Height: | Size: 403 B |
After Width: | Height: | Size: 322 B |
After Width: | Height: | Size: 278 B |
After Width: | Height: | Size: 352 B |
After Width: | Height: | Size: 172 B |
After Width: | Height: | Size: 236 B |
After Width: | Height: | Size: 139 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-pageorient.png
Normal file
After Width: | Height: | Size: 229 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-pagesize.png
Normal file
After Width: | Height: | Size: 192 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-text.png
Normal file
After Width: | Height: | Size: 158 B |
BIN
apps/common/main/resources/img/toolbar/1x/big/btn-textart.png
Normal file
After Width: | Height: | Size: 359 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-align-bottom.png
Normal file
After Width: | Height: | Size: 138 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-align-center.png
Normal file
After Width: | Height: | Size: 192 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-align-just.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-align-left.png
Normal file
After Width: | Height: | Size: 187 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-align-middle.png
Normal file
After Width: | Height: | Size: 162 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-align-right.png
Normal file
After Width: | Height: | Size: 188 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-align-top.png
Normal file
After Width: | Height: | Size: 140 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-bold(ru).png
Normal file
After Width: | Height: | Size: 286 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-bold.png
Normal file
After Width: | Height: | Size: 226 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-border-all.png
Normal file
After Width: | Height: | Size: 106 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-border-bottom.png
Normal file
After Width: | Height: | Size: 107 B |
After Width: | Height: | Size: 174 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-border-diagup.png
Normal file
After Width: | Height: | Size: 174 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-border-inside.png
Normal file
After Width: | Height: | Size: 123 B |
After Width: | Height: | Size: 108 B |
After Width: | Height: | Size: 115 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-border-left.png
Normal file
After Width: | Height: | Size: 116 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-border-no.png
Normal file
After Width: | Height: | Size: 99 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-border-out.png
Normal file
After Width: | Height: | Size: 120 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-border-right.png
Normal file
After Width: | Height: | Size: 111 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-border-top.png
Normal file
After Width: | Height: | Size: 106 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-clearstyle.png
Normal file
After Width: | Height: | Size: 497 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-colorschemas.png
Normal file
After Width: | Height: | Size: 115 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-copy.png
Normal file
After Width: | Height: | Size: 164 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-copystyle.png
Normal file
After Width: | Height: | Size: 271 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-decfont.png
Normal file
After Width: | Height: | Size: 438 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-decoffset.png
Normal file
After Width: | Height: | Size: 326 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-download.png
Normal file
After Width: | Height: | Size: 181 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-edit.png
Normal file
After Width: | Height: | Size: 150 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-firstitem.png
Normal file
After Width: | Height: | Size: 208 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-flip-hor.png
Normal file
After Width: | Height: | Size: 207 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-flip-vert.png
Normal file
After Width: | Height: | Size: 178 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-fontcolor.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-goback.png
Normal file
After Width: | Height: | Size: 192 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-higlight.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-ic-doclang.png
Normal file
After Width: | Height: | Size: 323 B |
After Width: | Height: | Size: 270 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-ic-docspell.png
Normal file
After Width: | Height: | Size: 266 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-ic-review.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-ic-zoomtopage.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-ic-zoomtowidth.png
Normal file
After Width: | Height: | Size: 193 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-incfont.png
Normal file
After Width: | Height: | Size: 478 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-incoffset.png
Normal file
After Width: | Height: | Size: 340 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-italic(ru).png
Normal file
After Width: | Height: | Size: 235 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-italic.png
Normal file
After Width: | Height: | Size: 153 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-lastitem.png
Normal file
After Width: | Height: | Size: 205 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-linespace.png
Normal file
After Width: | Height: | Size: 203 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-about.png
Normal file
After Width: | Height: | Size: 303 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-chart.png
Normal file
After Width: | Height: | Size: 140 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-chat.png
Normal file
After Width: | Height: | Size: 217 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-comments.png
Normal file
After Width: | Height: | Size: 181 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-image.png
Normal file
After Width: | Height: | Size: 226 B |
After Width: | Height: | Size: 90 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-search.png
Normal file
After Width: | Height: | Size: 287 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-shape.png
Normal file
After Width: | Height: | Size: 298 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-sign.png
Normal file
After Width: | Height: | Size: 503 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-signature.png
Normal file
After Width: | Height: | Size: 503 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-support.png
Normal file
After Width: | Height: | Size: 287 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-table.png
Normal file
After Width: | Height: | Size: 122 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-menu-textart.png
Normal file
After Width: | Height: | Size: 301 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-nextitem.png
Normal file
After Width: | Height: | Size: 193 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-numbering.png
Normal file
After Width: | Height: | Size: 152 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-options.png
Normal file
After Width: | Height: | Size: 90 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-paracolor.png
Normal file
After Width: | Height: | Size: 287 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-paragraph.png
Normal file
After Width: | Height: | Size: 151 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-paste.png
Normal file
After Width: | Height: | Size: 168 B |
BIN
apps/common/main/resources/img/toolbar/1x/btn-previtem.png
Normal file
After Width: | Height: | Size: 197 B |