@indigina/kendo 2.0.2 → 2.0.3

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.
@@ -0,0 +1,775 @@
1
+ body {
2
+ font-family: "PT Sans", Tahoma, sans-serif;
3
+ }
4
+
5
+ .shadow {
6
+ box-shadow: 1px 4px 6px 2px #d0d0d2;
7
+ position: absolute;
8
+ height: 100%;
9
+ z-index: 1;
10
+ }
11
+
12
+ .k-alt,
13
+ .k-separator,
14
+ .k-pivot-layout > tbody > tr:first-child > td:first-child {
15
+ background-color: transparent;
16
+ }
17
+
18
+ .k-filter-row th:first-child {
19
+ border-left: 1px solid #bdbec1;
20
+ }
21
+
22
+ /*grid*/
23
+ tr.k-state-selected.k-grid-edit-row td {
24
+ padding: 2px 9px 2px 9px;
25
+ }
26
+
27
+ .k-grid.k-widget.with-add-btn {
28
+ border: 1px solid #bdbec1;
29
+ border-radius: 3px 3px 0 0;
30
+ }
31
+
32
+ div.k-grid.k-widget.without-border {
33
+ border-top-width: 0;
34
+ border-radius: 0 0 3px 3px;
35
+ }
36
+
37
+ .k-grid-lockedcolumns.k-grid.k-widget {
38
+ border: 1px solid #bdbec1;
39
+ }
40
+
41
+ .k-ghost-splitbar.k-ghost-splitbar-vertical.k-state-default {
42
+ z-index: 2;
43
+ }
44
+
45
+ .table-wrapper > .k-widget.k-grid.ovveride-grid {
46
+ border: 1px solid #c5c5c5;
47
+ }
48
+
49
+ .k-grid.ovveride-grid {
50
+ border: 1px solid #c5c5c5;
51
+ -ms-border-radius: 3px;
52
+ border-radius: 3px;
53
+ }
54
+ .k-grid-content td {
55
+ border-bottom: 1px solid #bdbec1;
56
+ }
57
+ /*end grid*/
58
+ .k-grid-header-wrap tr:first-child {
59
+ border: 1px solid #4e4d50;
60
+ }
61
+
62
+ .table-wrapper .k-grid-header {
63
+ border-left: 0;
64
+ }
65
+
66
+ .k-state-selected.k-task-milestone,
67
+ .k-state-selected .k-task-summary-complete {
68
+ border-color: #8d5ea4;
69
+ background: #8d5ea4;
70
+ box-shadow: 0 0 0 1px #bd98ff;
71
+ }
72
+
73
+ .k-widget.k-gantt {
74
+ border-top: 0;
75
+ border-left: 0;
76
+ border-radius: 2px 2px 0 0;
77
+
78
+ border-width: 0;
79
+ }
80
+
81
+ .k-gantt .k-grid-content tr td:first-child {
82
+ border-left: 1px solid #bdbec1 !important;
83
+ }
84
+
85
+ .k-timeline.k-grid.k-widget .k-grid-header {
86
+ border-top-left-radius: 0;
87
+ }
88
+
89
+ .k-gantt-tasks .k-grid td {
90
+ border-color: #ededed;
91
+ }
92
+
93
+ html .k-edit-cell .k-tooltip,
94
+ html .k-grid-edit-row .k-tooltip {
95
+ max-width: 200px;
96
+ }
97
+
98
+ .k-tooltip-validation .k-callout-n {
99
+ border-bottom-color: #e5daf8;
100
+ }
101
+
102
+ .k-widget.k-tooltip {
103
+ background-color: #e5daf8;
104
+ border-color: #e5daf8;
105
+ border-radius: 0;
106
+ max-width: 200px;
107
+ z-index: 10000;
108
+ border: 1px solid #cccccc;
109
+ border-radius: 2px;
110
+ }
111
+
112
+ .k-gantt-views a.k-link {
113
+ color: black !important;
114
+ }
115
+
116
+ .k-grid-content .k-gantt-columns tr td:first-child {
117
+ border-width: 0;
118
+ }
119
+
120
+ .k-grid.k-timeline td {
121
+ border-color: #e9eaee;
122
+ }
123
+
124
+ .k-treelist .k-grid-content tbody {
125
+ background-color: #fff;
126
+ }
127
+
128
+ .k-grid-header-locked {
129
+ border-radius: 2px 0 0 0;
130
+ }
131
+
132
+ .k-grid-header {
133
+ border-radius: 2px 2px 0 0;
134
+ }
135
+
136
+ .k-grid.k-widget {
137
+ border-radius: 2px 2px 0 0;
138
+ }
139
+
140
+ .k-gantt-treelist .k-grid-header tr {
141
+ height: 2.5em;
142
+ }
143
+
144
+ .k-block,
145
+ .k-header,
146
+ .k-grid-header,
147
+ .k-toolbar,
148
+ .k-grouping-header,
149
+ .k-pager-wrap,
150
+ .k-button,
151
+ .k-draghandle,
152
+ .k-treemap-tile,
153
+ html .km-pane-wrapper .k-header {
154
+ background-color: #fff;
155
+ }
156
+
157
+ /*TABLE DARK HEADER*/
158
+ .k-gantt-treelist .k-grid-header th.k-header,
159
+ .k-grid .k-grid-header th.k-header {
160
+ 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
+ background-image: linear-gradient(#423f42, #58575a 50%, #434043) !important;
186
+ background-repeat: no-repeat !important;
187
+ color: #fff !important;
188
+ font-weight: 700;
189
+ vertical-align: middle;
190
+ border-color: #2a282a;
191
+ text-rendering: geometricPrecision;
192
+ }
193
+
194
+ .k-grid .k-grid-header th.k-header {
195
+ height: auto;
196
+ }
197
+
198
+ .k-grid tbody tr:first-child td {
199
+ border-top: 0;
200
+ }
201
+
202
+ /*end*/
203
+
204
+ /*shadow*/
205
+ .k-grid-header-locked {
206
+ border-color: #2a282a;
207
+ }
208
+
209
+ .side-shadow_right {
210
+ position: relative;
211
+ height: 100%;
212
+ }
213
+
214
+ .side-shadow_right:before {
215
+ content: "";
216
+ position: absolute;
217
+ z-index: 12;
218
+ pointer-events: none;
219
+ background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
220
+ background: -webkit-linear-gradient(
221
+ left top,
222
+ rgba(0, 0, 0, 0.15),
223
+ rgba(0, 0, 0, 0)
224
+ );
225
+ background: linear-gradient(
226
+ to right,
227
+ rgba(0, 0, 0, 0.15) 0%,
228
+ rgba(0, 0, 0, 0) 100%
229
+ );
230
+ left: 0;
231
+ top: 0;
232
+ height: 100%;
233
+ width: 5px;
234
+ }
235
+ /*end*/
236
+ .task-managment ul li,
237
+ .k-tabstrip-items .k-state-default .k-link,
238
+ .k-panelbar > li.k-state-default > .k-link {
239
+ font-weight: 700;
240
+ }
241
+
242
+ .k-gantt .k-treelist .k-grid-content tr:hover {
243
+ background-color: #e5daf8;
244
+ cursor: pointer;
245
+ }
246
+
247
+ .k-link:link {
248
+ color: #fff !important;
249
+ }
250
+
251
+ .k-link:focus {
252
+ text-decoration: none;
253
+ }
254
+
255
+ .k-numeric-wrap .k-link.k-state-selected {
256
+ background-color: #e5daf8;
257
+ }
258
+
259
+ .k-task-single {
260
+ border: 0 none;
261
+ background-color: #e2e2e2;
262
+ min-height: 20px;
263
+ }
264
+
265
+ .k-event,
266
+ .k-task-complete {
267
+ background: #ceaedd;
268
+ color: #2e2e2e;
269
+ }
270
+
271
+ .k-more-events,
272
+ .k-event,
273
+ .k-task-single,
274
+ .k-event .k-link {
275
+ border-radius: 6px;
276
+ }
277
+
278
+ .k-task-complete {
279
+ border-radius: 6px 0 0 6px;
280
+ }
281
+
282
+ .k-task-template {
283
+ padding: 0.3em 1.4em 0.2em 0.6em;
284
+ font-size: 9px;
285
+ }
286
+
287
+ .k-line {
288
+ background-color: #89919b;
289
+ }
290
+
291
+ .k-task-milestone {
292
+ background: #8d5ea4;
293
+ border: 0 none;
294
+ width: 13px;
295
+ height: 13px;
296
+ margin-top: 5px;
297
+ }
298
+
299
+ .k-treelist .k-state-selected,
300
+ .k-treelist .k-state-selected td,
301
+ .k-treelist .k-alt.k-state-selected,
302
+ .k-treelist .k-alt.k-state-selected > td {
303
+ background-color: #e5daf8 !important;
304
+ color: #333333;
305
+ }
306
+ /*Template Gant View Edit*/
307
+ #workflow-cnt .header {
308
+ background-color: #fff;
309
+ }
310
+
311
+ #workflow-edit-tabs {
312
+ border: 0;
313
+ background: transparent;
314
+ }
315
+
316
+ /*Dropdawn*/
317
+ .k-list-container {
318
+ background-color: #fff;
319
+ }
320
+
321
+ .k-state-focused,
322
+ .k-list > .k-state-focused {
323
+ box-shadow: none;
324
+ }
325
+
326
+ .k-popup.k-list-container {
327
+ padding: 2px 0;
328
+ }
329
+
330
+ .k-list-container .k-list ul {
331
+ border-radius: 0;
332
+ }
333
+
334
+ .k-list .k-state-focused {
335
+ border-radius: 0;
336
+ }
337
+
338
+ .k-popup .k-list .k-state-focused {
339
+ border-width: 0;
340
+ }
341
+
342
+ .k-list .k-item.k-state-hover {
343
+ border-color: transparent;
344
+ }
345
+
346
+ .k-popup .k-list .k-state-selected {
347
+ border-width: 0;
348
+ }
349
+
350
+ .k-state-selected,
351
+ .k-list > .k-state-selected {
352
+ background-color: #dce4f0 !important;
353
+ color: #333333 !important;
354
+ border: 0 none;
355
+ border-radius: 0;
356
+ }
357
+ /*dropdawn in the table*/
358
+
359
+ .k-popup .k-list .k-item {
360
+ background-color: #f5f1fb;
361
+ }
362
+
363
+ .k-list > .k-state-focused.k-state-selected,
364
+ .k-state-focused.k-state-selected {
365
+ background-color: #e5daf8;
366
+ }
367
+
368
+ .k-list-container.k-state-border-up {
369
+ border-radius: 0;
370
+ }
371
+
372
+ /*end*/
373
+
374
+ /*Grid*/
375
+ .k-grid.k-widget {
376
+ border: 0;
377
+ }
378
+
379
+ .k-grid-content-locked .sprite-dragable {
380
+ float: left;
381
+ }
382
+
383
+ .k-grid .sprite-dragable {
384
+ height: 22px;
385
+ }
386
+
387
+ .k-widget.k-splitter {
388
+ overflow: hidden;
389
+ }
390
+
391
+ .k-splitbar {
392
+ background-color: #ebebec;
393
+ }
394
+
395
+ @media screen and (max-width: 1260px) {
396
+ .taskSelectedCnt .header h1 {
397
+ float: none;
398
+ }
399
+ }
400
+
401
+ @media screen and (max-width: 1090px) {
402
+ .taskSelectedCnt .header h1 {
403
+ white-space: nowrap;
404
+ text-overflow: ellipsis;
405
+ overflow: hidden;
406
+ }
407
+ }
408
+
409
+ .table-wrapper > .k-widget.k-grid {
410
+ border: 0;
411
+ }
412
+
413
+ .k-grid tr[role="row"] > td:first-child {
414
+ border-left: 1px solid #bdbec1 !important;
415
+ }
416
+
417
+ .table-wrapper .k-grid-header {
418
+ border-radius: 2px 2px 0 0;
419
+ }
420
+
421
+ .table-wrapper .k-grid {
422
+ border-radius: 2px 0 0 0;
423
+ }
424
+
425
+ /*KENDO OVERRIDE*/
426
+ .k-dropdown-wrap {
427
+ background-image: none;
428
+ }
429
+
430
+ .k-popup.k-list-container {
431
+ padding: 0;
432
+ }
433
+
434
+ .k-autocomplete.k-state-default,
435
+ .k-picker-wrap.k-state-default,
436
+ .k-numeric-wrap.k-state-default,
437
+ .k-dropdown-wrap.k-state-default {
438
+ background-image: none;
439
+ background-color: #fff;
440
+ }
441
+
442
+ .k-button:active,
443
+ .k-button:active:hover,
444
+ .k-button.k-state-active:hover {
445
+ border-color: #e5daf8;
446
+ }
447
+
448
+ .k-item.k-state-hover:hover {
449
+ box-shadow: none;
450
+ color: #333;
451
+ border-radius: 0;
452
+ background-color: #e5daf8;
453
+ }
454
+
455
+ .k-list-optionlabel.k-state-hover {
456
+ border-radius: 0;
457
+ box-shadow: none;
458
+ color: #333;
459
+ border-radius: 0;
460
+ background-color: white;
461
+ }
462
+
463
+ .k-popup {
464
+ box-shadow: none;
465
+ }
466
+
467
+ .k-tabstrip-items .k-state-active,
468
+ .k-ie7 .k-tabstrip-items .k-state-active .k-loading {
469
+ border-color: #c5c5c5;
470
+ }
471
+
472
+ .k-tabstrip:focus {
473
+ box-shadow: none;
474
+ }
475
+
476
+ .k-tabstrip > .k-content {
477
+ margin-left: 15px;
478
+ margin-right: 15px;
479
+ padding-top: 15px;
480
+ padding-bottom: 15px;
481
+ }
482
+
483
+ .k-state-active,
484
+ .k-state-active:hover,
485
+ .k-active-filter,
486
+ .k-tabstrip .k-state-active {
487
+ border-color: #c5c5c5;
488
+ }
489
+
490
+ /*end*/
491
+
492
+ .k-state-selected,
493
+ .k-state-selected:link,
494
+ .k-state-selected:visited,
495
+ .k-list > .k-state-selected,
496
+ .k-list > .k-state-highlight,
497
+ .k-panel > .k-state-selected,
498
+ .k-ghost-splitbar-vertical,
499
+ .k-ghost-splitbar-horizontal,
500
+ .k-draghandle.k-state-selected:hover,
501
+ .k-scheduler .k-scheduler-toolbar .k-state-selected,
502
+ .k-scheduler .k-today.k-state-selected,
503
+ .k-marquee-color {
504
+ background-color: #e5daf8;
505
+ border-color: #e5daf8;
506
+ }
507
+
508
+ .k-grid tbody .k-button .k-i-cancel,
509
+ .k-grid tbody .k-button .k-cancel,
510
+ .k-grid tbody .k-button:hover .k-i-cancel,
511
+ .k-grid tbody .k-button:hover .k-cancel {
512
+ background-position: -30px -49px;
513
+ }
514
+ .k-grid tbody .k-button.k-grid-Delete:hover {
515
+ opacity: 1;
516
+ }
517
+ .k-grid tbody .k-button.k-grid-edit {
518
+ background-position: -118px -27px;
519
+ min-width: 19px;
520
+ width: 17px;
521
+ height: 16px;
522
+ min-height: 18px;
523
+ display: block;
524
+ margin: 0 auto;
525
+ }
526
+
527
+ .k-grid tbody .k-button.k-grid-remove {
528
+ background-position: -122px -45px;
529
+ }
530
+ /*end*/
531
+
532
+ /*Btn add task green*/
533
+ .btn-add-task {
534
+ width: 14px;
535
+ height: 14px;
536
+ border: 0 none;
537
+ line-height: 14px;
538
+ color: transparent;
539
+ }
540
+
541
+ .k-grid tr.no-last-child td {
542
+ border-bottom: 0 !important;
543
+ }
544
+
545
+ .table-add-btn {
546
+ padding-right: 17px;
547
+ border-width: 0;
548
+ background-color: #eeeeee;
549
+ border-radius: 0 0 3px 3px;
550
+ border: 1px solid #bdbec1;
551
+ border-top-width: 0;
552
+ }
553
+
554
+ .k-button:active,
555
+ .k-button:active:hover,
556
+ .k-button.k-state-active:hover {
557
+ opacity: 0.7;
558
+ background-color: #fff;
559
+ }
560
+
561
+ .k-button:hover {
562
+ opacity: 0.7;
563
+ background: none;
564
+ }
565
+
566
+ .k-button:focus:active:not(.k-state-disabled):not([disabled]) {
567
+ -webkit-box-shadow: none !important;
568
+ box-shadow: none !important;
569
+ }
570
+
571
+ .k-button:focus:not(.k-state-disabled):not([disabled]) {
572
+ box-shadow: none !important;
573
+ }
574
+
575
+ .without-border {
576
+ border: 0 !important;
577
+ }
578
+
579
+ /*Arrows*/
580
+
581
+ .k-pager-wrap .k-link:link {
582
+ color: #5f5f5f !important;
583
+ }
584
+
585
+ .k-pager-wrap .k-link:hover {
586
+ border-color: transparent;
587
+ color: #9766af;
588
+ border-radius: 3px;
589
+ }
590
+
591
+ /*table header arrows*/
592
+
593
+ .k-grid-header
594
+ th.k-header[data-role="columnsorter"]
595
+ > .k-link:hover
596
+ span.k-i-arrow-s {
597
+ background-position: 0 -365px;
598
+ }
599
+
600
+ .k-grid-header th > .k-link:hover span.k-i-arrow-n {
601
+ background-position: 0 -334px;
602
+ }
603
+ /*end*/
604
+
605
+ #TaskStatus-list {
606
+ min-width: 80px;
607
+ }
608
+
609
+ #UserId_listbox .k-item {
610
+ word-break: break-word;
611
+ word-wrap: break-word;
612
+ }
613
+
614
+ /*Navigation*/
615
+
616
+ .k-link.k-pager-nav {
617
+ border-radius: 3px;
618
+ }
619
+
620
+ @media only screen and (max-width: 1024px) {
621
+ .k-webkit .k-pager-numbers.k-state-expanded .k-current-page .k-link {
622
+ border-radius: 0 0 3px 3px;
623
+ }
624
+
625
+ .k-webkit .k-pager-numbers .k-current-page .k-link {
626
+ border-radius: 3px;
627
+ }
628
+
629
+ .k-webkit .k-pager-numbers + .k-link,
630
+ .k-ff .k-pager-numbers + .k-link {
631
+ margin-left: 72px;
632
+ }
633
+
634
+ .k-ie11 .k-pager-numbers + .k-link {
635
+ margin-left: 74px;
636
+ }
637
+ }
638
+
639
+ #workflow-cnt .k-icon.k-filter {
640
+ background-position: -32px -340px;
641
+ }
642
+
643
+ #workflow-cnt .k-state-hover:hover .k-icon.k-filter {
644
+ background-position: -32px -340px;
645
+ }
646
+
647
+ .k-numeric-wrap.k-state-default > .k-select,
648
+ .k-picker-wrap.k-state-default > .k-select,
649
+ .k-numeric-wrap.k-state-disabled > .k-select {
650
+ border-left-width: 0;
651
+ }
652
+
653
+ /*Calendar*/
654
+
655
+ .k-widget.k-invalid-msg.field-validation-error.simple-validation {
656
+ margin: 0;
657
+ padding: 0;
658
+ width: 20px;
659
+ float: right;
660
+ border: none;
661
+ position: static;
662
+ background: transparent;
663
+ border-width: 0;
664
+ box-shadow: none;
665
+ }
666
+
667
+ .k-dirty {
668
+ display: none;
669
+ }
670
+
671
+ .k-with-icon .k-header-column-menu.k-state-active {
672
+ background: #c5c5c5;
673
+ }
674
+
675
+ .k-first.k-state-selected.k-state-focused {
676
+ background-color: #e5daf8;
677
+ }
678
+
679
+ .header-page-bg {
680
+ border: 1px solid #c0c1c2;
681
+ border-bottom: 0;
682
+ background-color: #f9f9f9;
683
+ background-image: -webkit-gradient(
684
+ linear,
685
+ 0 0,
686
+ 0 100%,
687
+ from(#fefefe),
688
+ color-stop(15%, #fefefe),
689
+ to(#e3e3e5)
690
+ );
691
+ background-image: -webkit-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
692
+ background-image: -moz-linear-gradient(top, #fefefe, #fefefe 15%, #e3e3e5);
693
+ background-image: -o-linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
694
+ background-image: linear-gradient(#fefefe, #fefefe 15%, #e3e3e5);
695
+ background-repeat: no-repeat;
696
+ -webkit-border-radius: 3px;
697
+ -moz-border-radius: 3px;
698
+ border-radius: 3px;
699
+ -webkit-border-bottom-right-radius: 0;
700
+ -moz-border-radius-bottomright: 0;
701
+ border-bottom-right-radius: 0;
702
+ -webkit-border-bottom-left-radius: 0;
703
+ -moz-border-radius-bottomleft: 0;
704
+ border-bottom-left-radius: 0;
705
+ height: 30px;
706
+ }
707
+
708
+ .table-wrapper .k-header > .k-link {
709
+ color: #fff;
710
+ }
711
+
712
+ .k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg.field-validation-error {
713
+ margin: 0.5em;
714
+ padding: 2px;
715
+ }
716
+
717
+ .k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg.field-validation-error {
718
+ margin: 0.5em;
719
+ padding: 2px;
720
+ }
721
+
722
+ .k-pager-sizes .k-icon.k-i-arrow-s {
723
+ background-image: url("/assets/styles/Material/sprites.png");
724
+ background-position: 0 -164px;
725
+ }
726
+
727
+ form.k-filter-menu button.k-button.k-primary {
728
+ padding: 2px 7px 2px;
729
+ }
730
+
731
+ form.k-filter-menu
732
+ ul.k-reset.k-multicheck-wrap
733
+ .k-item
734
+ .k-label
735
+ input[type="checkbox"] {
736
+ margin-right: 5px;
737
+ }
738
+
739
+ /*multiselect*/
740
+
741
+ .k-multiselect {
742
+ width: 200px;
743
+ border-width: 0;
744
+ }
745
+
746
+ .k-filter-menu .k-combobox,
747
+ .k-filter-menu .k-datepicker,
748
+ .k-filter-menu .k-timepicker,
749
+ .k-filter-menu .k-datetimepicker,
750
+ .k-filter-menu .k-numerictextbox,
751
+ .k-filter-menu .k-dropdown,
752
+ .k-filter-menu .k-textbox {
753
+ width: 15em;
754
+ }
755
+
756
+ /*modal-window-title*/
757
+ .k-window-title {
758
+ font-size: 17.5px;
759
+ font-weight: bold;
760
+ }
761
+
762
+ .k-grid .k-grid-aria-root {
763
+ .k-table-td {
764
+ padding: 3px 12px;
765
+ }
766
+
767
+ .k-table-th {
768
+ padding: 8px 12px;
769
+ }
770
+ }
771
+
772
+ .k-button-md {
773
+ padding-block: 4px;
774
+ padding-inline: 8px;
775
+ }