@indigina/kendo 2.0.33 → 2.0.35

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/README.md CHANGED
@@ -1404,6 +1404,5 @@ This service provides public methods for managing the current locale for an appl
1404
1404
  - [@angular/platform-browser/animations](https://angular.io/api/platform-browser/animations)
1405
1405
  - [@ngx-translate/core](https://www.npmjs.com/package/@ngx-translate/core)
1406
1406
  - [ngx-clipboard](https://www.npmjs.com/package/ngx-clipboard)
1407
- - [ngx-toastr](https://www.npmjs.com/package/ngx-toastr)
1408
1407
  - [angular-oauth2-oidc](https://github.com/manfredsteyer/angular-oauth2-oidc)
1409
1408
  - [moment-timezone](https://www.npmjs.com/package/moment-timezone) as **momentTimezone** const
@@ -1,8 +1,6 @@
1
1
  @import "bootstrap/dist/css/bootstrap.min.css";
2
2
  @import "font-awesome/css/font-awesome.min.css";
3
- @import "./styles/external-fonts.scss";
4
- @import "./styles/styles-inspiria.scss";
5
- @import "ngx-toastr/toastr";
3
+ @import "styles/external-fonts.scss";
6
4
  @import "@progress/kendo-theme-default/dist/all.css";
7
5
  @import "styles/kendoGrids.scss";
8
6
  @import "styles/kendooveride.scss";
@@ -19,7 +17,7 @@
19
17
  }
20
18
 
21
19
  .k-icon.glyphicon {
22
- font-family: "Glyphicons Halflings";
20
+ font-family: Glyphicons Halflings, sans-serif;
23
21
  }
24
22
 
25
23
  :root {
@@ -38,7 +38,7 @@ body {
38
38
  margin: 10px 0 10px 10px;
39
39
  font-weight: normal;
40
40
  font-size: 25px;
41
- font-family: Tahoma;
41
+ font-family: Tahoma, sans-serif;
42
42
  color: #36517e;
43
43
  }
44
44
 
@@ -112,14 +112,10 @@ form {
112
112
 
113
113
  .container-bordered {
114
114
  background-color: #fff;
115
- border: 1px solid #999;
116
115
  border: 1px solid rgba(0, 0, 0, 0.3);
117
116
  -webkit-border-radius: 6px;
118
- -moz-border-radius: 6px;
119
117
  border-radius: 6px;
120
118
  outline: 0;
121
- -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
122
- -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
123
119
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
124
120
  background-clip: padding-box;
125
121
  padding-bottom: 15px;
@@ -156,12 +152,7 @@ input[type='color'],
156
152
  .uneditable-input {
157
153
  background-color: #ffffff;
158
154
  border: 1px solid #cccccc;
159
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
160
- -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
161
155
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
162
- -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
163
- -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
164
- -o-transition: border linear 0.2s, box-shadow linear 0.2s;
165
156
  transition: border linear 0.2s, box-shadow linear 0.2s;
166
157
  }
167
158
 
@@ -403,28 +394,9 @@ tr.errors td {
403
394
  border: 1px solid #c0c1c2;
404
395
  border-bottom: 0;
405
396
  background-color: #f9f9f9;
406
- background-image: -webkit-gradient(
407
- linear,
408
- 0 0,
409
- 0 100%,
410
- from(#fefefe),
411
- color-stop(15%, #fefefe),
412
- to(#e3e3e5)
413
- );
414
- background-image: -webkit-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
415
- background-image: -moz-linear-gradient(top, #fefefe, #fefefe 15%, #e3e3e5);
416
- background-image: -o-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
417
397
  background-image: linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
418
398
  background-repeat: no-repeat;
419
- -webkit-border-radius: 3px;
420
- -moz-border-radius: 3px;
421
- border-radius: 3px;
422
- -webkit-border-bottom-right-radius: 0;
423
- -moz-border-radius-bottomright: 0;
424
- border-bottom-right-radius: 0;
425
- -webkit-border-bottom-left-radius: 0;
426
- -moz-border-radius-bottomleft: 0;
427
- border-bottom-left-radius: 0;
399
+ border-radius: 3px 3px 0 0;
428
400
  height: 30px;
429
401
  }
430
402
 
@@ -442,18 +414,12 @@ form :not(kendo-searchbar) > .k-input {
442
414
  height: 30px;
443
415
  line-height: 16px;
444
416
  border: 1px solid #cccccc;
445
- -webkit-box-shadow: inset 0px 1px 3px #ececec;
446
- -moz-box-shadow: inset 0px 1px 3px #ececec;
447
- box-shadow: inset 0px 1px 3px #ececec;
448
- -webkit-border-radius: 3px;
449
- -moz-border-radius: 3px;
417
+ box-shadow: inset 0 1px 3px #ececec;
450
418
  border-radius: 3px;
451
419
  color: #333333;
452
420
  }
453
421
 
454
422
  .border-radius {
455
- -webkit-border-radius: 3px;
456
- -moz-border-radius: 3px;
457
423
  border-radius: 3px;
458
424
  }
459
425
 
@@ -569,20 +535,10 @@ form :not(kendo-searchbar) > .k-input {
569
535
 
570
536
  .navbar-inner .container-login {
571
537
  background-color: #fafafa;
572
- background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
573
- background-image: -webkit-gradient(
574
- linear,
575
- 0 0,
576
- 0 100%,
577
- from(#ffffff),
578
- to(#f2f2f2)
579
- );
580
- background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
581
- background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
582
538
  background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
583
539
  background-repeat: repeat-x;
584
540
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
585
- border: 0px;
541
+ border: 0;
586
542
  }
587
543
 
588
544
  .navbar-fixed-top {
@@ -1000,10 +956,6 @@ div.k-grid-header {
1000
956
  color: rgba(255, 255, 255, 0.75);
1001
957
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1002
958
  background-color: #363636;
1003
- background-image: -moz-linear-gradient(top, #444, #222);
1004
- background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));
1005
- background-image: -webkit-linear-gradient(top, #444, #222);
1006
- background-image: -o-linear-gradient(top, #444, #222);
1007
959
  background-image: linear-gradient(to bottom, #444, #222);
1008
960
  background-repeat: repeat-x;
1009
961
  border-color: #222 #222 #000;
@@ -1124,19 +1076,15 @@ div.k-window-content {
1124
1076
  text-align: right;
1125
1077
  background-color: #f5f5f5;
1126
1078
  border-top: 1px solid #ddd;
1127
- -webkit-border-radius: 0 0 6px 6px;
1128
- -moz-border-radius: 0 0 6px 6px;
1129
1079
  border-radius: 0 0 6px 6px;
1130
- -webkit-box-shadow: inset 0 1px 0 #fff;
1131
- -moz-box-shadow: inset 0 1px 0 #fff;
1132
1080
  box-shadow: inset 0 1px 0 #fff;
1133
1081
  }
1134
1082
 
1135
1083
  .k-widget.k-window #confirmationModal .popupMessage.bootbox-body {
1136
- margin-top: 0px;
1084
+ margin-top: 0;
1137
1085
  padding: 15px;
1138
- border: 0px;
1139
- border-image-width: 0px;
1086
+ border: 0;
1087
+ border-image-width: 0;
1140
1088
  }
1141
1089
 
1142
1090
  .k-widget.k-window {
@@ -1389,17 +1337,6 @@ a {
1389
1337
 
1390
1338
  .protocol-block {
1391
1339
  background-color: #f9f9f9;
1392
- background-image: -webkit-gradient(
1393
- linear,
1394
- 0 0,
1395
- 0 100%,
1396
- from(#fefefe),
1397
- color-stop(15%, #fefefe),
1398
- to(#e3e3e5)
1399
- );
1400
- background-image: -webkit-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
1401
- background-image: -moz-linear-gradient(top, #fefefe, #fefefe 15%, #e3e3e5);
1402
- background-image: -o-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
1403
1340
  background-image: linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
1404
1341
  background-repeat: no-repeat;
1405
1342
  color: #36517e;
@@ -1432,17 +1369,6 @@ a {
1432
1369
 
1433
1370
  .alert-info {
1434
1371
  background-color: #f9f9f9;
1435
- background-image: -webkit-gradient(
1436
- linear,
1437
- 0 0,
1438
- 0 100%,
1439
- from(#fefefe),
1440
- color-stop(15%, #fefefe),
1441
- to(#e3e3e5)
1442
- );
1443
- background-image: -webkit-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
1444
- background-image: -moz-linear-gradient(top, #fefefe, #fefefe 15%, #e3e3e5);
1445
- background-image: -o-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
1446
1372
  background-image: linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
1447
1373
  background-repeat: no-repeat;
1448
1374
  -webkit-border-radius: 3px;
@@ -1459,30 +1385,6 @@ a {
1459
1385
 
1460
1386
  .table th {
1461
1387
  background-color: #545255 !important;
1462
- background-image: -webkit-gradient(
1463
- linear,
1464
- 0 0,
1465
- 0 100%,
1466
- from(#423f42),
1467
- color-stop(50%, #58575a),
1468
- to(#434043)
1469
- ) !important;
1470
- background-image: -webkit-linear-gradient(
1471
- #423f42,
1472
- #58575a 50%,
1473
- #434043
1474
- ) !important;
1475
- background-image: -moz-linear-gradient(
1476
- top,
1477
- #423f42,
1478
- #58575a 50%,
1479
- #434043
1480
- ) !important;
1481
- background-image: -o-linear-gradient(
1482
- #423f42,
1483
- #58575a 50%,
1484
- #434043
1485
- ) !important;
1486
1388
  background-image: linear-gradient(#423f42, #58575a 50%, #434043) !important;
1487
1389
  background-repeat: no-repeat !important;
1488
1390
  color: #fff !important;
@@ -1540,17 +1442,6 @@ a {
1540
1442
 
1541
1443
  .bg-info {
1542
1444
  background-color: #f9f9f9;
1543
- background-image: -webkit-gradient(
1544
- linear,
1545
- 0 0,
1546
- 0 100%,
1547
- from(#fefefe),
1548
- color-stop(15%, #fefefe),
1549
- to(#e3e3e5)
1550
- );
1551
- background-image: -webkit-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
1552
- background-image: -moz-linear-gradient(top, #fefefe, #fefefe 15%, #e3e3e5);
1553
- background-image: -o-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
1554
1445
  background-image: linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
1555
1446
  background-repeat: no-repeat;
1556
1447
  -webkit-border-radius: 3px;
@@ -1853,25 +1744,13 @@ a {
1853
1744
  width: 45px;
1854
1745
  }
1855
1746
 
1856
- #ip-grid
1857
- > div.k-grid-content
1858
- > table
1859
- > tbody
1860
- > tr.ng-scope.k-grid-edit-row
1861
- > td:nth-child(2)
1862
- > a.k-button.k-button-icontext.k-primary.k-grid-update {
1747
+ #ip-grid > div.k-grid-content > table > tbody > tr.ng-scope.k-grid-edit-row > td:nth-child(2) > a.k-button.k-button-icontext.k-primary.k-grid-update {
1863
1748
  display: inline;
1864
1749
  margin-right: 30px;
1865
1750
  margin-left: 30px;
1866
1751
  }
1867
1752
 
1868
- #ip-grid
1869
- > div.k-grid-content
1870
- > table
1871
- > tbody
1872
- > tr.ng-scope.k-grid-edit-row
1873
- > td:nth-child(2)
1874
- > a.k-button.k-button-icontext.k-grid-cancel {
1753
+ #ip-grid > div.k-grid-content > table > tbody > tr.ng-scope.k-grid-edit-row > td:nth-child(2) > a.k-button.k-button-icontext.k-grid-cancel {
1875
1754
  display: inline;
1876
1755
  margin-right: 30px;
1877
1756
  margin-left: 30px;
@@ -2058,10 +1937,15 @@ div.warn {
2058
1937
  }
2059
1938
 
2060
1939
  .k-grid td.k-state-selected,
2061
- .k-grid tr.k-state-selected > td {
1940
+ .k-grid tr.k-state-selected > td,
1941
+ .k-grid .k-table-row.k-selected > .k-table-td:not(.k-group-cell) {
2062
1942
  background-color: #dce4f0;
2063
1943
  }
2064
1944
 
1945
+ .k-grid .k-table-row > .k-table-td:is(:focus, .k-focus) {
1946
+ box-shadow: none;
1947
+ }
1948
+
2065
1949
  .k-button:active,
2066
1950
  .k-button.k-state-active,
2067
1951
  .k-button:active:hover,
@@ -2324,7 +2208,7 @@ body.mini-navbar .navbar-default .nav .nav-second-level li a span {
2324
2208
  .k-input.k-multiselect {
2325
2209
  padding-left: 0px;
2326
2210
  display: flex;
2327
- height: auto;
2211
+ height: 30px;
2328
2212
  }
2329
2213
 
2330
2214
  .k-input .k-i-loading {
@@ -48,12 +48,17 @@ div.k-grid.k-widget.without-border {
48
48
 
49
49
  .k-grid.ovveride-grid {
50
50
  border: 1px solid #c5c5c5;
51
- -ms-border-radius: 3px;
52
51
  border-radius: 3px;
53
52
  }
54
53
  .k-grid-content td {
55
54
  border-bottom: 1px solid #bdbec1;
56
55
  }
56
+
57
+ .k-grid .k-table-td {
58
+ border-color: #bdbec1;
59
+ border-bottom: 1px solid #bdbec1;
60
+ }
61
+
57
62
  /*end grid*/
58
63
  .k-grid-header-wrap tr:first-child {
59
64
  border: 1px solid #4e4d50;
@@ -74,8 +79,6 @@ div.k-grid.k-widget.without-border {
74
79
  border-top: 0;
75
80
  border-left: 0;
76
81
  border-radius: 2px 2px 0 0;
77
-
78
- border-width: 0;
79
82
  }
80
83
 
81
84
  .k-gantt .k-grid-content tr td:first-child {
@@ -101,8 +104,6 @@ html .k-grid-edit-row .k-tooltip {
101
104
 
102
105
  .k-widget.k-tooltip {
103
106
  background-color: #e5daf8;
104
- border-color: #e5daf8;
105
- border-radius: 0;
106
107
  max-width: 200px;
107
108
  z-index: 10000;
108
109
  border: 1px solid #cccccc;
@@ -158,30 +159,6 @@ html .km-pane-wrapper .k-header {
158
159
  .k-gantt-treelist .k-grid-header th.k-header,
159
160
  .k-grid .k-grid-header th.k-header {
160
161
  background-color: #545255 !important;
161
- background-image: -webkit-gradient(
162
- linear,
163
- 0 0,
164
- 0 100%,
165
- from(#423f42),
166
- color-stop(50%, #58575a),
167
- to(#434043)
168
- ) !important;
169
- background-image: -webkit-linear-gradient(
170
- #423f42,
171
- #58575a 50%,
172
- #434043
173
- ) !important;
174
- background-image: -moz-linear-gradient(
175
- top,
176
- #423f42,
177
- #58575a 50%,
178
- #434043
179
- ) !important;
180
- background-image: -o-linear-gradient(
181
- #423f42,
182
- #58575a 50%,
183
- #434043
184
- ) !important;
185
162
  background-image: linear-gradient(#423f42, #58575a 50%, #434043) !important;
186
163
  background-repeat: no-repeat !important;
187
164
  color: #fff !important;
@@ -591,9 +568,24 @@ html .km-pane-wrapper .k-header {
591
568
  .k-pager-wrap .k-link:link,
592
569
  .k-pager-wrap .k-button,
593
570
  .k-pager-numbers .k-button {
571
+ width: 30px;
572
+ height: 30px;
594
573
  color: #5f5f5f !important;
574
+ border: none;
595
575
  background-color: transparent;
596
- border-color: transparent;
576
+ border-radius: 3px;
577
+
578
+ &:before {
579
+ opacity: 0;
580
+ inset-block: 0;
581
+ inset-inline: 0;
582
+ }
583
+
584
+ &:hover {
585
+ &:before {
586
+ opacity: .08;
587
+ }
588
+ }
597
589
  }
598
590
 
599
591
  .k-pager-wrap .k-link:hover,
@@ -605,6 +597,33 @@ html .km-pane-wrapper .k-header {
605
597
  background-color: transparent;
606
598
  }
607
599
 
600
+ .k-pager {
601
+ display: flex;
602
+ align-items: center;
603
+ flex: 0 0 auto;
604
+ padding: 8px;
605
+ border-color: #c5c5c5;
606
+ background-image: none, linear-gradient(to bottom, rgba(255, 255, 255, .6) 0, rgba(255, 255, 255, 0) 100%);
607
+ background-color: #eae8e8;
608
+
609
+ .pager {
610
+ margin: 0;
611
+ }
612
+
613
+ &-info {
614
+ padding: 0 10px;
615
+ }
616
+
617
+ &-nav {
618
+ width: 30px;
619
+ height: 30px;
620
+
621
+ &:before {
622
+ border-radius: 3px;
623
+ }
624
+ }
625
+ }
626
+
608
627
  /*table header arrows*/
609
628
 
610
629
  .k-grid-header
@@ -807,3 +826,23 @@ form.k-filter-menu
807
826
  .k-expander-header {
808
827
  padding: 12px 16px;
809
828
  }
829
+
830
+ .k-notification {
831
+ padding: 10px;
832
+ gap: 10px;
833
+
834
+ .k-svg-icon {
835
+ width: 18px;
836
+ height: 18px;
837
+ opacity: 1;
838
+ }
839
+
840
+ .k-notification-content,
841
+ .k-notification-text {
842
+ font-size: 15px;
843
+ }
844
+ }
845
+
846
+ div[kendowatermarkoverlay] {
847
+ display: none;
848
+ }