@progress/kendo-theme-bootstrap 5.0.0-beta.1 → 5.0.0-beta.2
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 +830 -663
- package/dist/all.scss +965 -763
- package/package.json +3 -3
- package/scss/avatar/index.md +0 -0
- package/scss/button/index.md +0 -0
- package/scss/checkbox/index.md +0 -0
- package/scss/chip/_index.scss +1 -0
- package/scss/chip/_variables.scss +11 -11
- package/scss/chip/index.md +0 -0
- package/scss/color-preview/_variables.scss +1 -0
- package/scss/colorpicker/_index.scss +1 -2
- package/scss/colorpicker/_variables.scss +1 -20
- package/scss/dateinput/_index.scss +0 -4
- package/scss/dateinput/_variables.scss +1 -1
- package/scss/datepicker/_index.scss +1 -3
- package/scss/datetimepicker/_index.scss +5 -3
- package/scss/datetimepicker/_variables.scss +2 -1
- package/scss/dropdowngrid/index.md +0 -0
- package/scss/filter/_index.scss +1 -1
- package/scss/gantt/_index.scss +1 -1
- package/scss/grid/_index.scss +1 -1
- package/scss/grid/_variables.scss +1 -1
- package/scss/index.scss +1 -1
- package/scss/input/_variables.scss +16 -26
- package/scss/list/index.md +0 -0
- package/scss/panelbar/_variables.scss +5 -0
- package/scss/pivotgrid/_variables.scss +0 -3
- package/scss/radio/index.md +0 -0
- package/scss/scheduler/_index.scss +1 -1
- package/scss/spreadsheet/_index.scss +1 -1
- package/scss/switch/index.md +0 -0
- package/scss/taskboard/_variables.scss +0 -2
- package/scss/timepicker/_index.scss +3 -3
- package/scss/timepicker/_variables.scss +1 -1
- package/scss/{datetime → timeselector}/_index.scss +2 -5
- package/scss/timeselector/_layout.scss +1 -0
- package/scss/timeselector/_theme.scss +1 -0
- package/scss/timeselector/_variables.scss +32 -0
- package/scss/treeview/_layout.scss +4 -6
- package/scss/treeview/_variables.scss +142 -46
- package/scss/utils/_border.scss +1 -2
- package/scss/datetime/_layout.scss +0 -25
- package/scss/datetime/_theme.scss +0 -14
- package/scss/datetime/_variables.scss +0 -53
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
4
|
-
"version": "5.0.0-beta.
|
|
4
|
+
"version": "5.0.0-beta.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.0.0-beta.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.0.0-beta.2",
|
|
53
53
|
"bootstrap": "^5.1.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "13e32ba172a1fa6fc172c9d989974ebfccef19e6"
|
|
56
56
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/scss/chip/_index.scss
CHANGED
|
@@ -43,50 +43,50 @@ $kendo-chip-sizes: (
|
|
|
43
43
|
lg: ( font-size: $kendo-chip-font-size-lg, line-height: $kendo-chip-line-height-lg, padding: $kendo-chip-padding-x-lg )
|
|
44
44
|
) !default;
|
|
45
45
|
|
|
46
|
+
/// The base background color of the chip.
|
|
47
|
+
/// @group chip
|
|
48
|
+
$kendo-chip-base-bg: if( $dark-theme, contrast-wcag($kendo-button-text), $kendo-button-text ) !default;
|
|
49
|
+
|
|
46
50
|
/// Theme colors map for the chip.
|
|
47
51
|
/// @group chip
|
|
48
52
|
$kendo-chip-theme-colors: (
|
|
49
|
-
"base": $base-
|
|
53
|
+
"base": $kendo-chip-base-bg,
|
|
50
54
|
"error": map-get( $theme-colors, "error" ),
|
|
51
55
|
"info": map-get( $theme-colors, "info" ),
|
|
52
56
|
"warning": map-get( $theme-colors, "warning" ),
|
|
53
57
|
"success": map-get( $theme-colors, "success" )
|
|
54
58
|
) !default;
|
|
55
59
|
|
|
56
|
-
/// The base background color of the chip.
|
|
57
|
-
/// @group chip
|
|
58
|
-
$kendo-chip-base-bg: $base-text !default;
|
|
59
|
-
|
|
60
60
|
/// The base background color of solid chip.
|
|
61
61
|
/// @group chip
|
|
62
|
-
$kendo-chip-solid-bg:
|
|
62
|
+
$kendo-chip-solid-bg: try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
63
63
|
/// The base text color of solid chip.
|
|
64
64
|
/// @group chip
|
|
65
65
|
$kendo-chip-solid-text: $kendo-chip-base-bg !default;
|
|
66
66
|
/// The base border color of solid chip.
|
|
67
67
|
/// @group chip
|
|
68
|
-
$kendo-chip-solid-border:
|
|
68
|
+
$kendo-chip-solid-border: try-tint( $kendo-chip-base-bg, 70% ) !default;
|
|
69
69
|
/// The base shadow of solid chip.
|
|
70
70
|
/// @group chip
|
|
71
|
-
$kendo-chip-solid-shadow: 0 0 0 2px rgba( $kendo-chip-
|
|
71
|
+
$kendo-chip-solid-shadow: 0 0 0 2px rgba( $kendo-chip-base-bg, .16 ) !default;
|
|
72
72
|
|
|
73
73
|
/// The base background color of focused solid chip.
|
|
74
74
|
/// @group chip
|
|
75
|
-
$kendo-chip-solid-focus-bg:
|
|
75
|
+
$kendo-chip-solid-focus-bg: try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
76
76
|
/// The base text color of focused solid chip.
|
|
77
77
|
/// @group chip
|
|
78
78
|
$kendo-chip-solid-focus-text: null !default;
|
|
79
79
|
|
|
80
80
|
/// The base background color of hovered solid chip.
|
|
81
81
|
/// @group chip
|
|
82
|
-
$kendo-chip-solid-hover-bg:
|
|
82
|
+
$kendo-chip-solid-hover-bg: try-tint( $kendo-chip-base-bg, 84% ) !default;
|
|
83
83
|
/// The base text color of hovered solid chip.
|
|
84
84
|
/// @group chip
|
|
85
85
|
$kendo-chip-solid-hover-text: null !default;
|
|
86
86
|
|
|
87
87
|
/// The base background color of selected solid chip.
|
|
88
88
|
/// @group chip
|
|
89
|
-
$kendo-chip-solid-selected-bg:
|
|
89
|
+
$kendo-chip-solid-selected-bg: try-tint( $kendo-chip-base-bg, 76% ) !default;
|
|
90
90
|
/// The base text color of selected solid chip.
|
|
91
91
|
/// @group chip
|
|
92
92
|
$kendo-chip-solid-selected-text: null !default;
|
|
File without changes
|
|
@@ -11,3 +11,4 @@ $color-preview-no-color-text: $error !default;
|
|
|
11
11
|
$color-preview-no-color-border: null !default;
|
|
12
12
|
|
|
13
13
|
$color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'><line x1='0' x2='20' y1='0' y2='20' stroke='#{$color-preview-no-color-text}' stroke-width='1'/></svg>") ) !default;
|
|
14
|
+
$color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC") !default;
|
|
@@ -1,20 +1 @@
|
|
|
1
|
-
//
|
|
2
|
-
$colorpicker-font-family: $font-family !default;
|
|
3
|
-
$colorpicker-font-size: $font-size !default;
|
|
4
|
-
$colorpicker-line-height: $line-height !default;
|
|
5
|
-
|
|
6
|
-
$colorpicker-bg: $kendo-button-bg !default;
|
|
7
|
-
$colorpicker-text: $kendo-button-text !default;
|
|
8
|
-
$colorpicker-border: $kendo-button-border !default;
|
|
9
|
-
$colorpicker-gradient: $kendo-button-gradient !default;
|
|
10
|
-
|
|
11
|
-
$colorpicker-hovered-bg: $kendo-button-hover-bg !default;
|
|
12
|
-
$colorpicker-hovered-text: $kendo-button-hover-text !default;
|
|
13
|
-
$colorpicker-hovered-border: $kendo-button-hover-border !default;
|
|
14
|
-
$colorpicker-hovered-gradient: $kendo-button-hover-gradient !default;
|
|
15
|
-
|
|
16
|
-
$colorpicker-focused-bg: $kendo-button-active-bg !default;
|
|
17
|
-
$colorpicker-focused-text: $kendo-button-active-text !default;
|
|
18
|
-
$colorpicker-focused-border: $kendo-button-active-border !default;
|
|
19
|
-
$colorpicker-focused-gradient: $kendo-button-active-gradient !default;
|
|
20
|
-
$colorpicker-focused-shadow: $kendo-button-focus-shadow !default;
|
|
1
|
+
// Color picker
|
|
@@ -1 +1 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Date input
|
|
@@ -2,11 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
// Dependencies
|
|
5
|
-
@import "../common/_index.scss";
|
|
6
5
|
@import "../input/_index.scss";
|
|
7
|
-
@import "../floating-label/_index.scss";
|
|
8
6
|
@import "../popup/_index.scss";
|
|
9
|
-
@import "../
|
|
7
|
+
@import "../calendar/_index.scss";
|
|
10
8
|
|
|
11
9
|
|
|
12
10
|
// Component
|
|
@@ -2,11 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
// Dependencies
|
|
5
|
-
@import "../common/_index.scss";
|
|
6
5
|
@import "../input/_index.scss";
|
|
7
|
-
@import "../
|
|
6
|
+
@import "../button/_index.scss";
|
|
8
7
|
@import "../popup/_index.scss";
|
|
9
|
-
@import "../
|
|
8
|
+
@import "../list/_index.scss";
|
|
9
|
+
@import "../calendar/_index.scss";
|
|
10
|
+
@import "../timeselector/_index.scss";
|
|
11
|
+
@import "../action-buttons/_index.scss";
|
|
10
12
|
|
|
11
13
|
|
|
12
14
|
// Component
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
//
|
|
1
|
+
// DateTime
|
|
2
|
+
$datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-padding-x * 2}) !default;
|
|
File without changes
|
package/scss/filter/_index.scss
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@import "../button/_index.scss";
|
|
7
7
|
@import "../input/_index.scss";
|
|
8
8
|
@import "../checkbox/_index.scss";
|
|
9
|
-
@import "../
|
|
9
|
+
@import "../datetimepicker/_index.scss";
|
|
10
10
|
@import "../dropdownlist/_index.scss";
|
|
11
11
|
@import "../numerictextbox/_index.scss";
|
|
12
12
|
@import "../toolbar/_index.scss";
|
package/scss/gantt/_index.scss
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@import "../button/_index.scss";
|
|
7
7
|
@import "../input/_index.scss";
|
|
8
8
|
@import "../validator/_index.scss";
|
|
9
|
-
@import "../
|
|
9
|
+
@import "../datetimepicker/_index.scss";
|
|
10
10
|
@import "../numerictextbox/_index.scss";
|
|
11
11
|
@import "../window/_index.scss";
|
|
12
12
|
@import "../splitter/_index.scss";
|
package/scss/grid/_index.scss
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
@import "../radio/_index.scss";
|
|
15
15
|
@import "../validator/_index.scss";
|
|
16
16
|
@import "../autocomplete/_index.scss";
|
|
17
|
-
@import "../
|
|
17
|
+
@import "../datetimepicker/_index.scss";
|
|
18
18
|
@import "../dropdownlist/_index.scss";
|
|
19
19
|
@import "../numerictextbox/_index.scss";
|
|
20
20
|
@import "../menu/_index.scss";
|
|
@@ -14,7 +14,7 @@ $grid-header-font-size: null !default;
|
|
|
14
14
|
$grid-footer-padding-x: $grid-header-padding-x !default;
|
|
15
15
|
$grid-footer-padding-y: $grid-header-padding-y !default;
|
|
16
16
|
|
|
17
|
-
$grid-grouping-header-padding-x:
|
|
17
|
+
$grid-grouping-header-padding-x: $grid-padding-y !default;
|
|
18
18
|
$grid-grouping-header-padding-y: $grid-grouping-header-padding-x !default;
|
|
19
19
|
|
|
20
20
|
$grid-filter-cell-padding-x: $grid-padding-y !default;
|
package/scss/index.scss
CHANGED
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
// Form requirements
|
|
55
55
|
@import "calendar/_index.scss";
|
|
56
|
+
@import "timeselector/_index.scss";
|
|
56
57
|
|
|
57
58
|
|
|
58
59
|
// Augmented forms
|
|
@@ -68,7 +69,6 @@
|
|
|
68
69
|
@import "timepicker/_index.scss";
|
|
69
70
|
@import "datetimepicker/_index.scss";
|
|
70
71
|
@import "daterangepicker/_index.scss";
|
|
71
|
-
@import "datetime/_index.scss";
|
|
72
72
|
@import "dropdowngrid/_index.scss";
|
|
73
73
|
@import "dropdownlist/_index.scss";
|
|
74
74
|
@import "dropdowntree/_index.scss";
|
|
@@ -1,58 +1,52 @@
|
|
|
1
1
|
// Input
|
|
2
|
+
$kendo-input-default-width: 100% !default;
|
|
3
|
+
|
|
2
4
|
$kendo-input-border-width: $input-border-width !default;
|
|
3
5
|
$kendo-input-border-height: ( $kendo-input-border-width * 2 ) !default;
|
|
4
|
-
$kendo-input-border-radius:
|
|
5
|
-
$kendo-input-border-radius-sm: $input-border-radius-sm !default;
|
|
6
|
-
$kendo-input-border-radius-lg: $input-border-radius-lg !default;
|
|
6
|
+
$kendo-input-border-radius: null !default;
|
|
7
7
|
|
|
8
8
|
$kendo-input-padding-x: $input-padding-x !default;
|
|
9
9
|
$kendo-input-padding-y: $input-padding-y !default;
|
|
10
10
|
$kendo-input-font-family: $font-family !default;
|
|
11
11
|
$kendo-input-font-size: $font-size !default;
|
|
12
12
|
$kendo-input-line-height: $input-line-height !default;
|
|
13
|
-
$kendo-input-line-height-em: $input-line-height * 1em !default;
|
|
14
13
|
|
|
15
14
|
$kendo-input-padding-x-sm: $input-padding-x-sm !default;
|
|
16
15
|
$kendo-input-padding-y-sm: $input-padding-y-sm !default;
|
|
17
16
|
$kendo-input-font-size-sm: $input-font-size-sm !default;
|
|
18
|
-
$kendo-input-line-height-sm: $
|
|
17
|
+
$kendo-input-line-height-sm: $line-height-md !default;
|
|
19
18
|
|
|
20
|
-
$kendo-input-padding-x-md: $
|
|
21
|
-
$kendo-input-padding-y-md: $
|
|
22
|
-
$kendo-input-font-size-md: $
|
|
23
|
-
$kendo-input-line-height-md: $
|
|
19
|
+
$kendo-input-padding-x-md: $input-padding-x !default;
|
|
20
|
+
$kendo-input-padding-y-md: $input-padding-y !default;
|
|
21
|
+
$kendo-input-font-size-md: $input-font-size !default;
|
|
22
|
+
$kendo-input-line-height-md: $line-height-md !default;
|
|
24
23
|
|
|
25
24
|
$kendo-input-padding-x-lg: $input-padding-x-lg !default;
|
|
26
25
|
$kendo-input-padding-y-lg: $input-padding-y-lg !default;
|
|
27
26
|
$kendo-input-font-size-lg: $input-font-size-lg !default;
|
|
28
|
-
$kendo-input-line-height-lg: $
|
|
29
|
-
|
|
30
|
-
$kendo-input-calc-height: calc( #{$kendo-input-line-height * 1em} + #{$kendo-input-padding-y * 2} + #{$kendo-input-border-height} ) !default;
|
|
31
|
-
$kendo-input-calc-height-sm: calc( #{$kendo-input-line-height-sm * 1em} + #{$kendo-input-padding-y-sm * 2} + #{$kendo-input-border-height} ) !default;
|
|
32
|
-
$kendo-input-calc-height-lg: calc( #{$kendo-input-line-height-lg * 1em} + #{$kendo-input-padding-y-lg * 2} + #{$kendo-input-border-height} ) !default;
|
|
33
|
-
|
|
34
|
-
$kendo-input-inner-calc-height: calc( #{$kendo-input-line-height * 1em} + #{$kendo-input-padding-y * 2} ) !default;
|
|
35
|
-
$kendo-input-inner-calc-height-sm: calc( #{$kendo-input-line-height-sm * 1em} + #{$kendo-input-padding-y-sm * 2} ) !default;
|
|
36
|
-
$kendo-input-inner-calc-height-lg: calc( #{$kendo-input-line-height-lg * 1em} + #{$kendo-input-padding-y-lg * 2} ) !default;
|
|
27
|
+
$kendo-input-line-height-lg: $line-height-md !default;
|
|
37
28
|
|
|
38
29
|
$kendo-input-sizes: (
|
|
39
30
|
sm: (
|
|
40
31
|
padding-x: $kendo-input-padding-x-sm,
|
|
41
32
|
padding-y: $kendo-input-padding-y-sm,
|
|
42
33
|
font-size: $kendo-input-font-size-sm,
|
|
43
|
-
line-height: $kendo-input-line-height-sm
|
|
34
|
+
line-height: $kendo-input-line-height-sm,
|
|
35
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-sm * 2} )
|
|
44
36
|
),
|
|
45
37
|
md: (
|
|
46
38
|
padding-x: $kendo-input-padding-x-md,
|
|
47
39
|
padding-y: $kendo-input-padding-y-md,
|
|
48
40
|
font-size: $kendo-input-font-size-md,
|
|
49
|
-
line-height: $kendo-input-line-height-md
|
|
41
|
+
line-height: $kendo-input-line-height-md,
|
|
42
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-md * 2} )
|
|
50
43
|
),
|
|
51
44
|
lg: (
|
|
52
45
|
padding-x: $kendo-input-padding-x-lg,
|
|
53
46
|
padding-y: $kendo-input-padding-y-lg,
|
|
54
47
|
font-size: $kendo-input-font-size-lg,
|
|
55
|
-
line-height: $kendo-input-line-height-lg
|
|
48
|
+
line-height: $kendo-input-line-height-lg,
|
|
49
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-lg * 2} )
|
|
56
50
|
)
|
|
57
51
|
) !default;
|
|
58
52
|
|
|
@@ -85,6 +79,7 @@ $kendo-input-clear-value-hover-opacity: 1 !default;
|
|
|
85
79
|
$kendo-input-values-margin-y: map-get( $spacing, thin ) !default;
|
|
86
80
|
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
87
81
|
|
|
82
|
+
|
|
88
83
|
// Input actions
|
|
89
84
|
$kendo-input-button-width: null !default;
|
|
90
85
|
$kendo-input-button-border-width: 1px !default;
|
|
@@ -92,11 +87,6 @@ $kendo-input-spinner-width: null !default;
|
|
|
92
87
|
$kendo-input-spinner-icon-offset: 2px !default;
|
|
93
88
|
|
|
94
89
|
|
|
95
|
-
// Input icon
|
|
96
|
-
$kendo-input-icon-width: calc( #{$icon-size} + #{$kendo-input-padding-y * 2} ) !default;
|
|
97
|
-
$kendo-input-icon-height: calc( #{$kendo-input-line-height * $kendo-input-font-size} + #{$kendo-input-padding-y * 2} ) !default;
|
|
98
|
-
|
|
99
|
-
|
|
100
90
|
// Input separator
|
|
101
91
|
$kendo-input-separator-color: $kendo-input-text !default;
|
|
102
92
|
$kendo-input-separator-opacity: .5 !default;
|
|
File without changes
|
|
@@ -94,3 +94,8 @@ $panelbar-item-selected-hovered-focused-bg: null !default;
|
|
|
94
94
|
$panelbar-item-selected-hovered-focused-text: null !default;
|
|
95
95
|
$panelbar-item-selected-hovered-focused-border: null !default;
|
|
96
96
|
$panelbar-item-selected-hovered-focused-gradient: null !default;
|
|
97
|
+
|
|
98
|
+
$panelbar-header-expanded-bg: null !default;
|
|
99
|
+
$panelbar-header-expanded-text: null !default;
|
|
100
|
+
$panelbar-header-expanded-border: null !default;
|
|
101
|
+
$panelbar-header-expanded-gradient: null !default;
|
|
@@ -54,9 +54,6 @@ $pivotgrid-configurator-content-padding-y: .25rem !default;
|
|
|
54
54
|
$pivotgrid-configurator-fields-margin-x: 0px !default;
|
|
55
55
|
$pivotgrid-configurator-fields-margin-y: ( $pivotgrid-spacer / 2 ) !default;
|
|
56
56
|
|
|
57
|
-
$pivotgrid-configurator-actions-padding-x: ( $pivotgrid-spacer / 2 ) !default;
|
|
58
|
-
$pivotgrid-configurator-actions-padding-y: ( $pivotgrid-spacer * .75 ) !default;
|
|
59
|
-
|
|
60
57
|
$pivotgrid-configurator-vertical-width: 320px !default;
|
|
61
58
|
$pivotgrid-configurator-horizontal-height: 420px !default;
|
|
62
59
|
|
|
File without changes
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@import "../icons/_index.scss";
|
|
7
7
|
@import "../adaptive/_index.scss";
|
|
8
8
|
@import "../button/_index.scss";
|
|
9
|
-
@import "../
|
|
9
|
+
@import "../datetimepicker/_index.scss";
|
|
10
10
|
@import "../dropdownlist/_index.scss";
|
|
11
11
|
@import "../dialog/_index.scss";
|
|
12
12
|
@import "../tooltip/_index.scss";
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
@import "../radio/_index.scss";
|
|
9
9
|
@import "../colorpicker/_index.scss";
|
|
10
10
|
@import "../combobox/_index.scss";
|
|
11
|
-
@import "../
|
|
11
|
+
@import "../datetimepicker/_index.scss";
|
|
12
12
|
@import "../dropdownlist/_index.scss";
|
|
13
13
|
@import "../toolbar/_index.scss";
|
|
14
14
|
@import "../upload/_index.scss";
|
|
File without changes
|
|
@@ -46,8 +46,6 @@ $taskboard-column-cards-padding-y: $taskboard-spacer * .25 !default;
|
|
|
46
46
|
$taskboard-column-cards-padding-x: 0px !default;
|
|
47
47
|
$taskboard-column-cards-gap: $taskboard-spacer * .75 !default;
|
|
48
48
|
|
|
49
|
-
$taskboard-column-new-calc-height: calc( #{$kendo-input-calc-height} + #{$taskboard-column-header-padding-y * 2} ) !default;
|
|
50
|
-
|
|
51
49
|
$taskboard-pane-width: $taskboard-column-width !default;
|
|
52
50
|
$taskboard-pane-padding-y: null !default;
|
|
53
51
|
$taskboard-pane-padding-x: null !default;
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
// Dependencies
|
|
5
|
-
@import "../common/_index.scss";
|
|
6
5
|
@import "../input/_index.scss";
|
|
7
|
-
@import "../
|
|
6
|
+
@import "../button/_index.scss";
|
|
8
7
|
@import "../popup/_index.scss";
|
|
9
|
-
@import "../
|
|
8
|
+
@import "../list/_index.scss";
|
|
9
|
+
@import "../timeselector/_index.scss";
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
// Component
|
|
@@ -1 +1 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Time picker
|
|
@@ -2,12 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
// Dependencies
|
|
5
|
-
@import "../
|
|
5
|
+
@import "../list/_index.scss";
|
|
6
6
|
@import "../action-buttons/_index.scss";
|
|
7
|
-
@import "../
|
|
8
|
-
@import "../floating-label/_index.scss";
|
|
9
|
-
@import "../calendar/_index.scss";
|
|
10
|
-
@import "../popup/_index.scss";
|
|
7
|
+
@import "../button/_index.scss";
|
|
11
8
|
|
|
12
9
|
|
|
13
10
|
// Component
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/timeselector/_layout.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/timeselector/_theme.scss";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// Time selector
|
|
2
|
+
$time-selector-border-width: 1px !default;
|
|
3
|
+
$time-selector-font-family: $font-family !default;
|
|
4
|
+
$time-selector-font-size: $font-size !default;
|
|
5
|
+
$time-selector-line-height: $line-height !default;
|
|
6
|
+
|
|
7
|
+
$time-selector-bg: $component-bg !default;
|
|
8
|
+
$time-selector-text: $component-text !default;
|
|
9
|
+
$time-selector-border: $component-border !default;
|
|
10
|
+
|
|
11
|
+
$time-selector-header-padding-x: map-get( $spacing, 1 ) !default;
|
|
12
|
+
$time-selector-header-padding-y: map-get( $spacing, 1 ) !default;
|
|
13
|
+
$time-selector-header-border-width: 0px !default;
|
|
14
|
+
|
|
15
|
+
$time-list-width: 4em !default;
|
|
16
|
+
$time-list-height: 240px !default;
|
|
17
|
+
|
|
18
|
+
$time-list-title-font-size: $font-size-sm !default;
|
|
19
|
+
$time-list-title-line-height: 1.5 !default;
|
|
20
|
+
$time-list-title-height: ( $time-list-title-font-size * $time-list-title-line-height) !default;
|
|
21
|
+
$time-list-title-text: $subtle-text !default;
|
|
22
|
+
$time-list-title-focus-text: $component-text !default;
|
|
23
|
+
|
|
24
|
+
$time-list-item-padding-x: $kendo-list-item-padding-x-md !default;
|
|
25
|
+
$time-list-item-padding-y: $kendo-list-item-padding-y-md !default;
|
|
26
|
+
|
|
27
|
+
$time-list-highlight-border-width: 1px 0px !default;
|
|
28
|
+
$time-list-highlight-height: calc( #{$time-selector-font-size * $time-selector-line-height} + #{ $time-list-item-padding-y * 2} ) !default;
|
|
29
|
+
$time-list-highlight-bg: $component-bg !default;
|
|
30
|
+
$time-list-highlight-border: $component-border !default;
|
|
31
|
+
|
|
32
|
+
$time-list-focused-bg: rgba(0, 0, 0, .02) !default;
|
|
@@ -6,19 +6,17 @@
|
|
|
6
6
|
// Base
|
|
7
7
|
.k-treeview {
|
|
8
8
|
|
|
9
|
-
.k-top,
|
|
10
|
-
.k-mid,
|
|
11
|
-
.k-bot {
|
|
9
|
+
.k-treeview-top,
|
|
10
|
+
.k-treeview-mid,
|
|
11
|
+
.k-treeview-bot {
|
|
12
12
|
padding-top: 2px;
|
|
13
13
|
padding-bottom: 2px;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
// Item
|
|
18
|
-
.k-
|
|
18
|
+
.k-treeview-leaf {
|
|
19
19
|
transition: $transition;
|
|
20
20
|
}
|
|
21
|
-
|
|
22
21
|
}
|
|
23
|
-
|
|
24
22
|
}
|