@progress/kendo-theme-classic 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 +814 -626
- package/dist/all.scss +960 -719
- package/package.json +3 -3
- package/scss/chip/_index.scss +1 -0
- package/scss/chip/_variables.scss +11 -11
- 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/filter/_index.scss +1 -1
- package/scss/gantt/_index.scss +1 -1
- package/scss/grid/_index.scss +1 -1
- package/scss/index.scss +1 -1
- package/scss/input/_variables.scss +16 -26
- package/scss/panelbar/_variables.scss +5 -0
- package/scss/pivotgrid/_variables.scss +0 -3
- package/scss/scheduler/_index.scss +1 -1
- package/scss/spreadsheet/_index.scss +1 -1
- 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/_variables.scss +142 -46
- package/scss/utils/_border.scss +1 -2
- package/scss/datetime/_layout.scss +0 -1
- package/scss/datetime/_theme.scss +0 -1
- package/scss/datetime/_variables.scss +0 -53
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
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,7 +49,7 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for classic 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
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "13e32ba172a1fa6fc172c9d989974ebfccef19e6"
|
|
55
55
|
}
|
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 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": $
|
|
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 of the chip.
|
|
57
|
-
/// @group chip
|
|
58
|
-
$kendo-chip-base-bg: $component-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;
|
|
@@ -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: null !default;
|
|
17
|
-
$colorpicker-focused-text: null !default;
|
|
18
|
-
$colorpicker-focused-border: null !default;
|
|
19
|
-
$colorpicker-focused-gradient: null !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;
|
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";
|
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: 1px !default;
|
|
3
5
|
$kendo-input-border-height: ( $kendo-input-border-width * 2 ) !default;
|
|
4
|
-
$kendo-input-border-radius:
|
|
5
|
-
$kendo-input-border-radius-sm: $border-radius !default;
|
|
6
|
-
$kendo-input-border-radius-lg: $border-radius !default;
|
|
6
|
+
$kendo-input-border-radius: null !default;
|
|
7
7
|
|
|
8
8
|
$kendo-input-padding-x: $padding-x !default;
|
|
9
9
|
$kendo-input-padding-y: $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: $line-height !default;
|
|
13
|
-
$kendo-input-line-height-em: $kendo-input-line-height * 1em !default;
|
|
14
13
|
|
|
15
14
|
$kendo-input-padding-x-sm: ($kendo-input-padding-x / 2) !default;
|
|
16
15
|
$kendo-input-padding-y-sm: ($kendo-input-padding-y / 2) !default;
|
|
17
|
-
$kendo-input-font-size-sm: $
|
|
18
|
-
$kendo-input-line-height-sm: $line-height-
|
|
16
|
+
$kendo-input-font-size-sm: $font-size !default;
|
|
17
|
+
$kendo-input-line-height-sm: $line-height-md !default;
|
|
19
18
|
|
|
20
19
|
$kendo-input-padding-x-md: $kendo-input-padding-x !default;
|
|
21
20
|
$kendo-input-padding-y-md: $kendo-input-padding-y !default;
|
|
22
|
-
$kendo-input-font-size-md: $
|
|
23
|
-
$kendo-input-line-height-md: $
|
|
21
|
+
$kendo-input-font-size-md: $font-size !default;
|
|
22
|
+
$kendo-input-line-height-md: $line-height-md !default;
|
|
24
23
|
|
|
25
24
|
$kendo-input-padding-x-lg: ($kendo-input-padding-x * 1.5) !default;
|
|
26
25
|
$kendo-input-padding-y-lg: ($kendo-input-padding-y * 1.5) !default;
|
|
27
|
-
$kendo-input-font-size-lg: $
|
|
28
|
-
$kendo-input-line-height-lg: $line-height-
|
|
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;
|
|
26
|
+
$kendo-input-font-size-lg: $font-size !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: 0px !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;
|
|
@@ -95,3 +95,8 @@ $panelbar-item-selected-hovered-focused-bg: null !default;
|
|
|
95
95
|
$panelbar-item-selected-hovered-focused-text: null !default;
|
|
96
96
|
$panelbar-item-selected-hovered-focused-border: null !default;
|
|
97
97
|
$panelbar-item-selected-hovered-focused-gradient: null !default;
|
|
98
|
+
|
|
99
|
+
$panelbar-header-expanded-bg: null !default;
|
|
100
|
+
$panelbar-header-expanded-text: null !default;
|
|
101
|
+
$panelbar-header-expanded-border: null !default;
|
|
102
|
+
$panelbar-header-expanded-gradient: null !default;
|
|
@@ -54,9 +54,6 @@ $pivotgrid-configurator-content-padding-y: 0px !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
|
|
|
@@ -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";
|
|
@@ -46,8 +46,6 @@ $taskboard-column-cards-padding-y: null !default;
|
|
|
46
46
|
$taskboard-column-cards-padding-x: null !default;
|
|
47
47
|
$taskboard-column-cards-gap: ( $taskboard-spacer / 2 ) !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, .04) !default;
|
|
@@ -1,47 +1,143 @@
|
|
|
1
1
|
// Treeview
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
$treeview-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
$treeview-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
$treeview-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
$treeview-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
$treeview-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
2
|
+
|
|
3
|
+
/// The sizes of the treeview.
|
|
4
|
+
/// @group treeview
|
|
5
|
+
$kendo-treeview-sizes: (
|
|
6
|
+
sm: (
|
|
7
|
+
font-size: map-get( $spacing, 3),
|
|
8
|
+
line-height: $line-height,
|
|
9
|
+
item-padding-x: map-get( $spacing, thin ),
|
|
10
|
+
item-padding-y: map-get( $spacing, 1 )
|
|
11
|
+
),
|
|
12
|
+
md: (
|
|
13
|
+
font-size: $font-size,
|
|
14
|
+
line-height: $line-height,
|
|
15
|
+
item-padding-x: map-get( $spacing, 1 ),
|
|
16
|
+
item-padding-y: map-get( $spacing, 2 )
|
|
17
|
+
),
|
|
18
|
+
lg: (
|
|
19
|
+
font-size: map-get( $spacing, 4),
|
|
20
|
+
line-height: $line-height,
|
|
21
|
+
item-padding-x: map-get( $spacing, 2 ),
|
|
22
|
+
item-padding-y: map-get( $spacing, 3 )
|
|
23
|
+
)
|
|
24
|
+
) !default;
|
|
25
|
+
|
|
26
|
+
/// The horizontal padding of the treeview.
|
|
27
|
+
/// @group treeview
|
|
28
|
+
$kendo-treeview-padding-x: 0px !default;
|
|
29
|
+
/// The vertical padding of the treeview.
|
|
30
|
+
/// @group treeview
|
|
31
|
+
$kendo-treeview-padding-y: 0px !default;
|
|
32
|
+
/// The font family of the treeview.
|
|
33
|
+
/// @group treeview
|
|
34
|
+
$kendo-treeview-font-family: $font-family !default;
|
|
35
|
+
/// The font size of the treeview.
|
|
36
|
+
/// @group treeview
|
|
37
|
+
$kendo-treeview-font-size: $font-size !default;
|
|
38
|
+
/// The line height of the treeview.
|
|
39
|
+
/// @group treeview
|
|
40
|
+
$kendo-treeview-line-height: $line-height !default;
|
|
41
|
+
|
|
42
|
+
/// The indent of the treeview item.
|
|
43
|
+
/// @group treeview
|
|
44
|
+
$kendo-treeview-indent: 16px !default;
|
|
45
|
+
|
|
46
|
+
/// The horizontal padding of the treeview item.
|
|
47
|
+
/// @group treeview
|
|
48
|
+
$kendo-treeview-item-padding-x: $nav-item-padding-x !default;
|
|
49
|
+
/// The vertical padding of the treeview item.
|
|
50
|
+
/// @group treeview
|
|
51
|
+
$kendo-treeview-item-padding-y: $nav-item-padding-y !default;
|
|
52
|
+
/// The border width of the treeview item.
|
|
53
|
+
/// @group treeview
|
|
54
|
+
$kendo-treeview-item-border-width: 0px !default;
|
|
55
|
+
/// The border radius of the treeview item.
|
|
56
|
+
/// @group treeview
|
|
57
|
+
$kendo-treeview-item-border-radius: $border-radius !default;
|
|
58
|
+
|
|
59
|
+
/// The background of the treeview.
|
|
60
|
+
/// @group treeview
|
|
61
|
+
$kendo-treeview-bg: null !default;
|
|
62
|
+
/// The text color of the treeview.
|
|
63
|
+
/// @group treeview
|
|
64
|
+
$kendo-treeview-text: $component-text !default;
|
|
65
|
+
/// The border color of the treeview.
|
|
66
|
+
/// @group treeview
|
|
67
|
+
$kendo-treeview-border: null !default;
|
|
68
|
+
|
|
69
|
+
/// The background of a hovered treeview item.
|
|
70
|
+
/// @group treeview
|
|
71
|
+
$kendo-treeview-item-hovered-bg: $hovered-bg !default;
|
|
72
|
+
/// The text color of a hovered treeview item.
|
|
73
|
+
/// @group treeview
|
|
74
|
+
$kendo-treeview-item-hovered-text: $hovered-text !default;
|
|
75
|
+
/// The border of a hovered treeview item.
|
|
76
|
+
/// @group treeview
|
|
77
|
+
$kendo-treeview-item-hovered-border: $hovered-border !default;
|
|
78
|
+
/// The gradient of a hovered treeview item.
|
|
79
|
+
/// @group treeview
|
|
80
|
+
$kendo-treeview-item-hovered-gradient: $hovered-gradient !default;
|
|
81
|
+
|
|
82
|
+
/// The background of a selected treeview item.
|
|
83
|
+
/// @group treeview
|
|
84
|
+
$kendo-treeview-item-selected-bg: $selected-bg !default;
|
|
85
|
+
/// The text color of a selected treeview item.
|
|
86
|
+
/// @group treeview
|
|
87
|
+
$kendo-treeview-item-selected-text: $selected-text !default;
|
|
88
|
+
/// The border of a selected treeview item.
|
|
89
|
+
/// @group treeview
|
|
90
|
+
$kendo-treeview-item-selected-border: $selected-border !default;
|
|
91
|
+
/// The gradient of a selected treeview item.
|
|
92
|
+
/// @group treeview
|
|
93
|
+
$kendo-treeview-item-selected-gradient: $selected-gradient !default;
|
|
94
|
+
|
|
95
|
+
/// The shadow of a focused treeview item.
|
|
96
|
+
/// @group treeview
|
|
97
|
+
$kendo-treeview-item-focused-shadow: $focused-shadow !default;
|
|
98
|
+
/// The shadow of a selected and focused treeview item.
|
|
99
|
+
/// @group treeview
|
|
100
|
+
$kendo-treeview-item-selected-focused-shadow: null !default;
|
|
101
|
+
|
|
102
|
+
/// The horizontal padding of the load more checkboxes.
|
|
103
|
+
/// @group treeview
|
|
104
|
+
$kendo-treeview-loadmore-checkboxes-padding-x: calc( #{$icon-spacing} + #{map-get( $kendo-checkbox-sizes, "md" )} + #{$kendo-treeview-indent} ) !default;
|
|
105
|
+
/// The icon indent of the load more checkboxes.
|
|
106
|
+
/// @group treeview
|
|
107
|
+
$kendo-treeview-loadmore-checkboxes-icon-indent: calc( -1 * (#{$icon-spacing} + #{$kendo-treeview-indent}) ) !default;
|
|
108
|
+
/// The horizontal margin of the load more checkboxes.
|
|
109
|
+
/// @group treeview
|
|
110
|
+
$kendo-treeview-loadmore-checkboxes-icon-margin-x: $icon-spacing !default;
|
|
111
|
+
|
|
112
|
+
/// The background of load more.
|
|
113
|
+
/// @group treeview
|
|
114
|
+
$kendo-treeview-loadmore-bg: transparent !default;
|
|
115
|
+
/// The text color of load more.
|
|
116
|
+
/// @group treeview
|
|
117
|
+
$kendo-treeview-loadmore-text: $primary !default;
|
|
118
|
+
/// The border of load more.
|
|
119
|
+
/// @group treeview
|
|
120
|
+
$kendo-treeview-loadmore-border: null !default;
|
|
121
|
+
|
|
122
|
+
/// The background of a hovered load more.
|
|
123
|
+
/// @group treeview
|
|
124
|
+
$kendo-treeview-loadmore-hover-bg: transparent !default;
|
|
125
|
+
/// The text color of a hovered load more.
|
|
126
|
+
/// @group treeview
|
|
127
|
+
$kendo-treeview-loadmore-hover-text: $primary-darker !default;
|
|
128
|
+
/// The border of a hovered load more.
|
|
129
|
+
/// @group treeview
|
|
130
|
+
$kendo-treeview-loadmore-hover-border: null !default;
|
|
131
|
+
|
|
132
|
+
/// The background of a focused load more.
|
|
133
|
+
/// @group treeview
|
|
134
|
+
$kendo-treeview-loadmore-focus-bg: transparent !default;
|
|
135
|
+
/// The text color of a focused load more.
|
|
136
|
+
/// @group treeview
|
|
137
|
+
$kendo-treeview-loadmore-focus-text: $primary !default;
|
|
138
|
+
/// The border of a focused load more.
|
|
139
|
+
/// @group treeview
|
|
140
|
+
$kendo-treeview-loadmore-focus-border: null !default;
|
|
141
|
+
/// The shadow of a focused load more.
|
|
142
|
+
/// @group treeview
|
|
143
|
+
$kendo-treeview-loadmore-focus-shadow: none !default;
|