@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/material.css
CHANGED
|
@@ -49,6 +49,11 @@
|
|
|
49
49
|
font-family: "e-icons";
|
|
50
50
|
font-size: 13px;
|
|
51
51
|
}
|
|
52
|
+
.e-documenteditor .e-de-multi-cmt-mark::before {
|
|
53
|
+
content: "\e97a";
|
|
54
|
+
font-family: "e-icons";
|
|
55
|
+
font-size: 14px;
|
|
56
|
+
}
|
|
52
57
|
.e-documenteditor .e-de-cmt-post::before {
|
|
53
58
|
content: "\e816";
|
|
54
59
|
font-family: "e-icons";
|
|
@@ -1685,7 +1690,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
1685
1690
|
|
|
1686
1691
|
.e-de-restrict-pane,
|
|
1687
1692
|
.e-de-op {
|
|
1688
|
-
background
|
|
1693
|
+
background: #fff;
|
|
1689
1694
|
}
|
|
1690
1695
|
|
|
1691
1696
|
.e-de-restrict-pane .e-tab-header .e-toolbar-items,
|
|
@@ -2341,6 +2346,11 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2341
2346
|
height: 35px;
|
|
2342
2347
|
}
|
|
2343
2348
|
|
|
2349
|
+
.e-bigger .e-dlg-container .e-de-dlg-target .e-de-style-dialog .e-de-style-font-color-picker button {
|
|
2350
|
+
height: 40px !important;
|
|
2351
|
+
width: auto !important;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2344
2354
|
.e-de-style-bold-button-size {
|
|
2345
2355
|
margin-left: 8px;
|
|
2346
2356
|
margin-right: 8px;
|
|
@@ -2378,7 +2388,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
2378
2388
|
margin-right: 15px;
|
|
2379
2389
|
}
|
|
2380
2390
|
|
|
2381
|
-
.e-de-style-
|
|
2391
|
+
.e-de-style-dlg-name-input {
|
|
2382
2392
|
height: 18px;
|
|
2383
2393
|
}
|
|
2384
2394
|
|
|
@@ -3301,6 +3311,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
3301
3311
|
|
|
3302
3312
|
.e-de-cp-option.e-btn.e-icon-btn span {
|
|
3303
3313
|
margin-top: 0px;
|
|
3314
|
+
background: #fff;
|
|
3304
3315
|
}
|
|
3305
3316
|
|
|
3306
3317
|
.e-de-cmt-view:hover .e-de-cp-option {
|
|
@@ -4209,6 +4220,21 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4209
4220
|
font-family: "e-icons";
|
|
4210
4221
|
}
|
|
4211
4222
|
|
|
4223
|
+
.e-de-e-paragraph-style-mark::before {
|
|
4224
|
+
content: "\e353";
|
|
4225
|
+
font-family: "e-icons";
|
|
4226
|
+
}
|
|
4227
|
+
|
|
4228
|
+
.e-de-e-character-style-mark::before {
|
|
4229
|
+
content: "\e97d";
|
|
4230
|
+
font-family: "e-icons";
|
|
4231
|
+
}
|
|
4232
|
+
|
|
4233
|
+
.e-de-e-linked-style-mark::before {
|
|
4234
|
+
content: "\e97e";
|
|
4235
|
+
font-family: "e-icons";
|
|
4236
|
+
}
|
|
4237
|
+
|
|
4212
4238
|
.e-de-ctnr-columns::before {
|
|
4213
4239
|
content: "\e955";
|
|
4214
4240
|
font-family: "e-icons";
|
|
@@ -4341,8 +4367,48 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4341
4367
|
height: 100%;
|
|
4342
4368
|
}
|
|
4343
4369
|
|
|
4370
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
4371
|
+
box-shadow: none;
|
|
4372
|
+
height: 28px;
|
|
4373
|
+
}
|
|
4374
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
4375
|
+
box-shadow: none;
|
|
4376
|
+
}
|
|
4377
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
4378
|
+
box-shadow: none;
|
|
4379
|
+
}
|
|
4380
|
+
.e-de-prop-pane .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
4381
|
+
box-shadow: none;
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
.e-de-ctnr-group-btn-middle button {
|
|
4385
|
+
border-radius: 0px;
|
|
4386
|
+
}
|
|
4387
|
+
|
|
4388
|
+
.de-tbl-fill-clr .e-dropdown-btn.e-btn {
|
|
4389
|
+
box-shadow: none;
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button,
|
|
4393
|
+
.e-de-ctn .e-de-status-bar button {
|
|
4394
|
+
box-shadow: none;
|
|
4395
|
+
height: 28px;
|
|
4396
|
+
}
|
|
4397
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:focus,
|
|
4398
|
+
.e-de-ctn .e-de-status-bar button:focus {
|
|
4399
|
+
box-shadow: none;
|
|
4400
|
+
}
|
|
4401
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:active,
|
|
4402
|
+
.e-de-ctn .e-de-status-bar button:active {
|
|
4403
|
+
box-shadow: none;
|
|
4404
|
+
}
|
|
4405
|
+
.e-de-prop-pane .e-de-ctnr-group-btn button:hover,
|
|
4406
|
+
.e-de-ctn .e-de-status-bar button:hover {
|
|
4407
|
+
box-shadow: none;
|
|
4408
|
+
}
|
|
4409
|
+
|
|
4344
4410
|
.e-de-statusbar-pageweb {
|
|
4345
|
-
background
|
|
4411
|
+
background: #fafafa;
|
|
4346
4412
|
border: 0;
|
|
4347
4413
|
box-shadow: none;
|
|
4348
4414
|
float: right;
|
|
@@ -4371,12 +4437,25 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4371
4437
|
font-size: 16px;
|
|
4372
4438
|
}
|
|
4373
4439
|
|
|
4440
|
+
.e-listview .e-list-icon {
|
|
4441
|
+
height: 24px;
|
|
4442
|
+
width: 16px;
|
|
4443
|
+
margin-right: 12px;
|
|
4444
|
+
}
|
|
4445
|
+
|
|
4446
|
+
.e-de-listview-icon {
|
|
4447
|
+
height: auto;
|
|
4448
|
+
width: auto;
|
|
4449
|
+
line-height: 22px;
|
|
4450
|
+
margin-right: 12px;
|
|
4451
|
+
}
|
|
4452
|
+
|
|
4374
4453
|
.e-de-linespacing {
|
|
4375
4454
|
margin-top: 11px;
|
|
4376
4455
|
}
|
|
4377
4456
|
|
|
4378
4457
|
.e-de-statusbar-zoom {
|
|
4379
|
-
background
|
|
4458
|
+
background: #fafafa;
|
|
4380
4459
|
border: 0;
|
|
4381
4460
|
color: #000;
|
|
4382
4461
|
float: right;
|
|
@@ -4439,14 +4518,22 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4439
4518
|
.e-de-statusbar-separator {
|
|
4440
4519
|
border-left: 1px solid #ebebeb;
|
|
4441
4520
|
height: 16px;
|
|
4442
|
-
margin-left:
|
|
4521
|
+
margin-left: 7.5px;
|
|
4522
|
+
margin-right: 7.5px;
|
|
4523
|
+
margin-top: 10px;
|
|
4524
|
+
}
|
|
4525
|
+
|
|
4526
|
+
.e-bigger .e-de-statusbar-separator {
|
|
4527
|
+
border-left: 1px solid #ebebeb;
|
|
4528
|
+
height: 16px;
|
|
4529
|
+
margin-left: 7.5px;
|
|
4530
|
+
margin-right: 7.5px;
|
|
4443
4531
|
margin-top: 10px;
|
|
4444
4532
|
}
|
|
4445
4533
|
|
|
4446
4534
|
.e-de-statusbar-spellcheck {
|
|
4447
4535
|
border-radius: 2px;
|
|
4448
4536
|
font-weight: 400;
|
|
4449
|
-
margin-left: 7.5px;
|
|
4450
4537
|
}
|
|
4451
4538
|
|
|
4452
4539
|
.e-de-ctn {
|
|
@@ -4459,7 +4546,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4459
4546
|
|
|
4460
4547
|
.e-bigger .e-de-statusbar-spellcheck {
|
|
4461
4548
|
border-radius: 2px;
|
|
4462
|
-
margin-left: 7.5px;
|
|
4463
4549
|
}
|
|
4464
4550
|
|
|
4465
4551
|
.e-de-ctnr-toolbar {
|
|
@@ -4489,7 +4575,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4489
4575
|
|
|
4490
4576
|
.e-de-tool-ctnr-properties-pane,
|
|
4491
4577
|
.e-de-ctnr-properties-pane {
|
|
4492
|
-
background
|
|
4578
|
+
background: #fafafa;
|
|
4493
4579
|
border-bottom: 1px solid #eee;
|
|
4494
4580
|
border-top: 1px solid #eee;
|
|
4495
4581
|
}
|
|
@@ -4588,7 +4674,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4588
4674
|
margin: 0 5.5px;
|
|
4589
4675
|
}
|
|
4590
4676
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
4591
|
-
margin-left: 12px;
|
|
4677
|
+
margin-left: 12px !important;
|
|
4592
4678
|
margin-right: 6px;
|
|
4593
4679
|
}
|
|
4594
4680
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
|
|
@@ -4604,20 +4690,23 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4604
4690
|
}
|
|
4605
4691
|
|
|
4606
4692
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
|
|
4693
|
+
-ms-flex-direction: column;
|
|
4694
|
+
flex-direction: column;
|
|
4695
|
+
height: calc(100% - 10px);
|
|
4607
4696
|
padding: 0;
|
|
4608
|
-
padding-bottom:
|
|
4697
|
+
padding-bottom: 5px;
|
|
4609
4698
|
}
|
|
4610
4699
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus {
|
|
4611
4700
|
padding: 0;
|
|
4612
|
-
padding-bottom:
|
|
4701
|
+
padding-bottom: 5px;
|
|
4613
4702
|
}
|
|
4614
4703
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active {
|
|
4615
4704
|
padding: 0;
|
|
4616
|
-
padding-bottom:
|
|
4705
|
+
padding-bottom: 5px;
|
|
4617
4706
|
}
|
|
4618
4707
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover {
|
|
4619
4708
|
padding: 0;
|
|
4620
|
-
padding-bottom:
|
|
4709
|
+
padding-bottom: 5px;
|
|
4621
4710
|
}
|
|
4622
4711
|
|
|
4623
4712
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
@@ -4646,7 +4735,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4646
4735
|
}
|
|
4647
4736
|
|
|
4648
4737
|
.e-de-ctnr-properties-pane-btn .e-btn {
|
|
4649
|
-
background
|
|
4738
|
+
background: #fafafa;
|
|
4650
4739
|
border-radius: 0;
|
|
4651
4740
|
box-shadow: none;
|
|
4652
4741
|
color: #3f51b5;
|
|
@@ -4688,6 +4777,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4688
4777
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
4689
4778
|
.e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
4690
4779
|
padding: 0 !important;
|
|
4780
|
+
min-height: 16px;
|
|
4691
4781
|
}
|
|
4692
4782
|
|
|
4693
4783
|
.e-de-hdr-ftr-frst-div {
|
|
@@ -4710,6 +4800,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4710
4800
|
}
|
|
4711
4801
|
|
|
4712
4802
|
.e-de-review-pane {
|
|
4803
|
+
background: #fafafa;
|
|
4713
4804
|
border-left: 1px solid #e0e0e0;
|
|
4714
4805
|
height: 100%;
|
|
4715
4806
|
min-height: 200px;
|
|
@@ -4727,34 +4818,6 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4727
4818
|
width: 270px;
|
|
4728
4819
|
}
|
|
4729
4820
|
|
|
4730
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline) {
|
|
4731
|
-
box-shadow: none;
|
|
4732
|
-
height: 28px;
|
|
4733
|
-
}
|
|
4734
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):focus {
|
|
4735
|
-
box-shadow: none;
|
|
4736
|
-
}
|
|
4737
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):active {
|
|
4738
|
-
box-shadow: none;
|
|
4739
|
-
}
|
|
4740
|
-
.e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
4741
|
-
box-shadow: none;
|
|
4742
|
-
}
|
|
4743
|
-
|
|
4744
|
-
.e-de-ctnr-group-btn button {
|
|
4745
|
-
box-shadow: none;
|
|
4746
|
-
height: 28px;
|
|
4747
|
-
}
|
|
4748
|
-
.e-de-ctnr-group-btn button:focus {
|
|
4749
|
-
box-shadow: none;
|
|
4750
|
-
}
|
|
4751
|
-
.e-de-ctnr-group-btn button:active {
|
|
4752
|
-
box-shadow: none;
|
|
4753
|
-
}
|
|
4754
|
-
.e-de-ctnr-group-btn button:hover {
|
|
4755
|
-
box-shadow: none;
|
|
4756
|
-
}
|
|
4757
|
-
|
|
4758
4821
|
.e-de-property-div-padding {
|
|
4759
4822
|
border-bottom: 0.5px solid #e0e0e0;
|
|
4760
4823
|
padding: 12.5px;
|
|
@@ -4878,7 +4941,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4878
4941
|
}
|
|
4879
4942
|
|
|
4880
4943
|
.e-de-list-header-presetmenu .e-de-list-line {
|
|
4881
|
-
border-bottom: 1px solid #ccc;
|
|
4944
|
+
border-bottom: 1px solid #ccc !important;
|
|
4882
4945
|
margin-left: 5px;
|
|
4883
4946
|
width: 100%;
|
|
4884
4947
|
}
|
|
@@ -4947,10 +5010,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
4947
5010
|
}
|
|
4948
5011
|
|
|
4949
5012
|
.e-de-list-container {
|
|
4950
|
-
background: #fafafa;
|
|
4951
5013
|
border: 1px solid #ccc;
|
|
4952
5014
|
border-radius: 2px;
|
|
4953
5015
|
box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
|
|
5016
|
+
background: #fafafa;
|
|
4954
5017
|
box-sizing: border-box;
|
|
4955
5018
|
display: inline-block;
|
|
4956
5019
|
line-height: normal;
|
|
@@ -5042,8 +5105,8 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5042
5105
|
border: 1px solid #eee;
|
|
5043
5106
|
color: rgba(0, 0, 0, 0.54);
|
|
5044
5107
|
height: 129px;
|
|
5045
|
-
margin-left: 78px;
|
|
5046
5108
|
width: 94px;
|
|
5109
|
+
margin-left: 78px;
|
|
5047
5110
|
}
|
|
5048
5111
|
|
|
5049
5112
|
.e-de-toc-template1.e-de-rtl {
|
|
@@ -5098,7 +5161,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5098
5161
|
}
|
|
5099
5162
|
|
|
5100
5163
|
.e-de-status-bar {
|
|
5101
|
-
background
|
|
5164
|
+
background: #fafafa;
|
|
5102
5165
|
display: -ms-flexbox;
|
|
5103
5166
|
display: flex;
|
|
5104
5167
|
padding-top: 2.5px;
|
|
@@ -5223,7 +5286,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5223
5286
|
}
|
|
5224
5287
|
|
|
5225
5288
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
5226
|
-
height:
|
|
5289
|
+
height: 36px !important;
|
|
5227
5290
|
}
|
|
5228
5291
|
|
|
5229
5292
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn {
|
|
@@ -5231,8 +5294,8 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5231
5294
|
}
|
|
5232
5295
|
|
|
5233
5296
|
.e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
|
|
5234
|
-
height: 38px;
|
|
5235
5297
|
width: 38px;
|
|
5298
|
+
height: 38px;
|
|
5236
5299
|
}
|
|
5237
5300
|
|
|
5238
5301
|
.e-bigger .e-de-grp-btn-ctnr .e-de-ctnr-group-btn > button {
|
|
@@ -5244,6 +5307,18 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5244
5307
|
width: 70px;
|
|
5245
5308
|
}
|
|
5246
5309
|
|
|
5310
|
+
.e-rtl .e-listview .e-list-icon {
|
|
5311
|
+
height: 24px;
|
|
5312
|
+
width: 16px;
|
|
5313
|
+
margin-left: 12px;
|
|
5314
|
+
}
|
|
5315
|
+
.e-rtl .e-de-listview-icon {
|
|
5316
|
+
height: auto;
|
|
5317
|
+
width: auto;
|
|
5318
|
+
line-height: 22px;
|
|
5319
|
+
margin-left: 12px;
|
|
5320
|
+
}
|
|
5321
|
+
|
|
5247
5322
|
.e-bigger .de-split-button > div:first-child {
|
|
5248
5323
|
margin-right: 0;
|
|
5249
5324
|
}
|
|
@@ -5356,11 +5431,10 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5356
5431
|
height: 82px;
|
|
5357
5432
|
}
|
|
5358
5433
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-separator {
|
|
5359
|
-
height: 25px;
|
|
5360
5434
|
margin: 0 7.5px;
|
|
5361
5435
|
}
|
|
5362
5436
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-start {
|
|
5363
|
-
margin-left: 16px;
|
|
5437
|
+
margin-left: 16px !important;
|
|
5364
5438
|
margin-right: 8px;
|
|
5365
5439
|
}
|
|
5366
5440
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item.e-de-toolbar-btn-middle {
|
|
@@ -5377,22 +5451,22 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5377
5451
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
|
|
5378
5452
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
5379
5453
|
padding: 0;
|
|
5380
|
-
padding-bottom:
|
|
5454
|
+
padding-bottom: 5px;
|
|
5381
5455
|
}
|
|
5382
5456
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:focus,
|
|
5383
5457
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:focus {
|
|
5384
5458
|
padding: 0;
|
|
5385
|
-
padding-bottom:
|
|
5459
|
+
padding-bottom: 5px;
|
|
5386
5460
|
}
|
|
5387
5461
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:active,
|
|
5388
5462
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:active {
|
|
5389
5463
|
padding: 0;
|
|
5390
|
-
padding-bottom:
|
|
5464
|
+
padding-bottom: 5px;
|
|
5391
5465
|
}
|
|
5392
5466
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn:hover,
|
|
5393
5467
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
5394
5468
|
padding: 0;
|
|
5395
|
-
padding-bottom:
|
|
5469
|
+
padding-bottom: 5px;
|
|
5396
5470
|
}
|
|
5397
5471
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn .e-tbar-btn-text {
|
|
5398
5472
|
padding: 0 !important;
|
|
@@ -5408,7 +5482,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5408
5482
|
width: 75px;
|
|
5409
5483
|
}
|
|
5410
5484
|
.e-bigger .e-de-ctnr-properties-pane-btn .e-btn {
|
|
5411
|
-
background
|
|
5485
|
+
background: #fafafa;
|
|
5412
5486
|
border-radius: 0;
|
|
5413
5487
|
box-shadow: none;
|
|
5414
5488
|
min-height: 100%;
|
|
@@ -5437,6 +5511,7 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5437
5511
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
5438
5512
|
display: table;
|
|
5439
5513
|
font-size: 13px;
|
|
5514
|
+
font-size: 12px !important;
|
|
5440
5515
|
margin: 0 6px;
|
|
5441
5516
|
padding: 0;
|
|
5442
5517
|
white-space: normal;
|
|
@@ -5459,6 +5534,19 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5459
5534
|
.e-bigger .e-de-ctnr-group-btn.e-btn-group:not(.e-outline):hover {
|
|
5460
5535
|
box-shadow: none;
|
|
5461
5536
|
}
|
|
5537
|
+
.e-bigger .e-de-status-bar button {
|
|
5538
|
+
height: 36px;
|
|
5539
|
+
box-shadow: none;
|
|
5540
|
+
}
|
|
5541
|
+
.e-bigger .e-de-status-bar button:focus {
|
|
5542
|
+
box-shadow: none;
|
|
5543
|
+
}
|
|
5544
|
+
.e-bigger .e-de-status-bar button:active {
|
|
5545
|
+
box-shadow: none;
|
|
5546
|
+
}
|
|
5547
|
+
.e-bigger .e-de-status-bar button:hover {
|
|
5548
|
+
box-shadow: none;
|
|
5549
|
+
}
|
|
5462
5550
|
.e-bigger .e-de-ctnr-group-btn button {
|
|
5463
5551
|
box-shadow: none;
|
|
5464
5552
|
height: 36px;
|
|
@@ -5572,18 +5660,18 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5572
5660
|
margin-left: 10px;
|
|
5573
5661
|
}
|
|
5574
5662
|
.e-bigger .e-de-status-bar {
|
|
5575
|
-
background
|
|
5663
|
+
background: #fafafa;
|
|
5576
5664
|
display: -ms-flexbox;
|
|
5577
5665
|
display: flex;
|
|
5578
5666
|
padding-top: 3.5px;
|
|
5579
5667
|
width: 100%;
|
|
5580
5668
|
}
|
|
5581
5669
|
.e-bigger .e-de-statusbar-zoom {
|
|
5582
|
-
background-color: #fafafa;
|
|
5583
5670
|
border: 0;
|
|
5584
5671
|
color: #000;
|
|
5585
5672
|
float: right;
|
|
5586
5673
|
height: 34px;
|
|
5674
|
+
background-color: #fafafa;
|
|
5587
5675
|
}
|
|
5588
5676
|
.e-bigger .e-de-toolbar.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn-text {
|
|
5589
5677
|
line-height: 25px;
|
|
@@ -5592,6 +5680,28 @@ label[for*=_wholeWord_e-de-rtl] {
|
|
|
5592
5680
|
height: 6px;
|
|
5593
5681
|
line-height: 0;
|
|
5594
5682
|
}
|
|
5683
|
+
.e-bigger .e-listview .e-list-icon {
|
|
5684
|
+
height: 24px;
|
|
5685
|
+
width: 16px;
|
|
5686
|
+
margin-right: 12px;
|
|
5687
|
+
}
|
|
5688
|
+
.e-bigger .e-de-listview-icon {
|
|
5689
|
+
height: auto;
|
|
5690
|
+
width: auto;
|
|
5691
|
+
line-height: 22px;
|
|
5692
|
+
margin-right: 12px;
|
|
5693
|
+
}
|
|
5694
|
+
.e-bigger .e-rtl .e-listview .e-list-icon {
|
|
5695
|
+
height: 24px;
|
|
5696
|
+
width: 16px;
|
|
5697
|
+
margin-left: 12px;
|
|
5698
|
+
}
|
|
5699
|
+
.e-bigger .e-rtl .e-de-listview-icon {
|
|
5700
|
+
height: auto;
|
|
5701
|
+
width: auto;
|
|
5702
|
+
line-height: 22px;
|
|
5703
|
+
margin-left: 12px;
|
|
5704
|
+
}
|
|
5595
5705
|
|
|
5596
5706
|
.e-de-ctn .e-de-bzr-button {
|
|
5597
5707
|
font-size: 12px;
|