@progress/kendo-theme-default 5.1.2-dev.3 → 5.1.2-dev.7
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/dist/all.css +511 -223
- package/dist/all.scss +282 -150
- package/package.json +2 -2
- package/scss/_variables.scss +5 -4
- package/scss/badge/_variables.scss +3 -3
- package/scss/bottom-navigation/_variables.scss +1 -1
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_layout.scss +5 -0
- package/scss/calendar/_layout.scss +3 -0
- package/scss/calendar/_variables.scss +1 -1
- package/scss/card/_variables.scss +1 -1
- package/scss/chip/_layout.scss +2 -0
- package/scss/color-preview/_variables.scss +1 -1
- package/scss/coloreditor/_variables.scss +1 -1
- package/scss/colorgradient/_variables.scss +2 -2
- package/scss/common/_base.scss +2 -2
- package/scss/dataviz/_layout.scss +11 -3
- package/scss/editor/_layout.scss +2 -2
- package/scss/fab/_variables.scss +1 -1
- package/scss/filemanager/_layout.scss +3 -0
- package/scss/floating-label/_layout.scss +1 -0
- package/scss/forms/_layout.scss +0 -5
- package/scss/gantt/_layout.scss +39 -7
- package/scss/gantt/_theme.scss +16 -1
- package/scss/gantt/_variables.scss +5 -0
- package/scss/grid/_layout.scss +1 -1
- package/scss/icons/_layout.scss +7 -0
- package/scss/icons/font/WebComponentsIcons.scss +1 -1
- package/scss/icons/font/WebComponentsIcons.ttf +0 -0
- package/scss/input/_layout.scss +6 -2
- package/scss/list/_layout.scss +8 -0
- package/scss/listgroup/_variables.scss +1 -1
- package/scss/loader/_variables.scss +1 -1
- package/scss/notification/_theme.scss +7 -5
- package/scss/notification/_variables.scss +15 -13
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pivotgrid/_layout.scss +1 -0
- package/scss/pivotgrid/_variables.scss +2 -1
- package/scss/popup/_layout.scss +1 -1
- package/scss/popup/_theme.scss +1 -1
- package/scss/progressbar/_layout.scss +1 -1
- package/scss/scheduler/_layout.scss +1 -1
- package/scss/scheduler/_variables.scss +2 -2
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_theme.scss +1 -1
- package/scss/spreadsheet/_layout.scss +1 -1
- package/scss/spreadsheet/_variables.scss +3 -3
- package/scss/stepper/_layout.scss +1 -1
- package/scss/tabstrip/_variables.scss +1 -1
- package/scss/taskboard/_variables.scss +2 -2
- package/scss/textarea/_layout.scss +1 -3
- package/scss/tilelayout/_variables.scss +1 -1
- package/scss/timeline/_layout.scss +3 -3
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/treeview/_variables.scss +1 -1
- package/scss/utils/_border.scss +4 -4
- package/scss/utils/_flex.scss +98 -59
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "5.1.2-dev.
|
|
4
|
+
"version": "5.1.2-dev.7",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"prepublishOnly": "echo 'no prebublish for default theme'",
|
|
48
48
|
"postpublish": "echo 'no postpublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "cedfa864b61e9c7f5e63839f6428eaee5af5c536"
|
|
51
51
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -80,9 +80,10 @@ $padding-x-lg: $padding-x * 1.5 !default;
|
|
|
80
80
|
$padding-y-lg: $padding-y * 1.5 !default;
|
|
81
81
|
|
|
82
82
|
/// Border radius for all components.
|
|
83
|
-
$border-radius:
|
|
84
|
-
$border-radius-sm: $border-radius
|
|
85
|
-
$border-radius-
|
|
83
|
+
$kendo-border-radius: map-get( $spacing, 1 ) !default;
|
|
84
|
+
$kendo-border-radius-sm: $kendo-border-radius - map-get( $spacing, thin ) !default;
|
|
85
|
+
$kendo-border-radius-md: $kendo-border-radius !default;
|
|
86
|
+
$kendo-border-radius-lg: $kendo-border-radius + map-get( $spacing, thin ) !default;
|
|
86
87
|
|
|
87
88
|
$panel-padding-x: $padding-x !default;
|
|
88
89
|
$panel-padding-y: $padding-y !default;
|
|
@@ -364,7 +365,7 @@ $invalid-shadow: null !default;
|
|
|
364
365
|
$drag-clue-padding-x: $padding-x !default;
|
|
365
366
|
$drag-clue-padding-y: $padding-y !default;
|
|
366
367
|
$drag-clue-border-width: 1px !default;
|
|
367
|
-
$drag-clue-border-radius: $border-radius !default;
|
|
368
|
+
$drag-clue-border-radius: $kendo-border-radius-md !default;
|
|
368
369
|
$drag-clue-font-size: $font-size !default;
|
|
369
370
|
$drag-clue-font-family: $font-family !default;
|
|
370
371
|
$drag-clue-line-height: $line-height !default;
|
|
@@ -2,21 +2,21 @@
|
|
|
2
2
|
$badge-padding-x: $padding-x-sm !default;
|
|
3
3
|
$badge-padding-y: $badge-padding-x !default;
|
|
4
4
|
$badge-border-width: 1px !default;
|
|
5
|
-
$badge-border-radius: $border-radius !default;
|
|
5
|
+
$badge-border-radius: $kendo-border-radius-md !default;
|
|
6
6
|
$badge-font-size: $font-size-xs !default;
|
|
7
7
|
$badge-line-height: 1 !default;
|
|
8
8
|
|
|
9
9
|
$badge-padding-x-sm: ( $badge-padding-x / 2 ) !default;
|
|
10
10
|
$badge-padding-y-sm: ( $badge-padding-y / 2 ) !default;
|
|
11
11
|
$badge-border-width-sm: $badge-border-width !default;
|
|
12
|
-
$badge-border-radius-sm: $border-radius-sm !default;
|
|
12
|
+
$badge-border-radius-sm: $kendo-border-radius-sm !default;
|
|
13
13
|
$badge-font-size-sm: $font-size-xs !default;
|
|
14
14
|
$badge-line-height-sm: 1 !default;
|
|
15
15
|
|
|
16
16
|
$badge-padding-x-lg: ( $badge-padding-x * 1.5 ) !default;
|
|
17
17
|
$badge-padding-y-lg: ( $badge-padding-y * 1.5 ) !default;
|
|
18
18
|
$badge-border-width-lg: $badge-border-width !default;
|
|
19
|
-
$badge-border-radius-lg: $border-radius-lg !default;
|
|
19
|
+
$badge-border-radius-lg: $kendo-border-radius-lg !default;
|
|
20
20
|
$badge-font-size-lg: $font-size-sm !default;
|
|
21
21
|
$badge-line-height-lg: 1 !default;
|
|
22
22
|
|
|
@@ -14,7 +14,7 @@ $bottom-nav-item-padding-y: 0 !default;
|
|
|
14
14
|
$bottom-nav-item-min-width: 72px !default;
|
|
15
15
|
$bottom-nav-item-max-width: null !default;
|
|
16
16
|
$bottom-nav-item-min-height: calc( #{$icon-size * 2.5} + #{$padding-x * 2} - #{$bottom-nav-padding-x * 2} ) !default;
|
|
17
|
-
$bottom-nav-item-border-radius: $border-radius !default;
|
|
17
|
+
$bottom-nav-item-border-radius: $kendo-border-radius-md !default;
|
|
18
18
|
$bottom-nav-item-gap: 0 map-get( $spacing, 1 ) !default;
|
|
19
19
|
|
|
20
20
|
$bottom-nav-item-icon-margin-y: map-get( $spacing, 2 ) !default;
|
|
@@ -19,7 +19,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
|
|
|
19
19
|
|
|
20
20
|
$breadcrumb-link-padding-x: $padding-x !default;
|
|
21
21
|
$breadcrumb-link-padding-y: $padding-y-lg !default;
|
|
22
|
-
$breadcrumb-link-border-radius: $border-radius !default;
|
|
22
|
+
$breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
23
23
|
|
|
24
24
|
$breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
|
|
25
25
|
$breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
|
package/scss/button/_layout.scss
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
box-sizing: border-box;
|
|
6
6
|
border-width: $kendo-button-border-width;
|
|
7
7
|
border-style: solid;
|
|
8
|
+
border-radius: $kendo-button-border-radius;
|
|
8
9
|
color: inherit;
|
|
9
10
|
background: none;
|
|
10
11
|
font-family: $kendo-button-font-family;
|
|
@@ -52,6 +53,10 @@
|
|
|
52
53
|
.k-icon-button {
|
|
53
54
|
aspect-ratio: 1;
|
|
54
55
|
gap: 0;
|
|
56
|
+
|
|
57
|
+
.k-icon {
|
|
58
|
+
display: inline-flex;
|
|
59
|
+
}
|
|
55
60
|
}
|
|
56
61
|
|
|
57
62
|
|
|
@@ -32,7 +32,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
|
|
|
32
32
|
$calendar-cell-padding-x: .5em !default;
|
|
33
33
|
$calendar-cell-padding-y: $calendar-cell-padding-x !default;
|
|
34
34
|
$calendar-cell-line-height: $calendar-line-height !default;
|
|
35
|
-
$calendar-cell-border-radius: $border-radius !default;
|
|
35
|
+
$calendar-cell-border-radius: $kendo-border-radius-md !default;
|
|
36
36
|
|
|
37
37
|
$calendar-header-cell-padding-x: null !default;
|
|
38
38
|
$calendar-header-cell-padding-y: null !default;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
$card-padding-x: map-get( $spacing, lg ) !default;
|
|
3
3
|
$card-padding-y: map-get( $spacing, md ) !default;
|
|
4
4
|
$card-border-width: 1px !default;
|
|
5
|
-
$card-border-radius: $border-radius-lg !default;
|
|
5
|
+
$card-border-radius: $kendo-border-radius-lg !default;
|
|
6
6
|
$card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
|
|
7
7
|
$card-font-family: $font-family !default;
|
|
8
8
|
$card-font-size: $font-size !default;
|
package/scss/chip/_layout.scss
CHANGED
|
@@ -3,7 +3,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
|
|
|
3
3
|
|
|
4
4
|
$coloreditor-min-width: 272px !default;
|
|
5
5
|
$coloreditor-border-width: 1px !default;
|
|
6
|
-
$coloreditor-border-radius: $border-radius !default;
|
|
6
|
+
$coloreditor-border-radius: $kendo-border-radius-md !default;
|
|
7
7
|
$coloreditor-font-family: $font-family !default;
|
|
8
8
|
$coloreditor-font-size: $font-size !default;
|
|
9
9
|
$coloreditor-line-height: $line-height !default;
|
|
@@ -3,7 +3,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
|
|
|
3
3
|
|
|
4
4
|
$colorgradient-width: 272px !default;
|
|
5
5
|
$colorgradient-border-width: 1px !default;
|
|
6
|
-
$colorgradient-border-radius: $border-radius !default;
|
|
6
|
+
$colorgradient-border-radius: $kendo-border-radius-md !default;
|
|
7
7
|
$colorgradient-padding-y: $colorgradient-spacer !default;
|
|
8
8
|
$colorgradient-padding-x: $colorgradient-padding-y !default;
|
|
9
9
|
$colorgradient-gap: $colorgradient-spacer !default;
|
|
@@ -17,7 +17,7 @@ $colorgradient-border: $component-border !default;
|
|
|
17
17
|
$colorgradient-focus-border: null !default;
|
|
18
18
|
$colorgradient-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
|
|
19
19
|
|
|
20
|
-
$colorgradient-canvas-border-radius: $border-radius !default;
|
|
20
|
+
$colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
21
21
|
$colorgradient-canvas-gap: $colorgradient-spacer !default;
|
|
22
22
|
$colorgradient-canvas-rectangle-height: 180px !default;
|
|
23
23
|
|
package/scss/common/_base.scss
CHANGED
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
// Panels
|
|
77
77
|
.k-block,
|
|
78
78
|
.k-panel {
|
|
79
|
-
@include border-radius( $border-radius );
|
|
79
|
+
@include border-radius( $kendo-border-radius-md );
|
|
80
80
|
@include fill(
|
|
81
81
|
$panel-text,
|
|
82
82
|
$panel-bg,
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
box-sizing: border-box;
|
|
89
89
|
|
|
90
90
|
> .k-header {
|
|
91
|
-
@include border-top-radius( $border-radius );
|
|
91
|
+
@include border-top-radius( $kendo-border-radius-md );
|
|
92
92
|
@include fill(
|
|
93
93
|
$header-text,
|
|
94
94
|
$header-bg,
|
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
.k-barcode {
|
|
4
4
|
display: inline-block;
|
|
5
|
+
|
|
6
|
+
> div {
|
|
7
|
+
height: 150px;
|
|
8
|
+
}
|
|
5
9
|
}
|
|
6
10
|
|
|
7
11
|
}
|
|
@@ -78,7 +82,7 @@
|
|
|
78
82
|
}
|
|
79
83
|
|
|
80
84
|
.k-chart-tooltip {
|
|
81
|
-
@include border-radius( $border-radius );
|
|
85
|
+
@include border-radius( $kendo-border-radius-md );
|
|
82
86
|
font-size: $chart-tooltip-font-size;
|
|
83
87
|
line-height: $line-height;
|
|
84
88
|
padding: $tooltip-padding-y $tooltip-padding-x;
|
|
@@ -186,7 +190,7 @@
|
|
|
186
190
|
}
|
|
187
191
|
|
|
188
192
|
.k-navigator-hint .k-scroll {
|
|
189
|
-
@include border-radius( $border-radius );
|
|
193
|
+
@include border-radius( $kendo-border-radius-md );
|
|
190
194
|
position: absolute;
|
|
191
195
|
height: 4px;
|
|
192
196
|
}
|
|
@@ -391,6 +395,10 @@
|
|
|
391
395
|
|
|
392
396
|
.k-qrcode {
|
|
393
397
|
display: inline-block;
|
|
398
|
+
|
|
399
|
+
> div {
|
|
400
|
+
height: 150px;
|
|
401
|
+
}
|
|
394
402
|
}
|
|
395
403
|
|
|
396
404
|
}
|
|
@@ -409,7 +417,7 @@
|
|
|
409
417
|
base: $base-bg,
|
|
410
418
|
background: $chart-bg,
|
|
411
419
|
|
|
412
|
-
border-radius: $border-radius,
|
|
420
|
+
border-radius: $kendo-border-radius-md,
|
|
413
421
|
|
|
414
422
|
normal-background: $base-bg,
|
|
415
423
|
normal-text-color: $base-text,
|
package/scss/editor/_layout.scss
CHANGED
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
// Inline editor
|
|
53
53
|
.k-editor-inline {
|
|
54
|
-
@include border-radius( $border-radius );
|
|
54
|
+
@include border-radius( $kendo-border-radius-md );
|
|
55
55
|
padding: $padding-y-sm $padding-x-sm;
|
|
56
56
|
border: 1px solid transparent;
|
|
57
57
|
word-wrap: break-word;
|
|
@@ -472,7 +472,7 @@
|
|
|
472
472
|
white-space: nowrap;
|
|
473
473
|
overflow: hidden;
|
|
474
474
|
cursor: pointer;
|
|
475
|
-
@include border-radius( $border-radius );
|
|
475
|
+
@include border-radius( $kendo-border-radius-md );
|
|
476
476
|
|
|
477
477
|
.k-i-file,
|
|
478
478
|
.k-i-folder {
|
package/scss/fab/_variables.scss
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
$kendo-fab-border-width: 1px !default;
|
|
6
6
|
/// Border radius of the FAB.
|
|
7
7
|
/// @group floating-action-button
|
|
8
|
-
$kendo-fab-border-radius: $border-radius !default;
|
|
8
|
+
$kendo-fab-border-radius: $kendo-border-radius-md !default;
|
|
9
9
|
|
|
10
10
|
/// Font family of the FAB.
|
|
11
11
|
/// @group floating-action-button
|
package/scss/forms/_layout.scss
CHANGED
package/scss/gantt/_layout.scss
CHANGED
|
@@ -506,7 +506,7 @@
|
|
|
506
506
|
// Single task
|
|
507
507
|
.k-single-wrap {}
|
|
508
508
|
.k-task-single {
|
|
509
|
-
@include border-radius( $border-radius );
|
|
509
|
+
@include border-radius( $kendo-border-radius-md );
|
|
510
510
|
border-width: $gantt-task-border-width;
|
|
511
511
|
border-style: solid;
|
|
512
512
|
box-sizing: border-box;
|
|
@@ -539,7 +539,7 @@
|
|
|
539
539
|
}
|
|
540
540
|
}
|
|
541
541
|
.k-task-complete {
|
|
542
|
-
@include border-radius( $border-radius );
|
|
542
|
+
@include border-radius( $kendo-border-radius-md );
|
|
543
543
|
width: 20%;
|
|
544
544
|
position: absolute;
|
|
545
545
|
z-index: 1;
|
|
@@ -609,7 +609,6 @@
|
|
|
609
609
|
}
|
|
610
610
|
|
|
611
611
|
// Planned position
|
|
612
|
-
|
|
613
612
|
.k-gantt-planned {
|
|
614
613
|
.k-gantt-dependencies,
|
|
615
614
|
.k-task-dot,
|
|
@@ -640,7 +639,6 @@
|
|
|
640
639
|
}
|
|
641
640
|
|
|
642
641
|
// Planned element
|
|
643
|
-
|
|
644
642
|
.k-task-planned {
|
|
645
643
|
margin: 0 0 $gantt-planned-margin-y;
|
|
646
644
|
line-height: $gantt-planned-line-height;
|
|
@@ -673,7 +671,6 @@
|
|
|
673
671
|
}
|
|
674
672
|
|
|
675
673
|
// Planned Tooltip
|
|
676
|
-
|
|
677
674
|
.k-planned-tooltip {
|
|
678
675
|
.k-task-content {
|
|
679
676
|
display: block;
|
|
@@ -681,7 +678,6 @@
|
|
|
681
678
|
}
|
|
682
679
|
|
|
683
680
|
// Delay offset
|
|
684
|
-
|
|
685
681
|
.k-task-offset-wrap .k-task-content .k-resize-e {
|
|
686
682
|
display: none;
|
|
687
683
|
}
|
|
@@ -712,6 +708,36 @@
|
|
|
712
708
|
.k-task-offset:hover .k-resize-handle {
|
|
713
709
|
visibility: visible;
|
|
714
710
|
}
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
// Dependency Validation Tooltip
|
|
714
|
+
.k-gantt-tooltip-validation {
|
|
715
|
+
max-width: $gantt-validation-tooltip-width;
|
|
716
|
+
display: block;
|
|
717
|
+
|
|
718
|
+
&::before {
|
|
719
|
+
content: '';
|
|
720
|
+
width: 4px;
|
|
721
|
+
height: 100%;
|
|
722
|
+
position: absolute;
|
|
723
|
+
top: 0;
|
|
724
|
+
left: 0;
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
.k-gantt-tooltip-validation-row {
|
|
728
|
+
display: flex;
|
|
729
|
+
flex-direction: row;
|
|
730
|
+
justify-content: space-between;
|
|
731
|
+
}
|
|
732
|
+
.k-gantt-tooltip-validation-label {
|
|
733
|
+
display: inline-flex;
|
|
734
|
+
white-space: nowrap;
|
|
735
|
+
overflow: hidden;
|
|
736
|
+
text-overflow: ellipsis;
|
|
737
|
+
}
|
|
738
|
+
.k-gantt-tooltip-validation-value {
|
|
739
|
+
font-weight: $font-weight-bold;
|
|
740
|
+
}
|
|
715
741
|
}
|
|
716
742
|
|
|
717
743
|
@include exports("gantt/export") {
|
|
@@ -757,7 +783,8 @@
|
|
|
757
783
|
|
|
758
784
|
@include exports("gantt/rtl") {
|
|
759
785
|
|
|
760
|
-
.k-rtl
|
|
786
|
+
.k-rtl,
|
|
787
|
+
[dir="rtl"] {
|
|
761
788
|
|
|
762
789
|
.k-gantt-rows,
|
|
763
790
|
.k-gantt-columns {
|
|
@@ -836,5 +863,10 @@
|
|
|
836
863
|
.k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
837
864
|
right: $gantt-rtl-milestone-dot-start-margin-x;
|
|
838
865
|
}
|
|
866
|
+
|
|
867
|
+
.k-gantt-tooltip-validation::before {
|
|
868
|
+
left: auto;
|
|
869
|
+
right: 0;
|
|
870
|
+
}
|
|
839
871
|
}
|
|
840
872
|
}
|
package/scss/gantt/_theme.scss
CHANGED
|
@@ -244,7 +244,6 @@
|
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
// Tooltips
|
|
247
|
-
|
|
248
247
|
.k-offset-tooltip-delayed {
|
|
249
248
|
@include fill(
|
|
250
249
|
$bg: $gantt-delayed-bg
|
|
@@ -256,4 +255,20 @@
|
|
|
256
255
|
$bg: $gantt-planned-bg
|
|
257
256
|
);
|
|
258
257
|
}
|
|
258
|
+
|
|
259
|
+
.k-gantt-tooltip-validation {
|
|
260
|
+
&::before {
|
|
261
|
+
background-color: $gantt-validation-tooltip-border;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
.k-gantt-tooltip-valid {
|
|
265
|
+
&::before {
|
|
266
|
+
background-color: $gantt-validation-tooltip-valid-border;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
.k-gantt-tooltip-invalid {
|
|
270
|
+
&::before {
|
|
271
|
+
background-color: $gantt-validation-tooltip-invalid-border;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
259
274
|
}
|
|
@@ -85,3 +85,8 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
|
|
|
85
85
|
|
|
86
86
|
$gantt-action-on-offset-text: #000000 !default;
|
|
87
87
|
$gantt-offset-resize-handler-top: 50% !default;
|
|
88
|
+
|
|
89
|
+
$gantt-validation-tooltip-width: 200px !default;
|
|
90
|
+
$gantt-validation-tooltip-border: #656565 !default;
|
|
91
|
+
$gantt-validation-tooltip-valid-border: $success !default;
|
|
92
|
+
$gantt-validation-tooltip-invalid-border: $error !default;
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
$grid-hierarchy-col-width: ($icon-size * 2) !default;
|
|
19
19
|
|
|
20
|
-
$grid-group-indicator-border-radius: $border-radius !default;
|
|
20
|
+
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
21
21
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
22
22
|
|
|
23
23
|
$grid-grouping-row-border-top: 1px !default;
|
package/scss/icons/_layout.scss
CHANGED
|
@@ -187,15 +187,19 @@
|
|
|
187
187
|
.k-i-arrows-no-change::before { content: "\e011"; }
|
|
188
188
|
.k-i-arrow-overflow-down::before { content: "\e012"; }
|
|
189
189
|
.k-i-chevron-up::before { content: "\e013"; }
|
|
190
|
+
.k-i-chevron-double-up::before { content: "\e94a"; }
|
|
190
191
|
.k-i-arrow-chevron-up::before { content: "\e013"; }
|
|
191
192
|
.k-i-arrowhead-n::before { content: "\e013"; }
|
|
192
193
|
.k-i-chevron-right::before { content: "\e014"; }
|
|
194
|
+
.k-i-chevron-double-right::before { content: "\e94b"; }
|
|
193
195
|
.k-i-arrow-chevron-right::before { content: "\e014"; }
|
|
194
196
|
.k-i-arrowhead-e::before { content: "\e014"; }
|
|
195
197
|
.k-i-chevron-down::before { content: "\e015"; }
|
|
198
|
+
.k-i-chevron-double-down::before { content: "\e94c"; }
|
|
196
199
|
.k-i-arrow-chevron-down::before { content: "\e015"; }
|
|
197
200
|
.k-i-arrowhead-s::before { content: "\e015"; }
|
|
198
201
|
.k-i-chevron-left::before { content: "\e016"; }
|
|
202
|
+
.k-i-chevron-double-left::before { content: "\e94d"; }
|
|
199
203
|
.k-i-arrow-chevron-left::before { content: "\e016"; }
|
|
200
204
|
.k-i-arrowhead-w::before { content: "\e016"; }
|
|
201
205
|
.k-i-arrow-up::before { content: "\e017"; }
|
|
@@ -1054,6 +1058,8 @@
|
|
|
1054
1058
|
.k-i-files-validation::before { content: "\e945"; }
|
|
1055
1059
|
.k-i-data-rest::before { content: "\e946"; }
|
|
1056
1060
|
.k-i-file-typescript::before { content: "\e947"; }
|
|
1061
|
+
.k-i-data-ods::before { content: "\e948"; }
|
|
1062
|
+
.k-i-file-report::before { content: "\e949"; }
|
|
1057
1063
|
.k-i-table-position-start::before { content: "\e6a2"; }
|
|
1058
1064
|
.k-i-table-position-left::before { content: "\e6a2"; }
|
|
1059
1065
|
.k-i-table-position-center::before { content: "\e6a3"; }
|
|
@@ -1073,6 +1079,7 @@
|
|
|
1073
1079
|
.k-i-list-latin-big::before { content: "\e6b1"; }
|
|
1074
1080
|
.k-i-list-latin-small::before { content: "\e6b2"; }
|
|
1075
1081
|
.k-i-list-unordered-square::before { content: "\e6b3"; }
|
|
1082
|
+
.k-i-list-unordered-outline::before { content: "\e6b4"; }
|
|
1076
1083
|
.k-i-graph::before { content: "\ea00"; }
|
|
1077
1084
|
.k-i-chart-column-clustered::before { content: "\ea01"; }
|
|
1078
1085
|
.k-i-chart-column-stacked::before { content: "\ea02"; }
|