@progress/kendo-theme-bootstrap 5.0.0-alpha.1 → 5.0.0-beta.1
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 +7977 -10305
- package/dist/all.scss +13037 -13502
- package/package.json +3 -3
- package/scss/_variables.scss +0 -19
- package/scss/all.scss +1 -154
- package/scss/autocomplete/_index.scss +1 -0
- package/scss/autocomplete/_variables.scss +0 -5
- package/scss/avatar/_variables.scss +18 -8
- package/scss/button/_index.scss +2 -0
- package/scss/button/_variables.scss +8 -6
- package/scss/calendar/_index.scss +1 -0
- package/scss/chat/_variables.scss +0 -8
- package/scss/checkbox/_index.scss +2 -1
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/chip/_variables.scss +127 -191
- package/scss/colorpicker/_variables.scss +0 -2
- package/scss/combobox/_index.scss +1 -0
- package/scss/combobox/_variables.scss +0 -2
- package/scss/dataviz/_index.scss +1 -0
- package/scss/dateinput/_index.scss +15 -0
- package/scss/dateinput/_layout.scss +1 -0
- package/scss/dateinput/_theme.scss +1 -0
- package/scss/dateinput/_variables.scss +1 -0
- package/scss/datepicker/_index.scss +15 -0
- package/scss/datepicker/_layout.scss +1 -0
- package/scss/datepicker/_theme.scss +1 -0
- package/scss/datepicker/_variables.scss +1 -0
- package/scss/daterangepicker/_index.scss +15 -0
- package/scss/daterangepicker/_layout.scss +1 -0
- package/scss/daterangepicker/_theme.scss +1 -0
- package/scss/daterangepicker/_variables.scss +1 -0
- package/scss/datetime/_layout.scss +0 -20
- package/scss/datetimepicker/_index.scss +15 -0
- package/scss/datetimepicker/_layout.scss +1 -0
- package/scss/datetimepicker/_theme.scss +1 -0
- package/scss/datetimepicker/_variables.scss +1 -0
- package/scss/drawer/_index.scss +1 -0
- package/scss/dropdownlist/_index.scss +1 -0
- package/scss/editor/_variables.scss +1 -1
- package/scss/expansion-panel/_index.scss +1 -0
- package/scss/expansion-panel/_variables.scss +2 -2
- package/scss/forms/_index.scss +1 -1
- package/scss/grid/_index.scss +1 -0
- package/scss/grid/_theme.scss +12 -12
- package/scss/grid/_variables.scss +2 -2
- package/scss/index.scss +156 -0
- package/scss/input/_index.scss +1 -1
- package/scss/input/_variables.scss +33 -17
- package/scss/list/_index.scss +11 -0
- package/scss/list/_layout.scss +1 -0
- package/scss/list/_theme.scss +21 -0
- package/scss/list/_variables.scss +248 -0
- package/scss/listbox/_index.scss +2 -0
- package/scss/menu/_index.scss +2 -0
- package/scss/menu/_variables.scss +113 -34
- package/scss/multiselect/_index.scss +2 -0
- package/scss/multiselect/_layout.scss +0 -16
- package/scss/multiselect/_variables.scss +0 -36
- package/scss/pager/_index.scss +1 -0
- package/scss/panelbar/_index.scss +1 -0
- package/scss/panelbar/_variables.scss +2 -2
- package/scss/pivotgrid/_index.scss +1 -0
- package/scss/pivotgrid/_theme.scss +1 -2
- package/scss/pivotgrid/_variables.scss +1 -1
- package/scss/popup/_index.scss +0 -4
- package/scss/popup/_layout.scss +5 -21
- package/scss/popup/_theme.scss +0 -88
- package/scss/popup/_variables.scss +2 -7
- package/scss/radio/_index.scss +2 -0
- package/scss/radio/_variables.scss +1 -1
- package/scss/spreadsheet/_index.scss +1 -0
- package/scss/spreadsheet/_theme.scss +6 -6
- package/scss/table/_index.scss +19 -0
- package/scss/table/_layout.scss +1 -0
- package/scss/table/_theme.scss +1 -0
- package/scss/table/_variables.scss +141 -0
- package/scss/tabstrip/_index.scss +1 -0
- package/scss/tabstrip/_variables.scss +3 -3
- package/scss/timepicker/_index.scss +15 -0
- package/scss/timepicker/_layout.scss +1 -0
- package/scss/timepicker/_theme.scss +1 -0
- package/scss/timepicker/_variables.scss +1 -0
- package/scss/window/_theme.scss +0 -8
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
// Table
|
|
2
|
+
|
|
3
|
+
/// The width of the table border.
|
|
4
|
+
/// @group table
|
|
5
|
+
$kendo-table-border-width: 1px !default;
|
|
6
|
+
/// The width of vertical border of table cells.
|
|
7
|
+
/// @group table
|
|
8
|
+
$kendo-table-cell-vertical-border-width: $grid-cell-vertical-border-width !default;
|
|
9
|
+
/// The width of horizontal border of table cells.
|
|
10
|
+
/// @group table
|
|
11
|
+
$kendo-table-cell-horizontal-border-width: $grid-cell-horizontal-border-width !default;
|
|
12
|
+
|
|
13
|
+
/// The font size of the table if no size is specified.
|
|
14
|
+
/// @group table
|
|
15
|
+
$kendo-table-font-size: null !default;
|
|
16
|
+
|
|
17
|
+
/// The line-height of the table if no size is specified.
|
|
18
|
+
/// @group table
|
|
19
|
+
$kendo-table-line-height: null !default;
|
|
20
|
+
|
|
21
|
+
/// The horizontal padding of the cells in the table if no size is specified.
|
|
22
|
+
/// @group table
|
|
23
|
+
$kendo-table-cell-padding-x: null !default;
|
|
24
|
+
|
|
25
|
+
/// The vertical padding of the cells in the table if no size is specified.
|
|
26
|
+
/// @group table
|
|
27
|
+
$kendo-table-cell-padding-y: null !default;
|
|
28
|
+
|
|
29
|
+
/// The sizes of the table.
|
|
30
|
+
/// @group table
|
|
31
|
+
$kendo-table-sizes: (
|
|
32
|
+
sm: (
|
|
33
|
+
font-size: $font-size,
|
|
34
|
+
line-height: $line-height,
|
|
35
|
+
cell-padding-x: map-get( $spacing, 1 ),
|
|
36
|
+
cell-padding-y: map-get( $spacing, 1 )
|
|
37
|
+
),
|
|
38
|
+
md: (
|
|
39
|
+
font-size: $font-size,
|
|
40
|
+
line-height: $line-height,
|
|
41
|
+
cell-padding-x: map-get( $spacing, 2 ),
|
|
42
|
+
cell-padding-y: map-get( $spacing, 2 )
|
|
43
|
+
),
|
|
44
|
+
lg: (
|
|
45
|
+
font-size: $font-size,
|
|
46
|
+
line-height: $line-height,
|
|
47
|
+
cell-padding-x: map-get( $spacing, 3 ),
|
|
48
|
+
cell-padding-y: map-get( $spacing, 3 )
|
|
49
|
+
)
|
|
50
|
+
) !default;
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
/// Background color of tables.
|
|
54
|
+
/// @group table
|
|
55
|
+
$kendo-table-bg: $grid-bg !default;
|
|
56
|
+
/// Text color of tables.
|
|
57
|
+
/// @group table
|
|
58
|
+
$kendo-table-text: $grid-text !default;
|
|
59
|
+
/// Border color of tables.
|
|
60
|
+
/// @group table
|
|
61
|
+
$kendo-table-border: $grid-border !default;
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
/// Background color of table headers.
|
|
65
|
+
/// @group table
|
|
66
|
+
$kendo-table-header-bg: $grid-header-bg !default;
|
|
67
|
+
/// Text color of table headers.
|
|
68
|
+
/// @group table
|
|
69
|
+
$kendo-table-header-text: $grid-header-text !default;
|
|
70
|
+
/// Border color of table headers.
|
|
71
|
+
/// @group table
|
|
72
|
+
$kendo-table-header-border: $grid-header-border !default;
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
/// Background color of table footers.
|
|
76
|
+
/// @group table
|
|
77
|
+
$kendo-table-footer-bg: $grid-footer-bg !default;
|
|
78
|
+
/// Text color of table footers.
|
|
79
|
+
/// @group table
|
|
80
|
+
$kendo-table-footer-text: $grid-footer-text !default;
|
|
81
|
+
/// Border color of table footers.
|
|
82
|
+
/// @group table
|
|
83
|
+
$kendo-table-footer-border: $grid-footer-border !default;
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
/// Background color of group rows in table.
|
|
87
|
+
/// @group table
|
|
88
|
+
$kendo-table-group-row-bg: $grid-grouping-row-bg !default;
|
|
89
|
+
/// Text color of group rows in table.
|
|
90
|
+
/// @group table
|
|
91
|
+
$kendo-table-group-row-text: $grid-grouping-row-text !default;
|
|
92
|
+
/// Border color of group rows in table.
|
|
93
|
+
/// @group table
|
|
94
|
+
$kendo-table-group-row-border: null !default;
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
/// Background color of alternating rows in table.
|
|
98
|
+
/// @group table
|
|
99
|
+
$kendo-table-alt-row-bg: $grid-alt-bg !default;
|
|
100
|
+
/// Text color of alternating rows in table.
|
|
101
|
+
/// @group table
|
|
102
|
+
$kendo-table-alt-row-text: $grid-alt-text !default;
|
|
103
|
+
/// Border color of alternating rows in table.
|
|
104
|
+
/// @group table
|
|
105
|
+
$kendo-table-alt-row-border: $grid-alt-border !default;
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
/// Background color of hovered rows in table.
|
|
109
|
+
/// @group table
|
|
110
|
+
$kendo-table-hover-bg: $grid-hovered-bg !default;
|
|
111
|
+
/// Text color of hovered rows in table.
|
|
112
|
+
/// @group table
|
|
113
|
+
$kendo-table-hover-text: $grid-hovered-text !default;
|
|
114
|
+
/// Border color of hovered rows in table.
|
|
115
|
+
/// @group table
|
|
116
|
+
$kendo-table-hover-border: $grid-hovered-border !default;
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
/// Background color of focused rows in table.
|
|
120
|
+
/// @group table
|
|
121
|
+
$kendo-table-focus-bg: null !default;
|
|
122
|
+
/// Text color of focused rows in table.
|
|
123
|
+
/// @group table
|
|
124
|
+
$kendo-table-focus-text: null !default;
|
|
125
|
+
/// Border color of focused rows in table.
|
|
126
|
+
/// @group table
|
|
127
|
+
$kendo-table-focus-border: null !default;
|
|
128
|
+
/// Box shadow of focused rows in table.
|
|
129
|
+
/// @group table
|
|
130
|
+
$kendo-table-focus-shadow: $grid-focused-shadow !default;
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
/// Background color of selected rows in table.
|
|
134
|
+
/// @group table
|
|
135
|
+
$kendo-table-selected-bg: $grid-selected-bg !default;
|
|
136
|
+
/// Text color of selected rows in table.
|
|
137
|
+
/// @group table
|
|
138
|
+
$kendo-table-selected-text: $grid-selected-text !default;
|
|
139
|
+
/// Border color of selected rows in table.
|
|
140
|
+
/// @group table
|
|
141
|
+
$kendo-table-selected-border: $grid-selected-border !default;
|
|
@@ -77,7 +77,7 @@ $tabstrip-item-selected-border: $component-border !default;
|
|
|
77
77
|
/// @group tabstrip
|
|
78
78
|
$tabstrip-item-selected-gradient: null !default;
|
|
79
79
|
|
|
80
|
-
$tabstrip-item-focused-shadow: $list-item-
|
|
80
|
+
$tabstrip-item-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
81
81
|
|
|
82
82
|
$tabstrip-item-dragging-shadow: 0px 3px 4px rgba(0, 0, 0, .15) !default;
|
|
83
83
|
|
|
@@ -86,10 +86,10 @@ $tabstrip-indicator-color: null !default;
|
|
|
86
86
|
|
|
87
87
|
/// Horizontal padding of tabstrip content
|
|
88
88
|
/// @group tabstrip
|
|
89
|
-
$tabstrip-content-padding-x:
|
|
89
|
+
$tabstrip-content-padding-x: map-get( $spacing, 4 ) !default;
|
|
90
90
|
/// Vertical padding of tabstrip content
|
|
91
91
|
/// @group tabstrip
|
|
92
|
-
$tabstrip-content-padding-y:
|
|
92
|
+
$tabstrip-content-padding-y: map-get( $spacing, 4 ) !default;
|
|
93
93
|
/// Width of border around tabstrip content
|
|
94
94
|
/// @group tabstrip
|
|
95
95
|
$tabstrip-content-border-width: $tabstrip-border-width !default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@import "../core/_index.scss";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
// Dependencies
|
|
5
|
+
@import "../common/_index.scss";
|
|
6
|
+
@import "../input/_index.scss";
|
|
7
|
+
@import "../floating-label/_index.scss";
|
|
8
|
+
@import "../popup/_index.scss";
|
|
9
|
+
@import "../icons/_index.scss";
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
// Component
|
|
13
|
+
@import "_variables.scss";
|
|
14
|
+
@import "_layout.scss";
|
|
15
|
+
@import "_theme.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/timepicker/_layout.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "~@progress/kendo-theme-default/scss/timepicker/_theme.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Timepicker
|