@indigina/kendo 2.0.35 → 2.0.37
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/assets/indigina-theme.scss +1 -1
- package/assets/styles/Site.scss +1 -2
- package/assets/styles/kendooveride.scss +30 -16
- package/assets/styles/tabstrip.scss +38 -0
- package/fesm2022/indigina-kendo.mjs +275 -80
- package/fesm2022/indigina-kendo.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-kendo.d.ts +21 -15
- package/assets/styles/kendo.supplystream.default.scss +0 -9
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
@import "@progress/kendo-theme-default/dist/all.css";
|
|
5
5
|
@import "styles/kendoGrids.scss";
|
|
6
6
|
@import "styles/kendooveride.scss";
|
|
7
|
-
@import "styles/kendo.supplystream.default.scss";
|
|
8
7
|
@import "styles/styles-inspiria.scss";
|
|
9
8
|
@import "styles/Site.scss";
|
|
9
|
+
@import "styles/tabstrip.scss";
|
|
10
10
|
|
|
11
11
|
.k-grid-toolbar .k-button {
|
|
12
12
|
margin: 5px 0 5px 5px;
|
package/assets/styles/Site.scss
CHANGED
|
@@ -1937,8 +1937,7 @@ div.warn {
|
|
|
1937
1937
|
}
|
|
1938
1938
|
|
|
1939
1939
|
.k-grid td.k-state-selected,
|
|
1940
|
-
.k-grid tr.k-state-selected > td
|
|
1941
|
-
.k-grid .k-table-row.k-selected > .k-table-td:not(.k-group-cell) {
|
|
1940
|
+
.k-grid tr.k-state-selected > td {
|
|
1942
1941
|
background-color: #dce4f0;
|
|
1943
1942
|
}
|
|
1944
1943
|
|
|
@@ -50,12 +50,8 @@ div.k-grid.k-widget.without-border {
|
|
|
50
50
|
border: 1px solid #c5c5c5;
|
|
51
51
|
border-radius: 3px;
|
|
52
52
|
}
|
|
53
|
-
.k-grid-content td {
|
|
54
|
-
border-bottom: 1px solid #bdbec1;
|
|
55
|
-
}
|
|
56
53
|
|
|
57
|
-
.k-grid
|
|
58
|
-
border-color: #bdbec1;
|
|
54
|
+
.k-grid-content td {
|
|
59
55
|
border-bottom: 1px solid #bdbec1;
|
|
60
56
|
}
|
|
61
57
|
|
|
@@ -209,6 +205,7 @@ html .km-pane-wrapper .k-header {
|
|
|
209
205
|
height: 100%;
|
|
210
206
|
width: 5px;
|
|
211
207
|
}
|
|
208
|
+
|
|
212
209
|
/*end*/
|
|
213
210
|
.task-managment ul li,
|
|
214
211
|
.k-tabstrip-items .k-state-default .k-link,
|
|
@@ -280,6 +277,7 @@ html .km-pane-wrapper .k-header {
|
|
|
280
277
|
background-color: #e5daf8 !important;
|
|
281
278
|
color: #333333;
|
|
282
279
|
}
|
|
280
|
+
|
|
283
281
|
/*Template Gant View Edit*/
|
|
284
282
|
#workflow-cnt .header {
|
|
285
283
|
background-color: #fff;
|
|
@@ -333,6 +331,7 @@ html .km-pane-wrapper .k-header {
|
|
|
333
331
|
border: 0 none;
|
|
334
332
|
border-radius: 0;
|
|
335
333
|
}
|
|
334
|
+
|
|
336
335
|
/*dropdawn in the table*/
|
|
337
336
|
|
|
338
337
|
.k-popup .k-list .k-item {
|
|
@@ -498,9 +497,11 @@ html .km-pane-wrapper .k-header {
|
|
|
498
497
|
.k-grid tbody .k-button:hover .k-cancel {
|
|
499
498
|
background-position: -30px -49px;
|
|
500
499
|
}
|
|
500
|
+
|
|
501
501
|
.k-grid tbody .k-button.k-grid-Delete:hover {
|
|
502
502
|
opacity: 1;
|
|
503
503
|
}
|
|
504
|
+
|
|
504
505
|
.k-grid tbody .k-button.k-grid-edit {
|
|
505
506
|
background-position: -118px -27px;
|
|
506
507
|
min-width: 19px;
|
|
@@ -514,6 +515,7 @@ html .km-pane-wrapper .k-header {
|
|
|
514
515
|
.k-grid tbody .k-button.k-grid-remove {
|
|
515
516
|
background-position: -122px -45px;
|
|
516
517
|
}
|
|
518
|
+
|
|
517
519
|
/*end*/
|
|
518
520
|
|
|
519
521
|
/*Btn add task green*/
|
|
@@ -627,15 +629,16 @@ html .km-pane-wrapper .k-header {
|
|
|
627
629
|
/*table header arrows*/
|
|
628
630
|
|
|
629
631
|
.k-grid-header
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
632
|
+
th.k-header[data-role="columnsorter"]
|
|
633
|
+
> .k-link:hover
|
|
634
|
+
span.k-i-arrow-s {
|
|
633
635
|
background-position: 0 -365px;
|
|
634
636
|
}
|
|
635
637
|
|
|
636
638
|
.k-grid-header th > .k-link:hover span.k-i-arrow-n {
|
|
637
639
|
background-position: 0 -334px;
|
|
638
640
|
}
|
|
641
|
+
|
|
639
642
|
/*end*/
|
|
640
643
|
|
|
641
644
|
#TaskStatus-list {
|
|
@@ -765,10 +768,10 @@ form.k-filter-menu button.k-button.k-primary {
|
|
|
765
768
|
}
|
|
766
769
|
|
|
767
770
|
form.k-filter-menu
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
771
|
+
ul.k-reset.k-multicheck-wrap
|
|
772
|
+
.k-item
|
|
773
|
+
.k-label
|
|
774
|
+
input[type="checkbox"] {
|
|
772
775
|
margin-right: 5px;
|
|
773
776
|
}
|
|
774
777
|
|
|
@@ -796,10 +799,7 @@ form.k-filter-menu
|
|
|
796
799
|
}
|
|
797
800
|
|
|
798
801
|
.k-grid .k-grid-aria-root {
|
|
799
|
-
.k-table-td
|
|
800
|
-
padding: 3px 12px;
|
|
801
|
-
}
|
|
802
|
-
|
|
802
|
+
.k-table-td,
|
|
803
803
|
.k-table-th {
|
|
804
804
|
padding: 8px 12px;
|
|
805
805
|
}
|
|
@@ -843,6 +843,20 @@ form.k-filter-menu
|
|
|
843
843
|
}
|
|
844
844
|
}
|
|
845
845
|
|
|
846
|
+
.k-grid .k-command-cell {
|
|
847
|
+
text-align: center;
|
|
848
|
+
|
|
849
|
+
> .k-button {
|
|
850
|
+
margin: 0;
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.k-button {
|
|
855
|
+
&-text {
|
|
856
|
+
display: flex;
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
|
|
846
860
|
div[kendowatermarkoverlay] {
|
|
847
861
|
display: none;
|
|
848
862
|
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
.k-tabstrip > .k-tabstrip-items-wrapper {
|
|
2
|
+
border-color: #e5e5e5;
|
|
3
|
+
|
|
4
|
+
> .k-tabstrip-items > .k-tabstrip-item {
|
|
5
|
+
position: relative;
|
|
6
|
+
border-color: #e5e5e5;
|
|
7
|
+
background-color: #eae8e8;
|
|
8
|
+
background-image: linear-gradient(to bottom, rgb(255 255 255 / 0.6), rgb(255 255 255 / 0));
|
|
9
|
+
|
|
10
|
+
&:hover {
|
|
11
|
+
border-color: #b6b6b6;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.k-active {
|
|
15
|
+
z-index: 1;
|
|
16
|
+
background-color: #ffffff;
|
|
17
|
+
background-image: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&:focus:not(:focus-visible),
|
|
21
|
+
&.k-focus:not(:focus-visible) {
|
|
22
|
+
box-shadow: none;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.k-link {
|
|
26
|
+
color: #2e2e2e;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.k-tabstrip > .k-tabstrip-content {
|
|
32
|
+
border-color: #e5e5e5;
|
|
33
|
+
|
|
34
|
+
&:focus:not(:focus-visible),
|
|
35
|
+
&.k-focus:not(:focus-visible) {
|
|
36
|
+
outline: none;
|
|
37
|
+
}
|
|
38
|
+
}
|