@syncfusion/ej2-vue-documenteditor 20.4.54 → 21.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +208 -0
- package/README.md +1 -1
- package/dist/ej2-vue-documenteditor.umd.min.js +2 -2
- package/dist/ej2-vue-documenteditor.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-documenteditor.es2015.js +240 -282
- package/dist/es6/ej2-vue-documenteditor.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-documenteditor.es5.js +261 -313
- package/dist/es6/ej2-vue-documenteditor.es5.js.map +1 -1
- package/dist/global/ej2-vue-documenteditor.min.js +2 -2
- package/package.json +11 -10
- package/src/document-editor/documenteditor.component.d.ts +3 -50
- package/src/document-editor/documenteditor.component.js +168 -197
- package/src/document-editor-container/documenteditorcontainer.component.d.ts +3 -26
- package/src/document-editor-container/documenteditorcontainer.component.js +96 -125
- package/styles/bootstrap-dark.css +167 -58
- package/styles/bootstrap.css +167 -54
- package/styles/bootstrap4.css +185 -65
- package/styles/bootstrap5-dark.css +187 -74
- package/styles/bootstrap5.css +187 -74
- package/styles/document-editor/bootstrap-dark.css +13 -2
- package/styles/document-editor/bootstrap.css +17 -2
- package/styles/document-editor/bootstrap4.css +23 -4
- package/styles/document-editor/bootstrap5-dark.css +32 -17
- package/styles/document-editor/bootstrap5.css +32 -17
- package/styles/document-editor/fabric-dark.css +13 -2
- package/styles/document-editor/fabric.css +17 -2
- package/styles/document-editor/fluent-dark.css +47 -27
- package/styles/document-editor/fluent.css +47 -27
- package/styles/document-editor/highcontrast-light.css +5 -0
- package/styles/document-editor/highcontrast.css +13 -2
- package/styles/document-editor/material-dark.css +13 -2
- package/styles/document-editor/material.css +13 -2
- package/styles/document-editor/material3-dark.css +3971 -0
- package/styles/document-editor/material3-dark.scss +2 -0
- package/styles/document-editor/material3.css +4027 -0
- package/styles/document-editor/material3.scss +2 -0
- package/styles/document-editor/tailwind-dark.css +29 -17
- package/styles/document-editor/tailwind.css +32 -17
- package/styles/document-editor-container/bootstrap-dark.css +154 -56
- package/styles/document-editor-container/bootstrap.css +150 -52
- package/styles/document-editor-container/bootstrap4.css +162 -61
- package/styles/document-editor-container/bootstrap5-dark.css +155 -57
- package/styles/document-editor-container/bootstrap5.css +155 -57
- package/styles/document-editor-container/fabric-dark.css +154 -56
- package/styles/document-editor-container/fabric.css +154 -56
- package/styles/document-editor-container/fluent-dark.css +159 -64
- package/styles/document-editor-container/fluent.css +159 -64
- package/styles/document-editor-container/highcontrast-light.css +154 -56
- package/styles/document-editor-container/highcontrast.css +154 -56
- package/styles/document-editor-container/material-dark.css +159 -61
- package/styles/document-editor-container/material.css +154 -55
- package/styles/document-editor-container/material3-dark.css +2178 -0
- package/styles/document-editor-container/material3-dark.scss +2 -0
- package/styles/document-editor-container/material3.css +2234 -0
- package/styles/document-editor-container/material3.scss +2 -0
- package/styles/document-editor-container/tailwind-dark.css +153 -55
- package/styles/document-editor-container/tailwind.css +153 -55
- package/styles/fabric-dark.css +167 -58
- package/styles/fabric.css +171 -58
- package/styles/fluent-dark.css +206 -91
- package/styles/fluent.css +206 -91
- package/styles/highcontrast-light.css +159 -56
- package/styles/highcontrast.css +167 -58
- package/styles/material-dark.css +172 -63
- package/styles/material.css +167 -57
- package/styles/material3-dark.css +6150 -0
- package/styles/material3-dark.scss +3 -0
- package/styles/material3.css +6261 -0
- package/styles/material3.scss +3 -0
- package/styles/tailwind-dark.css +182 -72
- package/styles/tailwind.css +185 -72
package/styles/fabric.css
CHANGED
|
@@ -44,6 +44,11 @@
|
|
|
44
44
|
font-family: "e-icons";
|
|
45
45
|
font-size: 13px;
|
|
46
46
|
}
|
|
47
|
+
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
48
|
+
content: "\e97e";
|
|
49
|
+
font-family: "e-icons";
|
|
50
|
+
font-size: 14px;
|
|
51
|
+
}
|
|
47
52
|
.e-documenteditor .e-de-cmt-post::before {
|
|
48
53
|
content: "\e816";
|
|
49
54
|
font-family: "e-icons";
|
|
@@ -1691,7 +1696,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
1691
1696
|
|
|
1692
1697
|
.e-de-restrict-pane,
|
|
1693
1698
|
.e-de-op {
|
|
1694
|
-
background
|
|
1699
|
+
background: #fff;
|
|
1695
1700
|
}
|
|
1696
1701
|
|
|
1697
1702
|
.e-de-restrict-pane .e-tab-header .e-toolbar-items,
|
|
@@ -2347,6 +2352,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2347
2352
|
height: 35px;
|
|
2348
2353
|
}
|
|
2349
2354
|
|
|
2355
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2356
|
+
height: 40px !important;
|
|
2357
|
+
width: auto !important;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2350
2360
|
.e-de-style-bold-button-size {
|
|
2351
2361
|
margin-left: 8px;
|
|
2352
2362
|
margin-right: 8px;
|
|
@@ -2384,7 +2394,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2384
2394
|
margin-right: 20px;
|
|
2385
2395
|
}
|
|
2386
2396
|
|
|
2387
|
-
.e-de-style-
|
|
2397
|
+
.e-de-style-dlg-name-input {
|
|
2388
2398
|
height: 32px;
|
|
2389
2399
|
}
|
|
2390
2400
|
|
|
@@ -3210,6 +3220,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3210
3220
|
font-weight: normal;
|
|
3211
3221
|
}
|
|
3212
3222
|
|
|
3223
|
+
.e-de-track-toolbar .e-de-track-pane-drop-btn {
|
|
3224
|
+
padding-top: 4px !important;
|
|
3225
|
+
}
|
|
3226
|
+
|
|
3213
3227
|
.e-toolbar-item.e-de-track-toolbar-overlay.e-template.e-overlay {
|
|
3214
3228
|
opacity: 1;
|
|
3215
3229
|
font-weight: normal;
|
|
@@ -3307,6 +3321,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3307
3321
|
|
|
3308
3322
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3309
3323
|
margin-top: 0px;
|
|
3324
|
+
background: #fff;
|
|
3310
3325
|
}
|
|
3311
3326
|
|
|
3312
3327
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -4213,6 +4228,21 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4213
4228
|
font-family: "e-icons";
|
|
4214
4229
|
}
|
|
4215
4230
|
|
|
4231
|
+
.e-de-e-paragraph-style-mark::before {
|
|
4232
|
+
content: "\e353";
|
|
4233
|
+
font-family: "e-icons";
|
|
4234
|
+
}
|
|
4235
|
+
|
|
4236
|
+
.e-de-e-character-style-mark::before {
|
|
4237
|
+
content: "\e982";
|
|
4238
|
+
font-family: "e-icons";
|
|
4239
|
+
}
|
|
4240
|
+
|
|
4241
|
+
.e-de-e-linked-style-mark::before {
|
|
4242
|
+
content: "\e983";
|
|
4243
|
+
font-family: "e-icons";
|
|
4244
|
+
}
|
|
4245
|
+
|
|
4216
4246
|
.e-de-ctnr-columns::before {
|
|
4217
4247
|
content: "\e972";
|
|
4218
4248
|
font-family: "e-icons";
|
|
@@ -4345,8 +4375,48 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4345
4375
|
height: 100%;
|
|
4346
4376
|
}
|
|
4347
4377
|
|
|
4378
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
4379
|
+
box-shadow: none;
|
|
4380
|
+
height: 32px;
|
|
4381
|
+
}
|
|
4382
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
4383
|
+
box-shadow: none;
|
|
4384
|
+
}
|
|
4385
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
4386
|
+
box-shadow: none;
|
|
4387
|
+
}
|
|
4388
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
4389
|
+
box-shadow: none;
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
.e-de-ctnr-group-btn-middle button {
|
|
4393
|
+
border-radius: 0px;
|
|
4394
|
+
}
|
|
4395
|
+
|
|
4396
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
4397
|
+
box-shadow: none;
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
4401
|
+
.e-de-ctn .e-de-status-bar button {
|
|
4402
|
+
box-shadow: none;
|
|
4403
|
+
height: 32px;
|
|
4404
|
+
}
|
|
4405
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
4406
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
4407
|
+
box-shadow: none;
|
|
4408
|
+
}
|
|
4409
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
4410
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
4411
|
+
box-shadow: none;
|
|
4412
|
+
}
|
|
4413
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
4414
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
4415
|
+
box-shadow: none;
|
|
4416
|
+
}
|
|
4417
|
+
|
|
4348
4418
|
.e-de-statusbar-pageweb {
|
|
4349
|
-
background
|
|
4419
|
+
background: #fff;
|
|
4350
4420
|
border: 0;
|
|
4351
4421
|
box-shadow: none;
|
|
4352
4422
|
float: right;
|
|
@@ -4375,12 +4445,25 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4375
4445
|
font-size: 16px;
|
|
4376
4446
|
}
|
|
4377
4447
|
|
|
4448
|
+
.e-listview .e-list-icon {
|
|
4449
|
+
height: 24px;
|
|
4450
|
+
width: 16px;
|
|
4451
|
+
margin-right: 12px;
|
|
4452
|
+
}
|
|
4453
|
+
|
|
4454
|
+
.e-de-listview-icon {
|
|
4455
|
+
height: auto;
|
|
4456
|
+
width: auto;
|
|
4457
|
+
line-height: 22px;
|
|
4458
|
+
margin-right: 12px;
|
|
4459
|
+
}
|
|
4460
|
+
|
|
4378
4461
|
.e-de-linespacing {
|
|
4379
4462
|
margin-top: 12px;
|
|
4380
4463
|
}
|
|
4381
4464
|
|
|
4382
4465
|
.e-de-statusbar-zoom {
|
|
4383
|
-
background
|
|
4466
|
+
background: #fff;
|
|
4384
4467
|
border: 0;
|
|
4385
4468
|
color: #333;
|
|
4386
4469
|
float: right;
|
|
@@ -4443,14 +4526,22 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4443
4526
|
.e-de-statusbar-separator {
|
|
4444
4527
|
border-left: 1px solid #dadada;
|
|
4445
4528
|
height: 16px;
|
|
4446
|
-
margin-left:
|
|
4529
|
+
margin-left: 7.5px;
|
|
4530
|
+
margin-right: 7.5px;
|
|
4531
|
+
margin-top: 10px;
|
|
4532
|
+
}
|
|
4533
|
+
|
|
4534
|
+
.e-bigger .e-de-statusbar-separator {
|
|
4535
|
+
border-left: 1px solid #dadada;
|
|
4536
|
+
height: 16px;
|
|
4537
|
+
margin-left: 7.5px;
|
|
4538
|
+
margin-right: 7.5px;
|
|
4447
4539
|
margin-top: 10px;
|
|
4448
4540
|
}
|
|
4449
4541
|
|
|
4450
4542
|
.e-de-statusbar-spellcheck {
|
|
4451
4543
|
border-radius: 2px;
|
|
4452
4544
|
font-weight: 400;
|
|
4453
|
-
margin-left: 7.5px;
|
|
4454
4545
|
}
|
|
4455
4546
|
|
|
4456
4547
|
.e-de-ctn {
|
|
@@ -4463,7 +4554,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4463
4554
|
|
|
4464
4555
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
4465
4556
|
border-radius: 2px;
|
|
4466
|
-
margin-left: 7.5px;
|
|
4467
4557
|
}
|
|
4468
4558
|
|
|
4469
4559
|
.e-de-ctnr-toolbar {
|
|
@@ -4488,7 +4578,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4488
4578
|
|
|
4489
4579
|
.e-de-tool-ctnr-properties-pane,
|
|
4490
4580
|
.e-de-ctnr-properties-pane {
|
|
4491
|
-
background
|
|
4581
|
+
background: #fff;
|
|
4492
4582
|
border-bottom: 1px solid #dadada;
|
|
4493
4583
|
border-top: 1px solid #dadada;
|
|
4494
4584
|
}
|
|
@@ -4589,7 +4679,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4589
4679
|
margin: 0 5.5px;
|
|
4590
4680
|
}
|
|
4591
4681
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
4592
|
-
margin-left: 12px;
|
|
4682
|
+
margin-left: 12px !important;
|
|
4593
4683
|
margin-right: 6px;
|
|
4594
4684
|
}
|
|
4595
4685
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
|
|
@@ -4605,20 +4695,23 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4605
4695
|
}
|
|
4606
4696
|
|
|
4607
4697
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
|
|
4698
|
+
-ms-flex-direction: column;
|
|
4699
|
+
flex-direction: column;
|
|
4700
|
+
height: calc(100% - 10px);
|
|
4608
4701
|
padding: 0;
|
|
4609
|
-
padding-bottom:
|
|
4702
|
+
padding-bottom: 5px;
|
|
4610
4703
|
}
|
|
4611
4704
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
4612
4705
|
padding: 0;
|
|
4613
|
-
padding-bottom:
|
|
4706
|
+
padding-bottom: 5px;
|
|
4614
4707
|
}
|
|
4615
4708
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
4616
4709
|
padding: 0;
|
|
4617
|
-
padding-bottom:
|
|
4710
|
+
padding-bottom: 5px;
|
|
4618
4711
|
}
|
|
4619
4712
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
4620
4713
|
padding: 0;
|
|
4621
|
-
padding-bottom:
|
|
4714
|
+
padding-bottom: 5px;
|
|
4622
4715
|
}
|
|
4623
4716
|
|
|
4624
4717
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
@@ -4647,7 +4740,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4647
4740
|
}
|
|
4648
4741
|
|
|
4649
4742
|
.e-de-ctnr-properties-pane-btn .e-btn {
|
|
4650
|
-
background
|
|
4743
|
+
background: #fff;
|
|
4651
4744
|
border-radius: 0;
|
|
4652
4745
|
box-shadow: none;
|
|
4653
4746
|
color: #0081e5;
|
|
@@ -4689,6 +4782,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4689
4782
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
4690
4783
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
4691
4784
|
padding: 0 !important;
|
|
4785
|
+
min-height: 16px;
|
|
4692
4786
|
}
|
|
4693
4787
|
|
|
4694
4788
|
.e-de-hdr-ftr-frst-div {
|
|
@@ -4711,6 +4805,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4711
4805
|
}
|
|
4712
4806
|
|
|
4713
4807
|
.e-de-review-pane {
|
|
4808
|
+
background: #fff;
|
|
4714
4809
|
border-left: 1px solid #eaeaea;
|
|
4715
4810
|
height: 100%;
|
|
4716
4811
|
min-height: 200px;
|
|
@@ -4728,34 +4823,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4728
4823
|
width: 272px;
|
|
4729
4824
|
}
|
|
4730
4825
|
|
|
4731
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
4732
|
-
box-shadow: none;
|
|
4733
|
-
height: 32px;
|
|
4734
|
-
}
|
|
4735
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
4736
|
-
box-shadow: none;
|
|
4737
|
-
}
|
|
4738
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
4739
|
-
box-shadow: none;
|
|
4740
|
-
}
|
|
4741
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
4742
|
-
box-shadow: none;
|
|
4743
|
-
}
|
|
4744
|
-
|
|
4745
|
-
.e-de-ctnr-group-btn button {
|
|
4746
|
-
box-shadow: none;
|
|
4747
|
-
height: 32px;
|
|
4748
|
-
}
|
|
4749
|
-
.e-de-ctnr-group-btn button:focus {
|
|
4750
|
-
box-shadow: none;
|
|
4751
|
-
}
|
|
4752
|
-
.e-de-ctnr-group-btn button:active {
|
|
4753
|
-
box-shadow: none;
|
|
4754
|
-
}
|
|
4755
|
-
.e-de-ctnr-group-btn button:hover {
|
|
4756
|
-
box-shadow: none;
|
|
4757
|
-
}
|
|
4758
|
-
|
|
4759
4826
|
.e-de-property-div-padding {
|
|
4760
4827
|
border-bottom: 0.5px solid #e0e0e0;
|
|
4761
4828
|
padding: 12.5px;
|
|
@@ -4879,7 +4946,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4879
4946
|
}
|
|
4880
4947
|
|
|
4881
4948
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
4882
|
-
border-bottom: 1px solid #ccc;
|
|
4949
|
+
border-bottom: 1px solid #ccc !important;
|
|
4883
4950
|
margin-left: 5px;
|
|
4884
4951
|
width: 100%;
|
|
4885
4952
|
}
|
|
@@ -4948,10 +5015,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4948
5015
|
}
|
|
4949
5016
|
|
|
4950
5017
|
.e-de-list-container {
|
|
4951
|
-
background: #fff;
|
|
4952
5018
|
border: 1px solid #ccc;
|
|
4953
5019
|
border-radius: 2px;
|
|
4954
5020
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
5021
|
+
background: #fff;
|
|
4955
5022
|
box-sizing: border-box;
|
|
4956
5023
|
display: inline-block;
|
|
4957
5024
|
line-height: normal;
|
|
@@ -5045,8 +5112,8 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5045
5112
|
border: 1px solid #dadada;
|
|
5046
5113
|
color: #333;
|
|
5047
5114
|
height: 129px;
|
|
5048
|
-
margin-left: 78px;
|
|
5049
5115
|
width: 94px;
|
|
5116
|
+
margin-left: 78px;
|
|
5050
5117
|
}
|
|
5051
5118
|
|
|
5052
5119
|
.e-de-toc-template1.e-de-rtl {
|
|
@@ -5101,7 +5168,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5101
5168
|
}
|
|
5102
5169
|
|
|
5103
5170
|
.e-de-status-bar {
|
|
5104
|
-
background
|
|
5171
|
+
background: #fff;
|
|
5105
5172
|
display: -ms-flexbox;
|
|
5106
5173
|
display: flex;
|
|
5107
5174
|
padding-top: 2.8px;
|
|
@@ -5226,7 +5293,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5226
5293
|
}
|
|
5227
5294
|
|
|
5228
5295
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
5229
|
-
height:
|
|
5296
|
+
height: 36px !important;
|
|
5230
5297
|
}
|
|
5231
5298
|
|
|
5232
5299
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -5234,8 +5301,8 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5234
5301
|
}
|
|
5235
5302
|
|
|
5236
5303
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
|
|
5237
|
-
height: 38px;
|
|
5238
5304
|
width: 38px;
|
|
5305
|
+
height: 38px;
|
|
5239
5306
|
}
|
|
5240
5307
|
|
|
5241
5308
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
|
|
@@ -5247,6 +5314,18 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5247
5314
|
width: 70px;
|
|
5248
5315
|
}
|
|
5249
5316
|
|
|
5317
|
+
.e-rtl .e-listview .e-list-icon {
|
|
5318
|
+
height: 24px;
|
|
5319
|
+
width: 16px;
|
|
5320
|
+
margin-left: 12px;
|
|
5321
|
+
}
|
|
5322
|
+
.e-rtl .e-de-listview-icon {
|
|
5323
|
+
height: auto;
|
|
5324
|
+
width: auto;
|
|
5325
|
+
line-height: 22px;
|
|
5326
|
+
margin-left: 12px;
|
|
5327
|
+
}
|
|
5328
|
+
|
|
5250
5329
|
.e-bigger .de-split-button > div:first-child {
|
|
5251
5330
|
margin-right: 0;
|
|
5252
5331
|
}
|
|
@@ -5355,11 +5434,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5355
5434
|
height: 82px;
|
|
5356
5435
|
}
|
|
5357
5436
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
5358
|
-
height: 25px;
|
|
5359
5437
|
margin: 0 7.5px;
|
|
5360
5438
|
}
|
|
5361
5439
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
5362
|
-
margin-left: 16px;
|
|
5440
|
+
margin-left: 16px !important;
|
|
5363
5441
|
margin-right: 8px;
|
|
5364
5442
|
}
|
|
5365
5443
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
|
|
@@ -5376,22 +5454,22 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5376
5454
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
|
|
5377
5455
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
5378
5456
|
padding: 0;
|
|
5379
|
-
padding-bottom:
|
|
5457
|
+
padding-bottom: 5px;
|
|
5380
5458
|
}
|
|
5381
5459
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
|
|
5382
5460
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus {
|
|
5383
5461
|
padding: 0;
|
|
5384
|
-
padding-bottom:
|
|
5462
|
+
padding-bottom: 5px;
|
|
5385
5463
|
}
|
|
5386
5464
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
|
|
5387
5465
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
5388
5466
|
padding: 0;
|
|
5389
|
-
padding-bottom:
|
|
5467
|
+
padding-bottom: 5px;
|
|
5390
5468
|
}
|
|
5391
5469
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
|
|
5392
5470
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
5393
5471
|
padding: 0;
|
|
5394
|
-
padding-bottom:
|
|
5472
|
+
padding-bottom: 5px;
|
|
5395
5473
|
}
|
|
5396
5474
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
5397
5475
|
padding: 0 !important;
|
|
@@ -5407,7 +5485,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5407
5485
|
width: 75px;
|
|
5408
5486
|
}
|
|
5409
5487
|
.e-bigger .e-de-ctnr-properties-pane-btn .e-btn {
|
|
5410
|
-
background
|
|
5488
|
+
background: #fff;
|
|
5411
5489
|
border-radius: 0;
|
|
5412
5490
|
box-shadow: none;
|
|
5413
5491
|
min-height: 100%;
|
|
@@ -5435,7 +5513,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5435
5513
|
}
|
|
5436
5514
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
5437
5515
|
display: table;
|
|
5438
|
-
font-size: 12px;
|
|
5516
|
+
font-size: 12px !important;
|
|
5439
5517
|
margin: 0 6px;
|
|
5440
5518
|
padding: 0;
|
|
5441
5519
|
white-space: normal;
|
|
@@ -5457,6 +5535,19 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5457
5535
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5458
5536
|
box-shadow: none;
|
|
5459
5537
|
}
|
|
5538
|
+
.e-bigger .e-de-status-bar button {
|
|
5539
|
+
height: 38px;
|
|
5540
|
+
box-shadow: none;
|
|
5541
|
+
}
|
|
5542
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
5543
|
+
box-shadow: none;
|
|
5544
|
+
}
|
|
5545
|
+
.e-bigger .e-de-status-bar button:active {
|
|
5546
|
+
box-shadow: none;
|
|
5547
|
+
}
|
|
5548
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
5549
|
+
box-shadow: none;
|
|
5550
|
+
}
|
|
5460
5551
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
5461
5552
|
box-shadow: none;
|
|
5462
5553
|
height: 38px;
|
|
@@ -5572,18 +5663,18 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5572
5663
|
margin-left: 10px;
|
|
5573
5664
|
}
|
|
5574
5665
|
.e-bigger .e-de-status-bar {
|
|
5575
|
-
background
|
|
5666
|
+
background: #fff;
|
|
5576
5667
|
display: -ms-flexbox;
|
|
5577
5668
|
display: flex;
|
|
5578
5669
|
padding-top: 3px;
|
|
5579
5670
|
width: 100%;
|
|
5580
5671
|
}
|
|
5581
5672
|
.e-bigger .e-de-statusbar-zoom {
|
|
5582
|
-
background-color: #fff;
|
|
5583
5673
|
border: 0;
|
|
5584
5674
|
color: #333;
|
|
5585
5675
|
float: right;
|
|
5586
5676
|
height: 34px;
|
|
5677
|
+
background-color: #fff;
|
|
5587
5678
|
}
|
|
5588
5679
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
5589
5680
|
line-height: 25px;
|
|
@@ -5593,6 +5684,28 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5593
5684
|
height: 0;
|
|
5594
5685
|
line-height: 0;
|
|
5595
5686
|
}
|
|
5687
|
+
.e-bigger .e-listview .e-list-icon {
|
|
5688
|
+
height: 24px;
|
|
5689
|
+
width: 16px;
|
|
5690
|
+
margin-right: 16px;
|
|
5691
|
+
}
|
|
5692
|
+
.e-bigger .e-de-listview-icon {
|
|
5693
|
+
height: auto;
|
|
5694
|
+
width: auto;
|
|
5695
|
+
line-height: 22px;
|
|
5696
|
+
margin-right: 16px;
|
|
5697
|
+
}
|
|
5698
|
+
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
5699
|
+
height: 24px;
|
|
5700
|
+
width: 16px;
|
|
5701
|
+
margin-left: 16px;
|
|
5702
|
+
}
|
|
5703
|
+
.e-bigger .e-rtl .e-de-listview-icon {
|
|
5704
|
+
height: auto;
|
|
5705
|
+
width: auto;
|
|
5706
|
+
line-height: 22px;
|
|
5707
|
+
margin-left: 16px;
|
|
5708
|
+
}
|
|
5596
5709
|
|
|
5597
5710
|
.e-de-ctn .e-de-bzr-button {
|
|
5598
5711
|
font-size: 12px;
|