@progress/kendo-theme-classic 5.8.2-dev.4 → 5.8.2-dev.6
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 +191 -30
- package/dist/all.scss +1437 -519
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/package.json +4 -3
- package/scss/_variables.scss +42 -42
- package/scss/action-buttons/_variables.scss +4 -4
- package/scss/action-sheet/_variables.scss +34 -15
- package/scss/appbar/_variables.scss +7 -7
- package/scss/avatar/_variables.scss +3 -3
- package/scss/badge/_variables.scss +8 -8
- package/scss/bottom-navigation/_variables.scss +6 -6
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_variables.scss +15 -15
- package/scss/calendar/_variables.scss +19 -19
- package/scss/captcha/_variables.scss +2 -2
- package/scss/card/_variables.scss +10 -10
- package/scss/chat/_variables.scss +3 -3
- package/scss/checkbox/_variables.scss +12 -12
- package/scss/chip/_variables.scss +22 -22
- package/scss/coloreditor/_variables.scss +4 -4
- package/scss/colorgradient/_variables.scss +9 -9
- package/scss/colorpalette/_variables.scss +1 -1
- package/scss/core/functions/_index.scss +3 -0
- package/scss/dataviz/_variables.scss +25 -25
- package/scss/drawer/_variables.scss +4 -4
- package/scss/dropdowntree/_variables.scss +2 -2
- package/scss/dropzone/_variables.scss +5 -5
- package/scss/editor/_variables.scss +1 -1
- package/scss/expansion-panel/_variables.scss +1 -1
- package/scss/fab/_variables.scss +9 -9
- package/scss/filemanager/_variables.scss +7 -7
- package/scss/filter/_variables.scss +2 -0
- package/scss/forms/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +12 -12
- package/scss/grid/_variables.scss +9 -9
- package/scss/imageeditor/_variables.scss +3 -3
- package/scss/input/_variables.scss +12 -12
- package/scss/list/_variables.scss +25 -25
- package/scss/listgroup/_variables.scss +2 -2
- package/scss/listview/_variables.scss +5 -5
- package/scss/loader/_variables.scss +9 -9
- package/scss/mediaplayer/_variables.scss +2 -2
- package/scss/menu/_variables.scss +9 -9
- package/scss/notification/_variables.scss +1 -1
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pager/_variables.scss +5 -5
- package/scss/panelbar/_variables.scss +3 -3
- package/scss/pdf-viewer/_variables.scss +3 -3
- package/scss/pivotgrid/_variables.scss +14 -14
- package/scss/popup/_variables.scss +3 -3
- package/scss/progressbar/_variables.scss +2 -2
- package/scss/radio/_variables.scss +11 -11
- package/scss/rating/_variables.scss +2 -2
- package/scss/scheduler/_variables.scss +9 -9
- package/scss/scrollview/_variables.scss +6 -6
- package/scss/signature/_variables.scss +5 -5
- package/scss/slider/_variables.scss +6 -6
- package/scss/splitter/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +1 -1
- package/scss/stepper/_variables.scss +3 -3
- package/scss/switch/_variables.scss +7 -7
- package/scss/table/_variables.scss +6 -6
- package/scss/tabstrip/_variables.scss +3 -3
- package/scss/taskboard/_variables.scss +12 -12
- package/scss/tilelayout/_variables.scss +1 -1
- package/scss/timeline/_variables.scss +4 -4
- package/scss/timeselector/_variables.scss +3 -3
- package/scss/toolbar/_variables.scss +4 -2
- package/scss/tooltip/_variables.scss +6 -6
- package/scss/treeview/_variables.scss +8 -8
- package/scss/typography/_variables.scss +1 -1
- package/scss/upload/_variables.scss +5 -5
- package/scss/window/_variables.scss +7 -7
- package/scss/wizard/_variables.scss +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Pivot grid
|
|
2
|
-
$pivotgrid-spacer: map-get( $spacing, 4 ) !default;
|
|
2
|
+
$pivotgrid-spacer: k-map-get( $spacing, 4 ) !default;
|
|
3
3
|
$pivotgrid-padding-x: null !default;
|
|
4
4
|
$pivotgrid-padding-y: null !default;
|
|
5
5
|
$pivotgrid-font-family: $font-family !default;
|
|
@@ -19,21 +19,21 @@ $pivotgrid-bg: $component-bg !default;
|
|
|
19
19
|
$pivotgrid-text: $component-text !default;
|
|
20
20
|
$pivotgrid-border: $component-border !default;
|
|
21
21
|
|
|
22
|
-
$pivotgrid-alt-border: try-shade($pivotgrid-border, 2) !default;
|
|
22
|
+
$pivotgrid-alt-border: k-try-shade( $pivotgrid-border, 2 ) !default;
|
|
23
23
|
|
|
24
24
|
$pivotgrid-headers-bg: $header-bg !default;
|
|
25
25
|
$pivotgrid-headers-text: $header-text !default;
|
|
26
26
|
$pivotgrid-headers-border: $header-border !default;
|
|
27
27
|
|
|
28
|
-
$pivotgrid-total-bg: try-shade( $pivotgrid-bg, 1 ) !default;
|
|
28
|
+
$pivotgrid-total-bg: k-try-shade( $pivotgrid-bg, 1 ) !default;
|
|
29
29
|
$pivotgrid-total-text: $header-text !default;
|
|
30
30
|
$pivotgrid-total-border: $header-border !default;
|
|
31
31
|
|
|
32
|
-
$pivotgrid-hover-bg: darken($pivotgrid-bg, 7%) !default;
|
|
32
|
+
$pivotgrid-hover-bg: k-color-darken( $pivotgrid-bg, 7% ) !default;
|
|
33
33
|
$pivotgrid-hover-text: null !default;
|
|
34
34
|
$pivotgrid-hover-border: null !default;
|
|
35
35
|
|
|
36
|
-
$pivotgrid-selected-bg: rgba($selected-bg, .25) !default;
|
|
36
|
+
$pivotgrid-selected-bg: rgba( $selected-bg, .25 ) !default;
|
|
37
37
|
$pivotgrid-selected-text: null !default;
|
|
38
38
|
$pivotgrid-selected-border: null !default;
|
|
39
39
|
|
|
@@ -53,7 +53,7 @@ $pivotgrid-configurator-content-padding-x: $pivotgrid-spacer !default;
|
|
|
53
53
|
$pivotgrid-configurator-content-padding-y: 0px !default;
|
|
54
54
|
|
|
55
55
|
$pivotgrid-configurator-fields-margin-x: 0px !default;
|
|
56
|
-
$pivotgrid-configurator-fields-margin-y: ( $pivotgrid-spacer
|
|
56
|
+
$pivotgrid-configurator-fields-margin-y: k-math-div( $pivotgrid-spacer, 2 ) !default;
|
|
57
57
|
|
|
58
58
|
$pivotgrid-configurator-vertical-width: 320px !default;
|
|
59
59
|
$pivotgrid-configurator-horizontal-height: 420px !default;
|
|
@@ -66,13 +66,13 @@ $pivotgrid-configurator-header-bg: null !default;
|
|
|
66
66
|
$pivotgrid-configurator-header-text: $header-text !default;
|
|
67
67
|
$pivotgrid-configurator-header-border: null !default;
|
|
68
68
|
|
|
69
|
-
$pivotgrid-configurator-end-shadow: -3px 0px 6px rgba(
|
|
70
|
-
$pivotgrid-configurator-start-shadow: 3px 0px 6px rgba(
|
|
71
|
-
$pivotgrid-configurator-top-shadow: 0px -3px 6px rgba(
|
|
72
|
-
$pivotgrid-configurator-bottom-shadow: 0px 3px 6px rgba(
|
|
69
|
+
$pivotgrid-configurator-end-shadow: -3px 0px 6px rgba( black, .16 ) !default;
|
|
70
|
+
$pivotgrid-configurator-start-shadow: 3px 0px 6px rgba( black, .16 ) !default;
|
|
71
|
+
$pivotgrid-configurator-top-shadow: 0px -3px 6px rgba( black, .16 ) !default;
|
|
72
|
+
$pivotgrid-configurator-bottom-shadow: 0px 3px 6px rgba( black, .16 ) !default;
|
|
73
73
|
|
|
74
|
-
$pivotgrid-configurator-button-padding-x: map-get($spacing, 1) !default;
|
|
75
|
-
$pivotgrid-configurator-button-padding-y: map-get($spacing, 1) !default;
|
|
74
|
+
$pivotgrid-configurator-button-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
75
|
+
$pivotgrid-configurator-button-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
76
76
|
$pivotgrid-configurator-button-border-width: 1px !default;
|
|
77
77
|
$pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$pivotgrid-configurator-button-padding-y * 2} + #{$pivotgrid-configurator-button-border-width * 2} ) !default;
|
|
78
78
|
|
|
@@ -92,7 +92,7 @@ $pivotgrid-calculated-field-header-text: $header-text !default;
|
|
|
92
92
|
$pivotgrid-calculated-field-header-border: null !default;
|
|
93
93
|
|
|
94
94
|
|
|
95
|
-
$pivotgrid-treeview-padding-x: ( $pivotgrid-spacer
|
|
95
|
+
$pivotgrid-treeview-padding-x: k-math-div( $pivotgrid-spacer, 2) !default;
|
|
96
96
|
$pivotgrid-treeview-padding-y: 0px !default;
|
|
97
97
|
|
|
98
98
|
// Legacy variables
|
|
@@ -101,7 +101,7 @@ $pivotgrid-alt-text: $grid-header-text !default;
|
|
|
101
101
|
$pivotgrid-chrome-border: $grid-border !default;
|
|
102
102
|
|
|
103
103
|
$pivotgrid-container-bg: $component-bg !default;
|
|
104
|
-
$pivotgrid-row-headers-bg: try-shade( $component-bg, 2 ) !default;
|
|
104
|
+
$pivotgrid-row-headers-bg: k-try-shade( $component-bg, 2 ) !default;
|
|
105
105
|
|
|
106
106
|
$pivotgrid-button-bg: null !default;
|
|
107
107
|
$pivotgrid-button-text: null !default;
|
|
@@ -7,10 +7,10 @@ $popup-border-radius: null !default;
|
|
|
7
7
|
$popup-font-size: $font-size !default;
|
|
8
8
|
$popup-line-height: $line-height !default;
|
|
9
9
|
|
|
10
|
-
$popup-content-padding-x: map-get( $spacing, 2 ) !default;
|
|
11
|
-
$popup-content-padding-y: map-get( $spacing, 2 ) !default;
|
|
10
|
+
$popup-content-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
11
|
+
$popup-content-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
12
12
|
|
|
13
13
|
$popup-bg: $component-bg !default;
|
|
14
14
|
$popup-text: $component-text !default;
|
|
15
15
|
$popup-border: $component-border !default;
|
|
16
|
-
$popup-shadow: 0 2px 4px 0 rgba(
|
|
16
|
+
$popup-shadow: 0 2px 4px 0 rgba( black, .03 ), 0 4px 5px 0 rgba( black, .04 ) !default;
|
|
@@ -7,14 +7,14 @@ $progressbar-font-family: $font-family !default;
|
|
|
7
7
|
$progressbar-font-size: $font-size-sm !default;
|
|
8
8
|
$progressbar-line-height: 1 !default;
|
|
9
9
|
|
|
10
|
-
$progressbar-bg: try-shade( $component-bg, 1 ) !default;
|
|
10
|
+
$progressbar-bg: k-try-shade( $component-bg, 1 ) !default;
|
|
11
11
|
$progressbar-text: $component-text !default;
|
|
12
12
|
$progressbar-border: $component-border !default;
|
|
13
13
|
$progressbar-gradient: null !default;
|
|
14
14
|
|
|
15
15
|
$progressbar-fill-bg: $primary !default;
|
|
16
16
|
$progressbar-fill-text: contrast-wcag( $progressbar-fill-bg ) !default;
|
|
17
|
-
$progressbar-fill-border: try-shade( $progressbar-fill-bg ) !default;
|
|
17
|
+
$progressbar-fill-border: k-try-shade( $progressbar-fill-bg ) !default;
|
|
18
18
|
$progressbar-fill-gradient: null !default;
|
|
19
19
|
|
|
20
20
|
$progressbar-indeterminate-bg: $progressbar-bg !default;
|
|
@@ -10,19 +10,19 @@ $kendo-radio-border-width: 1px !default;
|
|
|
10
10
|
// Radio button sizes
|
|
11
11
|
$kendo-radio-sizes: (
|
|
12
12
|
sm: (
|
|
13
|
-
size: map-get( $spacing, 3 ),
|
|
14
|
-
glyph-size: ( map-get( $spacing, 3 ) - map-get( $spacing, thin ) ),
|
|
15
|
-
ripple-size: map-get( $spacing, 3 ) * 3
|
|
13
|
+
size: k-map-get( $spacing, 3 ),
|
|
14
|
+
glyph-size: ( k-map-get( $spacing, 3 ) - k-map-get( $spacing, thin ) ),
|
|
15
|
+
ripple-size: k-map-get( $spacing, 3 ) * 3
|
|
16
16
|
),
|
|
17
17
|
md: (
|
|
18
|
-
size: map-get( $spacing, 4 ),
|
|
19
|
-
glyph-size: ( map-get( $spacing, 4 ) - map-get( $spacing, thin ) ),
|
|
20
|
-
ripple-size: map-get( $spacing, 4 ) * 3
|
|
18
|
+
size: k-map-get( $spacing, 4 ),
|
|
19
|
+
glyph-size: ( k-map-get( $spacing, 4 ) - k-map-get( $spacing, thin ) ),
|
|
20
|
+
ripple-size: k-map-get( $spacing, 4 ) * 3
|
|
21
21
|
),
|
|
22
22
|
lg: (
|
|
23
|
-
size: map-get( $spacing, 5 ),
|
|
24
|
-
glyph-size: ( map-get( $spacing, 5 ) - map-get( $spacing, thin ) ),
|
|
25
|
-
ripple-size: map-get( $spacing, 5 ) * 3
|
|
23
|
+
size: k-map-get( $spacing, 5 ),
|
|
24
|
+
glyph-size: ( k-map-get( $spacing, 5 ) - k-map-get( $spacing, thin ) ),
|
|
25
|
+
ripple-size: k-map-get( $spacing, 5 ) * 3
|
|
26
26
|
)
|
|
27
27
|
) !default;
|
|
28
28
|
|
|
@@ -125,14 +125,14 @@ $kendo-radio-disabled-checked-image: null !default;
|
|
|
125
125
|
|
|
126
126
|
/// The horizontal margin of the radio button inside of a label.
|
|
127
127
|
/// @group radio
|
|
128
|
-
$kendo-radio-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
128
|
+
$kendo-radio-label-margin-x: k-map-get( $spacing, 1 ) !default;
|
|
129
129
|
|
|
130
130
|
|
|
131
131
|
// Radio list
|
|
132
132
|
|
|
133
133
|
/// Spacing between items of horizontal radio button list.
|
|
134
134
|
/// @group radio
|
|
135
|
-
$kendo-radio-list-spacing: map-get( $spacing, 4 ) !default;
|
|
135
|
+
$kendo-radio-list-spacing: k-map-get( $spacing, 4 ) !default;
|
|
136
136
|
/// Horizontal padding of radio button list items.
|
|
137
137
|
/// @group radio
|
|
138
138
|
$kendo-radio-list-item-padding-x: 0px !default;
|
|
@@ -19,5 +19,5 @@ $rating-icon-selected-text: $selected-bg !default;
|
|
|
19
19
|
$rating-icon-hover-text: $selected-bg !default;
|
|
20
20
|
$rating-icon-focused-text: $selected-bg !default;
|
|
21
21
|
|
|
22
|
-
$rating-icon-focused-shadow: 0 2px 4px rgba(
|
|
23
|
-
$rating-icon-focused-selected-shadow: 0 2px 4px rgba(
|
|
22
|
+
$rating-icon-focused-shadow: 0 2px 4px rgba( black, .1 ) !default;
|
|
23
|
+
$rating-icon-focused-selected-shadow: 0 2px 4px rgba( black, .1) !default;
|
|
@@ -22,7 +22,7 @@ $scheduler-event-min-height: 25px !default;
|
|
|
22
22
|
$scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
23
23
|
$scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y}) ) !default;
|
|
24
24
|
|
|
25
|
-
$scheduler-event-bg: tint( $selected-bg, 2 ) !default;
|
|
25
|
+
$scheduler-event-bg: k-color-tint( $selected-bg, 2 ) !default;
|
|
26
26
|
$scheduler-event-text: $selected-text !default;
|
|
27
27
|
$scheduler-event-border: null !default;
|
|
28
28
|
$scheduler-event-gradient: null !default;
|
|
@@ -38,31 +38,31 @@ $scheduler-event-selected-bg: $selected-bg !default;
|
|
|
38
38
|
$scheduler-event-selected-text: $selected-text !default;
|
|
39
39
|
$scheduler-event-selected-border: null !default;
|
|
40
40
|
$scheduler-event-selected-gradient: null !default;
|
|
41
|
-
$scheduler-event-selected-shadow: inset 0 0 0 2px rgba(
|
|
41
|
+
$scheduler-event-selected-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
42
42
|
|
|
43
43
|
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
44
44
|
|
|
45
|
-
$scheduler-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
46
|
-
$scheduler-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
45
|
+
$scheduler-cell-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
46
|
+
$scheduler-cell-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
47
47
|
$scheduler-cell-height: $line-height-em !default;
|
|
48
48
|
$scheduler-datecolumn-width: 12em !default;
|
|
49
49
|
$scheduler-timecolumn-width: 11em !default;
|
|
50
50
|
|
|
51
51
|
$scheduler-current-time-color: #ff0000 !default;
|
|
52
52
|
|
|
53
|
-
$scheduler-nonwork-bg: try-shade( $scheduler-bg, .5 ) !default;
|
|
53
|
+
$scheduler-nonwork-bg: k-try-shade( $scheduler-bg, .5 ) !default;
|
|
54
54
|
$scheduler-nonwork-text: null !default;
|
|
55
55
|
|
|
56
56
|
$scheduler-weekend-bg: null !default;
|
|
57
57
|
$scheduler-weekend-text: null !default;
|
|
58
58
|
|
|
59
|
-
$scheduler-othermonth-bg: try-shade( $scheduler-bg, .5 ) !default;
|
|
59
|
+
$scheduler-othermonth-bg: k-try-shade( $scheduler-bg, .5 ) !default;
|
|
60
60
|
$scheduler-othermonth-text: null !default;
|
|
61
61
|
|
|
62
|
-
$scheduler-yearview-padding-x: map-get( $spacing, 3 ) !default;
|
|
62
|
+
$scheduler-yearview-padding-x: k-map-get( $spacing, 3 ) !default;
|
|
63
63
|
$scheduler-yearview-padding-y: $scheduler-yearview-padding-x !default;
|
|
64
64
|
|
|
65
|
-
$scheduler-yearview-calendar-gap: map-get( $spacing, 3 ) !default;
|
|
65
|
+
$scheduler-yearview-calendar-gap: k-map-get( $spacing, 3 ) !default;
|
|
66
66
|
|
|
67
67
|
$scheduler-yearview-indicator-size: 3px !default;
|
|
68
68
|
$scheduler-yearview-indicator-calc-offset-top: calc( #{$calendar-cell-size} - (#{$calendar-cell-padding-y} * 2)) !default;
|
|
@@ -77,7 +77,7 @@ $scheduler-tooltip-border-width: 0 !default;
|
|
|
77
77
|
$scheduler-tooltip-bg: $primary-contrast !default;
|
|
78
78
|
$scheduler-tooltip-text: $base-text !default;
|
|
79
79
|
$scheduler-tooltip-border: null !default;
|
|
80
|
-
$scheduler-tooltip-shadow: 0px 0px 10px rgba(
|
|
80
|
+
$scheduler-tooltip-shadow: 0px 0px 10px rgba( black, .2 ) !default;
|
|
81
81
|
|
|
82
82
|
$scheduler-tooltip-title-margin-y: $padding-y !default;
|
|
83
83
|
$scheduler-tooltip-month-font-size: $font-size-sm !default;
|
|
@@ -12,8 +12,8 @@ $scrollview-pagebutton-size: 10px !default;
|
|
|
12
12
|
$scrollview-pagebutton-bg: $kendo-button-bg !default;
|
|
13
13
|
$scrollview-pagebutton-border: $kendo-button-border !default;
|
|
14
14
|
$scrollview-pagebutton-primary-bg: $primary !default;
|
|
15
|
-
$scrollview-pagebutton-primary-border: try-shade( $primary, 2 ) !default;
|
|
16
|
-
$scrollview-pagebutton-shadow: 0 0 0 2px rgba(
|
|
15
|
+
$scrollview-pagebutton-primary-border: k-try-shade( $primary, 2 ) !default;
|
|
16
|
+
$scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
17
17
|
|
|
18
18
|
$scrollview-pager-offset: 0 !default;
|
|
19
19
|
$scrollview-pager-item-spacing: 20px !default;
|
|
@@ -27,14 +27,14 @@ $scrollview-pager-multidot-step: 1px !default;
|
|
|
27
27
|
$scrollview-arrow-icon-size: 4.5em !default;
|
|
28
28
|
$scrollview-arrow-tap-highlight-color: $rgba-transparent !default;
|
|
29
29
|
$scrollview-navigation-color: white !default;
|
|
30
|
-
$scrollview-navigation-icon-shadow: rgba(
|
|
31
|
-
$scrollview-navigation-bg: rgba(
|
|
30
|
+
$scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
|
|
31
|
+
$scrollview-navigation-bg: rgba( black, 0 ) !default;
|
|
32
32
|
$scrollview-navigation-default-opacity: .7 !default;
|
|
33
33
|
$scrollview-navigation-hover-opacity: 1 !default;
|
|
34
34
|
$scrollview-navigation-hover-span-bg: null !default;
|
|
35
35
|
|
|
36
|
-
$scrollview-light-bg: rgba(
|
|
37
|
-
$scrollview-dark-bg: rgba(
|
|
36
|
+
$scrollview-light-bg: rgba( white, .4 ) !default;
|
|
37
|
+
$scrollview-dark-bg: rgba( black, .4 ) !default;
|
|
38
38
|
|
|
39
39
|
$scrollview-transition-duration: .3s !default;
|
|
40
40
|
$scrollview-transition-timing-function: ease-in-out !default;
|
|
@@ -6,10 +6,10 @@ $kendo-signature-lg-min-height: 110px;
|
|
|
6
6
|
$kendo-signature-maximized-width: 750px !default;
|
|
7
7
|
$kendo-signature-maximized-height: 252px !default;
|
|
8
8
|
|
|
9
|
-
$kendo-signature-padding-x: map-get( $spacing, 1 ) !default;
|
|
10
|
-
$kendo-signature-padding-x-sm: map-get( $spacing, 1 ) - map-get($spacing, thin) !default;
|
|
9
|
+
$kendo-signature-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
10
|
+
$kendo-signature-padding-x-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
11
11
|
$kendo-signature-padding-x-md: $kendo-signature-padding-x !default;
|
|
12
|
-
$kendo-signature-padding-x-lg: map-get( $spacing, 2 ) !default;
|
|
12
|
+
$kendo-signature-padding-x-lg: k-map-get( $spacing, 2 ) !default;
|
|
13
13
|
|
|
14
14
|
$kendo-signature-padding-y: $kendo-signature-padding-x !default;
|
|
15
15
|
$kendo-signature-padding-y-sm: $kendo-signature-padding-x-sm !default;
|
|
@@ -45,5 +45,5 @@ $kendo-signature-sizes: (
|
|
|
45
45
|
)
|
|
46
46
|
) !default;
|
|
47
47
|
|
|
48
|
-
$kendo-signature-actions-gap: map-get( $spacing, 1 ) !default;
|
|
49
|
-
$kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacing, hair ) !default;
|
|
48
|
+
$kendo-signature-actions-gap: k-map-get( $spacing, 1 ) !default;
|
|
49
|
+
$kendo-signature-maximized-line-width: k-map-get( $spacing, 1 ) - k-map-get( $spacing, hair ) !default;
|
|
@@ -20,17 +20,17 @@ $slider-draghandle-active-size: null !default;
|
|
|
20
20
|
|
|
21
21
|
$slider-draghandle-bg: $primary !default;
|
|
22
22
|
$slider-draghandle-text: contrast-wcag( $primary ) !default;
|
|
23
|
-
$slider-draghandle-border: try-shade( $primary, 2 ) !default;
|
|
23
|
+
$slider-draghandle-border: k-try-shade( $primary, 2 ) !default;
|
|
24
24
|
$slider-draghandle-gradient: null !default;
|
|
25
25
|
|
|
26
|
-
$slider-draghandle-hovered-bg: try-shade( $primary, 1 ) !default;
|
|
26
|
+
$slider-draghandle-hovered-bg: k-try-shade( $primary, 1 ) !default;
|
|
27
27
|
$slider-draghandle-hovered-text: null !default;
|
|
28
|
-
$slider-draghandle-hovered-border: try-shade( $slider-draghandle-hovered-bg, 2 ) !default;
|
|
28
|
+
$slider-draghandle-hovered-border: k-try-shade( $slider-draghandle-hovered-bg, 2 ) !default;
|
|
29
29
|
$slider-draghandle-hovered-gradient: null !default;
|
|
30
30
|
|
|
31
|
-
$slider-draghandle-pressed-bg: try-shade( $primary, 2 ) !default;
|
|
31
|
+
$slider-draghandle-pressed-bg: k-try-shade( $primary, 2 ) !default;
|
|
32
32
|
$slider-draghandle-pressed-text: null !default;
|
|
33
|
-
$slider-draghandle-pressed-border: try-shade( $slider-draghandle-pressed-bg, 2 ) !default;
|
|
33
|
+
$slider-draghandle-pressed-border: k-try-shade( $slider-draghandle-pressed-bg, 2 ) !default;
|
|
34
34
|
$slider-draghandle-pressed-gradient: null !default;
|
|
35
35
|
|
|
36
36
|
$slider-draghandle-focused-shadow: 0 0 4px 0 rgba( $slider-draghandle-border, .75 ) !default;
|
|
@@ -40,6 +40,6 @@ $slider-transition-function: ease-out !default;
|
|
|
40
40
|
$slider-draghandle-transition-speed: .4s !default;
|
|
41
41
|
$slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !default;
|
|
42
42
|
|
|
43
|
-
$slider-track-bg: try-shade( $component-bg, 1 ) !default;
|
|
43
|
+
$slider-track-bg: k-try-shade( $component-bg, 1 ) !default;
|
|
44
44
|
$slider-selection-bg: $primary !default;
|
|
45
45
|
$slider-disabled-opacity: null !default;
|
|
@@ -17,7 +17,7 @@ $splitter-drag-icon-margin: 7px !default;
|
|
|
17
17
|
$splitbar-bg: $base-bg !default;
|
|
18
18
|
$splitbar-text: $base-text !default;
|
|
19
19
|
|
|
20
|
-
$splitbar-hover-bg: try-shade( $splitbar-bg, .5 ) !default;
|
|
20
|
+
$splitbar-hover-bg: k-try-shade( $splitbar-bg, .5 ) !default;
|
|
21
21
|
$splitbar-hover-text: $splitbar-text !default;
|
|
22
22
|
|
|
23
23
|
$splitbar-selected-bg: $selected-bg !default;
|
|
@@ -16,7 +16,7 @@ $spreadsheet-insert-image-dialog-preview-height: 230px !default;
|
|
|
16
16
|
$spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
|
|
17
17
|
$spreadsheet-insert-image-dialog-preview-border: $component-border !default;
|
|
18
18
|
$spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
|
|
19
|
-
$spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(
|
|
19
|
+
$spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba( black, .5 ) !default;
|
|
20
20
|
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
|
|
21
21
|
$spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
|
|
22
22
|
|
|
@@ -33,7 +33,7 @@ $stepper-indicator-bg: $component-bg !default;
|
|
|
33
33
|
$stepper-indicator-text: $component-text !default;
|
|
34
34
|
$stepper-indicator-border: $component-border !default;
|
|
35
35
|
|
|
36
|
-
$stepper-indicator-hover-bg: try-shade( $stepper-indicator-bg ) !default;
|
|
36
|
+
$stepper-indicator-hover-bg: k-try-shade( $stepper-indicator-bg ) !default;
|
|
37
37
|
$stepper-indicator-hover-text: null !default;
|
|
38
38
|
$stepper-indicator-hover-border: null !default;
|
|
39
39
|
|
|
@@ -45,11 +45,11 @@ $stepper-indicator-done-bg: $primary !default;
|
|
|
45
45
|
$stepper-indicator-done-text: contrast-wcag( $stepper-indicator-done-bg ) !default;
|
|
46
46
|
$stepper-indicator-done-border: $stepper-indicator-done-bg !default;
|
|
47
47
|
|
|
48
|
-
$stepper-indicator-done-hover-bg: try-shade( $stepper-indicator-done-bg ) !default;
|
|
48
|
+
$stepper-indicator-done-hover-bg: k-try-shade( $stepper-indicator-done-bg ) !default;
|
|
49
49
|
$stepper-indicator-done-hover-text: null !default;
|
|
50
50
|
$stepper-indicator-done-hover-border: null !default;
|
|
51
51
|
|
|
52
|
-
$stepper-indicator-done-disabled-bg: mix( $stepper-indicator-done-bg, $component-bg, 60%) !default;
|
|
52
|
+
$stepper-indicator-done-disabled-bg: k-color-mix( $stepper-indicator-done-bg, $component-bg, 60% ) !default;
|
|
53
53
|
$stepper-indicator-done-disabled-text: contrast-wcag( $stepper-indicator-done-bg ) !default;
|
|
54
54
|
$stepper-indicator-done-disabled-border: $stepper-indicator-done-disabled-bg !default;
|
|
55
55
|
|
|
@@ -67,7 +67,7 @@ $kendo-switch-off-track-focus-border: null !default;
|
|
|
67
67
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
68
68
|
/// The ring around the track when the focused switch is not checked.
|
|
69
69
|
/// @group switch
|
|
70
|
-
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
|
|
70
|
+
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if( $dark-theme, $white, $black ), .25 ) !default;
|
|
71
71
|
|
|
72
72
|
/// The background of the track when the disabled switch is not checked.
|
|
73
73
|
/// @group switch
|
|
@@ -84,7 +84,7 @@ $kendo-switch-off-track-disabled-gradient: null !default;
|
|
|
84
84
|
|
|
85
85
|
/// The background of the thumb when the switch is not checked.
|
|
86
86
|
/// @group switch
|
|
87
|
-
$kendo-switch-off-thumb-bg: try-shade( $kendo-switch-off-track-bg ) !default;
|
|
87
|
+
$kendo-switch-off-thumb-bg: k-try-shade( $kendo-switch-off-track-bg ) !default;
|
|
88
88
|
/// The text color of the thumb when the switch is not checked.
|
|
89
89
|
/// @group switch
|
|
90
90
|
$kendo-switch-off-thumb-text: null !default;
|
|
@@ -97,7 +97,7 @@ $kendo-switch-off-thumb-gradient: $base-gradient !default;
|
|
|
97
97
|
|
|
98
98
|
/// The background of the thumb when the hovered switch is not checked.
|
|
99
99
|
/// @group switch
|
|
100
|
-
$kendo-switch-off-thumb-hover-bg: try-shade( $kendo-switch-off-thumb-bg ) !default;
|
|
100
|
+
$kendo-switch-off-thumb-hover-bg: k-try-shade( $kendo-switch-off-thumb-bg ) !default;
|
|
101
101
|
/// The text color of the thumb when the hovered switch is not checked.
|
|
102
102
|
/// @group switch
|
|
103
103
|
$kendo-switch-off-thumb-hover-text: null !default;
|
|
@@ -149,7 +149,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
149
149
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
150
150
|
/// The ring around the track wen the focused switch is checked.
|
|
151
151
|
/// @group switch
|
|
152
|
-
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
|
|
152
|
+
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if( $dark-theme, $white, $black ), .25 ) !default;
|
|
153
153
|
|
|
154
154
|
/// The background of the track when the disabled switch is checked.
|
|
155
155
|
/// @group switch
|
|
@@ -172,20 +172,20 @@ $kendo-switch-on-thumb-bg: $primary !default;
|
|
|
172
172
|
$kendo-switch-on-thumb-text: null !default;
|
|
173
173
|
/// The border color of the thumb when the switch is checked.
|
|
174
174
|
/// @group switch
|
|
175
|
-
$kendo-switch-on-thumb-border: try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
175
|
+
$kendo-switch-on-thumb-border: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
176
176
|
/// The background gradient of the thumb when the switch is checked.
|
|
177
177
|
/// @group switch
|
|
178
178
|
$kendo-switch-on-thumb-gradient: $base-gradient !default;
|
|
179
179
|
|
|
180
180
|
/// The background of the thumb when the hovered switch is checked.
|
|
181
181
|
/// @group switch
|
|
182
|
-
$kendo-switch-on-thumb-hover-bg: try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
182
|
+
$kendo-switch-on-thumb-hover-bg: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
183
183
|
/// The text color of the thumb when the hovered switch is checked.
|
|
184
184
|
/// @group switch
|
|
185
185
|
$kendo-switch-on-thumb-hover-text: null !default;
|
|
186
186
|
/// The border color of the thumb when the hovered switch is checked.
|
|
187
187
|
/// @group switch
|
|
188
|
-
$kendo-switch-on-thumb-hover-border: try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
|
|
188
|
+
$kendo-switch-on-thumb-hover-border: k-try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
|
|
189
189
|
/// The background gradient of the thumb when the hovered switch is checked.
|
|
190
190
|
/// @group switch
|
|
191
191
|
$kendo-switch-on-thumb-hover-gradient: null !default;
|
|
@@ -32,20 +32,20 @@ $kendo-table-sizes: (
|
|
|
32
32
|
sm: (
|
|
33
33
|
font-size: $font-size-md,
|
|
34
34
|
line-height: $line-height-md,
|
|
35
|
-
cell-padding-x: map-get( $spacing, 2 ),
|
|
36
|
-
cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
|
|
35
|
+
cell-padding-x: k-map-get( $spacing, 2 ),
|
|
36
|
+
cell-padding-y: k-map-get( $spacing, 2 ) + k-map-get( $spacing, thin )
|
|
37
37
|
),
|
|
38
38
|
md: (
|
|
39
39
|
font-size: $font-size-md,
|
|
40
40
|
line-height: $line-height-md,
|
|
41
|
-
cell-padding-x: map-get( $spacing, 2 ),
|
|
42
|
-
cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
|
|
41
|
+
cell-padding-x: k-map-get( $spacing, 2 ),
|
|
42
|
+
cell-padding-y: k-map-get( $spacing, 2 ) + k-map-get( $spacing, thin )
|
|
43
43
|
),
|
|
44
44
|
lg: (
|
|
45
45
|
font-size: $font-size-md,
|
|
46
46
|
line-height: $line-height-md,
|
|
47
|
-
cell-padding-x: map-get( $spacing, 2 ),
|
|
48
|
-
cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
|
|
47
|
+
cell-padding-x: k-map-get( $spacing, 2 ),
|
|
48
|
+
cell-padding-y: k-map-get( $spacing, 2 ) + k-map-get( $spacing, thin )
|
|
49
49
|
)
|
|
50
50
|
) !default;
|
|
51
51
|
|
|
@@ -79,17 +79,17 @@ $tabstrip-item-selected-gradient: false !default;
|
|
|
79
79
|
|
|
80
80
|
$tabstrip-item-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
81
81
|
|
|
82
|
-
$tabstrip-item-dragging-shadow: 0px 3px 4px rgba(
|
|
82
|
+
$tabstrip-item-dragging-shadow: 0px 3px 4px rgba( black, .15 ) !default;
|
|
83
83
|
|
|
84
84
|
$tabstrip-indicator-size: null !default;
|
|
85
85
|
$tabstrip-indicator-color: null !default;
|
|
86
86
|
|
|
87
87
|
/// Horizontal padding of tabstrip content
|
|
88
88
|
/// @group tabstrip
|
|
89
|
-
$tabstrip-content-padding-x: map-get( $spacing, 4 ) !default;
|
|
89
|
+
$tabstrip-content-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
90
90
|
/// Vertical padding of tabstrip content
|
|
91
91
|
/// @group tabstrip
|
|
92
|
-
$tabstrip-content-padding-y: map-get( $spacing, 4 ) !default;
|
|
92
|
+
$tabstrip-content-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
93
93
|
/// Width of border around tabstrip content
|
|
94
94
|
/// @group tabstrip
|
|
95
95
|
$tabstrip-content-border-width: 1px !default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// TaskBoard
|
|
2
|
-
$taskboard-spacer: map-get( $spacing, 4 ) !default;
|
|
2
|
+
$taskboard-spacer: k-map-get( $spacing, 4 ) !default;
|
|
3
3
|
$taskboard-padding-y: null !default;
|
|
4
4
|
$taskboard-padding-x: null !default;
|
|
5
5
|
$taskboard-font-family: $font-family !default;
|
|
@@ -19,9 +19,9 @@ $taskboard-toolbar-gradient: null !default;
|
|
|
19
19
|
$taskboard-content-padding-y: $taskboard-spacer !default;
|
|
20
20
|
$taskboard-content-padding-x: $taskboard-content-padding-y !default;
|
|
21
21
|
|
|
22
|
-
$taskboard-column-container-spacing-y: ( $taskboard-spacer
|
|
22
|
+
$taskboard-column-container-spacing-y: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
23
23
|
$taskboard-column-container-padding-y: 0px !default;
|
|
24
|
-
$taskboard-column-container-padding-x: ( $taskboard-spacer
|
|
24
|
+
$taskboard-column-container-padding-x: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
25
25
|
$taskboard-columns-container-gap: $taskboard-spacer !default;
|
|
26
26
|
|
|
27
27
|
$taskboard-column-width: 320px !default;
|
|
@@ -33,18 +33,18 @@ $taskboard-column-border: transparent !default;
|
|
|
33
33
|
|
|
34
34
|
$taskboard-column-focus-bg: null !default;
|
|
35
35
|
$taskboard-column-focus-text: null !default;
|
|
36
|
-
$taskboard-column-focus-border: try-shade( $base-border, 2.5 ) !default;
|
|
36
|
+
$taskboard-column-focus-border: k-try-shade( $base-border, 2.5 ) !default;
|
|
37
37
|
|
|
38
|
-
$taskboard-column-header-padding-y: ( $taskboard-spacer
|
|
38
|
+
$taskboard-column-header-padding-y: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
39
39
|
$taskboard-column-header-padding-x: $taskboard-column-header-padding-y !default;
|
|
40
|
-
$taskboard-column-header-gap: ( $taskboard-spacer
|
|
41
|
-
$taskboard-column-header-actions-gap: ( $taskboard-spacer
|
|
40
|
+
$taskboard-column-header-gap: k-math-div( $taskboard-spacer, 4 ) !default;
|
|
41
|
+
$taskboard-column-header-actions-gap: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
42
42
|
$taskboard-column-header-font-weight: 500 !default;
|
|
43
43
|
$taskboard-column-header-text: $header-text !default;
|
|
44
44
|
|
|
45
45
|
$taskboard-column-cards-padding-y: null !default;
|
|
46
46
|
$taskboard-column-cards-padding-x: null !default;
|
|
47
|
-
$taskboard-column-cards-gap: ( $taskboard-spacer
|
|
47
|
+
$taskboard-column-cards-gap: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
48
48
|
|
|
49
49
|
$taskboard-pane-width: $taskboard-column-width !default;
|
|
50
50
|
$taskboard-pane-padding-y: null !default;
|
|
@@ -76,12 +76,12 @@ $taskboard-card-shadow: $card-shadow !default;
|
|
|
76
76
|
|
|
77
77
|
$taskboard-card-category-border-width: 4px !default;
|
|
78
78
|
|
|
79
|
-
$taskboard-card-focus-border: try-shade( $taskboard-card-border, 18% ) !default;
|
|
79
|
+
$taskboard-card-focus-border: k-try-shade( $taskboard-card-border, 18% ) !default;
|
|
80
80
|
$taskboard-card-focus-shadow: none !default;
|
|
81
81
|
|
|
82
|
-
$taskboard-card-hover-border: try-shade( $taskboard-card-border, 10% ) !default;
|
|
82
|
+
$taskboard-card-hover-border: k-try-shade( $taskboard-card-border, 10% ) !default;
|
|
83
83
|
|
|
84
|
-
$taskboard-card-selected-border: tint( $primary-lighter, 5 ) !default;
|
|
84
|
+
$taskboard-card-selected-border: k-color-tint( $primary-lighter, 5 ) !default;
|
|
85
85
|
$taskboard-card-selected-shadow: none !default;
|
|
86
86
|
|
|
87
87
|
$taskboard-card-header-text: $primary !default;
|
|
@@ -90,5 +90,5 @@ $taskboard-card-header-hover-text: $primary-darker !default;
|
|
|
90
90
|
|
|
91
91
|
$taskboard-drag-placeholder-border-width: 1px !default;
|
|
92
92
|
$taskboard-drag-placeholder-border-radius: $taskboard-card-border-radius !default;
|
|
93
|
-
$taskboard-drag-placeholder-bg: rgba(
|
|
93
|
+
$taskboard-drag-placeholder-bg: rgba( white, .2 ) !default;
|
|
94
94
|
$taskboard-drag-placeholder-border: $component-border !default;
|
|
@@ -8,5 +8,5 @@ $tilelayout-hint-border-radius: $kendo-border-radius-lg !default;
|
|
|
8
8
|
|
|
9
9
|
$tilelayout-bg: $base-bg !default;
|
|
10
10
|
|
|
11
|
-
$tilelayout-hint-bg: rgba(
|
|
11
|
+
$tilelayout-hint-bg: rgba( white, .2 ) !default;
|
|
12
12
|
$tilelayout-hint-border: $component-border !default;
|
|
@@ -13,9 +13,9 @@ $timeline-mobile-spacing-y: 16px !default;
|
|
|
13
13
|
$timeline-track-arrow-width: 30px !default;
|
|
14
14
|
$timeline-track-arrow-height: 30px !default;
|
|
15
15
|
|
|
16
|
-
$timeline-track-arrow-disabled-text: true-mix($kendo-button-text, $body-bg, 65%) !default;
|
|
17
|
-
$timeline-track-arrow-disabled-bg: true-mix($kendo-button-bg, $body-bg, 65%) !default;
|
|
18
|
-
$timeline-track-arrow-disabled-border: true-mix(#000000, $body-bg, 4.8%) !default;
|
|
16
|
+
$timeline-track-arrow-disabled-text: k-true-mix( $kendo-button-text, $body-bg, 65% ) !default;
|
|
17
|
+
$timeline-track-arrow-disabled-bg: k-true-mix( $kendo-button-bg, $body-bg, 65% ) !default;
|
|
18
|
+
$timeline-track-arrow-disabled-border: k-true-mix( #000000, $body-bg, 4.8% ) !default;
|
|
19
19
|
|
|
20
20
|
$timeline-track-size: 6px !default;
|
|
21
21
|
$timeline-track-wrap-padding-bottom: $timeline-track-size / 2 !default;
|
|
@@ -27,7 +27,7 @@ $timeline-track-end-calc: calc(#{$timeline-track-arrow-width} - 2 * #{$timeline-
|
|
|
27
27
|
$timeline-track-bg: $kendo-button-bg !default;
|
|
28
28
|
$timeline-track-border-color: $kendo-button-border !default;
|
|
29
29
|
|
|
30
|
-
$timeline-track-item-focus-shadow: 0 3px 4px 0 rgba($primary, .4) !default;
|
|
30
|
+
$timeline-track-item-focus-shadow: 0 3px 4px 0 rgba( $primary, .4 ) !default;
|
|
31
31
|
|
|
32
32
|
$timeline-track-event-offset: 36px !default;
|
|
33
33
|
|
|
@@ -8,8 +8,8 @@ $time-selector-bg: $component-bg !default;
|
|
|
8
8
|
$time-selector-text: $component-text !default;
|
|
9
9
|
$time-selector-border: $component-border !default;
|
|
10
10
|
|
|
11
|
-
$time-selector-header-padding-x: map-get( $spacing, 1 ) !default;
|
|
12
|
-
$time-selector-header-padding-y: map-get( $spacing, 1 ) !default;
|
|
11
|
+
$time-selector-header-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
12
|
+
$time-selector-header-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
13
13
|
$time-selector-header-border-width: 0px !default;
|
|
14
14
|
|
|
15
15
|
$time-list-width: 4em !default;
|
|
@@ -29,7 +29,7 @@ $time-list-highlight-height: calc( #{$time-selector-font-size * $time-selector-l
|
|
|
29
29
|
$time-list-highlight-bg: $component-bg !default;
|
|
30
30
|
$time-list-highlight-border: $component-border !default;
|
|
31
31
|
|
|
32
|
-
$time-list-focused-bg: rgba(
|
|
32
|
+
$time-list-focused-bg: rgba( black, .04 ) !default;
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
// Time selector sizes
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
/// The horizontal padding of the container.
|
|
4
4
|
/// @group toolbar
|
|
5
|
-
$toolbar-padding-x: map-get( $spacing, 2 ) !default;
|
|
5
|
+
$toolbar-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
6
6
|
/// The vertical padding of the container.
|
|
7
7
|
/// @group toolbar
|
|
8
|
-
$toolbar-padding-y: map-get( $spacing, 2 ) !default;
|
|
8
|
+
$toolbar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
9
9
|
$toolbar-border-width: 1px !default;
|
|
10
10
|
$toolbar-border-radius: null !default;
|
|
11
11
|
$toolbar-spacing: $toolbar-padding-x !default;
|
|
@@ -25,3 +25,5 @@ $toolbar-shadow: null !default;
|
|
|
25
25
|
$toolbar-separator-border: inherit !default;
|
|
26
26
|
|
|
27
27
|
$toolbar-input-width: 10em !default;
|
|
28
|
+
|
|
29
|
+
$toolbar-item-shadow: $kendo-button-focus-shadow !default;
|
|
@@ -14,22 +14,22 @@ $tooltip-title-line-height: 1 !default;
|
|
|
14
14
|
|
|
15
15
|
$tooltip-callout-size: 6px !default;
|
|
16
16
|
|
|
17
|
-
$tooltip-bg: rgba( contrast-
|
|
18
|
-
$tooltip-text: contrast-
|
|
17
|
+
$tooltip-bg: rgba( k-contrast-color( $body-bg ), .75 ) !default;
|
|
18
|
+
$tooltip-text: k-contrast-color( $tooltip-bg ) !default;
|
|
19
19
|
$tooltip-border: $tooltip-bg !default;
|
|
20
20
|
|
|
21
21
|
$tooltip-primary-bg: $primary !default;
|
|
22
22
|
$tooltip-primary-text: contrast-wcag( $tooltip-primary-bg ) !default;
|
|
23
23
|
$tooltip-primary-border: $tooltip-primary-bg !default;
|
|
24
24
|
$tooltip-info-bg: $info !default;
|
|
25
|
-
$tooltip-info-text: contrast-
|
|
25
|
+
$tooltip-info-text: k-contrast-color( $tooltip-info-bg ) !default;
|
|
26
26
|
$tooltip-info-border: $tooltip-info-bg !default;
|
|
27
27
|
$tooltip-success-bg: $success !default;
|
|
28
|
-
$tooltip-success-text: contrast-
|
|
28
|
+
$tooltip-success-text: k-contrast-color( $tooltip-success-bg ) !default;
|
|
29
29
|
$tooltip-success-border: $tooltip-success-bg !default;
|
|
30
30
|
$tooltip-warning-bg: $warning !default;
|
|
31
|
-
$tooltip-warning-text: contrast-
|
|
31
|
+
$tooltip-warning-text: k-contrast-color( $tooltip-warning-bg ) !default;
|
|
32
32
|
$tooltip-warning-border: $tooltip-warning-bg !default;
|
|
33
33
|
$tooltip-error-bg: $error !default;
|
|
34
|
-
$tooltip-error-text: contrast-
|
|
34
|
+
$tooltip-error-text: k-contrast-color( $tooltip-error-bg ) !default;
|
|
35
35
|
$tooltip-error-border: $tooltip-error-bg !default;
|