@progress/kendo-theme-material 5.0.0-beta.2 → 5.0.0-beta.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/README.md +5 -8
- package/dist/all.css +2678 -2972
- package/dist/all.scss +4147 -3926
- package/dist/material-dataviz-v4.scss +8 -0
- package/lib/swatches/material-dataviz-v4.json +51 -0
- package/package.json +3 -3
- package/scss/appbar/_variables.scss +1 -1
- package/scss/autocomplete/_variables.scss +0 -19
- package/scss/button/_layout.scss +26 -14
- package/scss/button/_theme.scss +28 -120
- package/scss/button/_variables.scss +55 -30
- package/scss/chat/_variables.scss +0 -7
- package/scss/checkbox/_index.scss +1 -1
- package/scss/checkbox/_theme.scss +2 -9
- package/scss/checkbox/_variables.scss +68 -73
- package/scss/chip/_variables.scss +32 -17
- package/scss/coloreditor/_variables.scss +3 -3
- package/scss/combobox/_variables.scss +1 -31
- package/scss/dataviz/_variables.scss +4 -4
- package/scss/fab/_theme.scss +42 -46
- package/scss/fab/_variables.scss +129 -73
- package/scss/fab/index.md +0 -0
- package/scss/filter/_variables.scss +1 -1
- package/scss/grid/_layout.scss +0 -8
- package/scss/grid/_variables.scss +7 -7
- package/scss/imageeditor/_variables.scss +1 -0
- package/scss/index.scss +1 -0
- package/scss/input/_variables.scss +42 -18
- package/scss/list/_index.scss +1 -0
- package/scss/list/_variables.scss +27 -27
- package/scss/listbox/_variables.scss +5 -5
- package/scss/menu/_variables.scss +55 -46
- package/scss/orgchart/_variables.scss +2 -2
- package/scss/pager/_variables.scss +1 -1
- package/scss/pdf-viewer/_variables.scss +2 -5
- package/scss/pivotgrid/_layout.scss +0 -49
- package/scss/pivotgrid/_theme.scss +0 -139
- package/scss/radio/_index.scss +1 -1
- package/scss/radio/_theme.scss +2 -9
- package/scss/radio/_variables.scss +69 -88
- package/scss/scheduler/_layout.scss +0 -16
- package/scss/switch/_variables.scss +3 -6
- package/scss/table/_variables.scss +9 -9
- package/scss/toolbar/_index.scss +1 -0
- package/scss/toolbar/_layout.scss +17 -1
- package/scss/toolbar/_theme.scss +12 -0
- package/scss/toolbar/_variables.scss +2 -0
- package/scss/treeview/_theme.scss +31 -26
- package/scss/treeview/_variables.scss +68 -85
- package/scss/virtual-scroller/_index.scss +10 -0
- package/scss/virtual-scroller/_layout.scss +1 -0
- package/scss/virtual-scroller/_theme.scss +1 -0
- package/scss/virtual-scroller/_variables.scss +1 -0
|
@@ -33,7 +33,7 @@ $menu-item-expanded-gradient: null !default;
|
|
|
33
33
|
|
|
34
34
|
$menu-item-focus-shadow: null !default;
|
|
35
35
|
|
|
36
|
-
$menu-separator-spacing:
|
|
36
|
+
$menu-separator-spacing: map-get( $spacing, 1 ) !default;
|
|
37
37
|
|
|
38
38
|
$menu-scroll-button-bg: $component-bg !default;
|
|
39
39
|
$menu-scroll-button-text: $subtle-text !default;
|
|
@@ -49,114 +49,123 @@ $menu-scroll-button-hover-gradient: null !default;
|
|
|
49
49
|
// Menu popup
|
|
50
50
|
|
|
51
51
|
/// Horizontal padding of the menu popup.
|
|
52
|
-
/// @group menu
|
|
52
|
+
/// @group menu
|
|
53
53
|
$kendo-menu-popup-padding-x: null !default;
|
|
54
54
|
|
|
55
55
|
/// Vertical padding of the menu popup.
|
|
56
|
-
/// @group menu
|
|
56
|
+
/// @group menu
|
|
57
57
|
$kendo-menu-popup-padding-y: null !default;
|
|
58
58
|
|
|
59
59
|
/// Width of the border around the menu popup.
|
|
60
|
-
/// @group menu
|
|
60
|
+
/// @group menu
|
|
61
61
|
$kendo-menu-popup-border-width: $popup-border-width !default;
|
|
62
62
|
|
|
63
63
|
/// Font sizes of the menu popup.
|
|
64
|
-
/// @group menu
|
|
65
|
-
$kendo-menu-popup-font-size: $font-size !default;
|
|
66
|
-
$kendo-menu-popup-font-size-sm: $font-size-
|
|
67
|
-
$kendo-menu-popup-font-size-md: $font-size !default;
|
|
64
|
+
/// @group menu
|
|
65
|
+
$kendo-menu-popup-font-size: $font-size-lg !default;
|
|
66
|
+
$kendo-menu-popup-font-size-sm: $font-size-lg !default;
|
|
67
|
+
$kendo-menu-popup-font-size-md: $font-size-lg !default;
|
|
68
68
|
$kendo-menu-popup-font-size-lg: $font-size-lg !default;
|
|
69
69
|
|
|
70
70
|
/// Line heights used along with $font-size.
|
|
71
|
-
/// @group menu
|
|
72
|
-
$kendo-menu-popup-line-height:
|
|
73
|
-
$kendo-menu-popup-line-height-sm:
|
|
74
|
-
$kendo-menu-popup-line-height-md:
|
|
75
|
-
$kendo-menu-popup-line-height-lg:
|
|
71
|
+
/// @group menu
|
|
72
|
+
$kendo-menu-popup-line-height: 1.25 !default;
|
|
73
|
+
$kendo-menu-popup-line-height-sm: 1.25 !default;
|
|
74
|
+
$kendo-menu-popup-line-height-md: 1.25 !default;
|
|
75
|
+
$kendo-menu-popup-line-height-lg: 1.25 !default;
|
|
76
76
|
|
|
77
77
|
/// The background of the menu popup.
|
|
78
|
-
/// @group menu
|
|
78
|
+
/// @group menu
|
|
79
79
|
$kendo-menu-popup-bg: $popup-bg !default;
|
|
80
80
|
/// The text color of the menu popup.
|
|
81
|
-
/// @group menu
|
|
81
|
+
/// @group menu
|
|
82
82
|
$kendo-menu-popup-text: $popup-text !default;
|
|
83
83
|
/// The border color of the menu popup.
|
|
84
|
-
/// @group menu
|
|
84
|
+
/// @group menu
|
|
85
85
|
$kendo-menu-popup-border: $popup-border !default;
|
|
86
86
|
/// The background gradient of the menu popup.
|
|
87
|
-
/// @group menu
|
|
87
|
+
/// @group menu
|
|
88
88
|
$kendo-menu-popup-gradient: null !default;
|
|
89
89
|
|
|
90
90
|
|
|
91
91
|
// Menu popup item
|
|
92
92
|
|
|
93
93
|
/// Horizontal padding of the menu item in popup.
|
|
94
|
-
/// @group menu
|
|
95
|
-
$kendo-menu-popup-item-padding-x:
|
|
96
|
-
$kendo-menu-popup-item-padding-x-
|
|
97
|
-
$kendo-menu-popup-item-padding-x-
|
|
98
|
-
$kendo-menu-popup-item-padding-x-
|
|
99
|
-
$kendo-menu-popup-item-padding-x-lg: ( $kendo-menu-popup-item-padding-x-base * 1.25 ) !default;
|
|
100
|
-
|
|
94
|
+
/// @group menu
|
|
95
|
+
$kendo-menu-popup-item-padding-x: map-get( $spacing, 4 ) !default;
|
|
96
|
+
$kendo-menu-popup-item-padding-x-sm: map-get( $spacing, 4 ) !default;
|
|
97
|
+
$kendo-menu-popup-item-padding-x-md: map-get( $spacing, 4 ) !default;
|
|
98
|
+
$kendo-menu-popup-item-padding-x-lg: map-get( $spacing, 4 ) !default;
|
|
101
99
|
|
|
102
100
|
/// Vertical padding of the menu item in popup.
|
|
103
|
-
/// @group menu
|
|
104
|
-
$kendo-menu-popup-item-padding-y:
|
|
105
|
-
$kendo-menu-popup-item-padding-y-
|
|
106
|
-
$kendo-menu-popup-item-padding-y-
|
|
107
|
-
$kendo-menu-popup-item-padding-y-
|
|
108
|
-
$kendo-menu-popup-item-padding-y-lg: ( $kendo-menu-popup-item-padding-y-base * 1.25 ) !default;
|
|
101
|
+
/// @group menu
|
|
102
|
+
$kendo-menu-popup-item-padding-y: map-get( $spacing, 2 ) !default;
|
|
103
|
+
$kendo-menu-popup-item-padding-y-sm: map-get( $spacing, 2 ) - map-get( $spacing, thin ) !default;
|
|
104
|
+
$kendo-menu-popup-item-padding-y-md: map-get( $spacing, 2 ) !default;
|
|
105
|
+
$kendo-menu-popup-item-padding-y-lg: map-get( $spacing, 2 ) + map-get( $spacing, thin ) !default;
|
|
109
106
|
|
|
110
107
|
/// The end padding of the menu item in popup.
|
|
111
|
-
/// @group menu
|
|
112
|
-
$kendo-menu-popup-item-padding-end:
|
|
108
|
+
/// @group menu
|
|
109
|
+
$kendo-menu-popup-item-padding-end: calc( #{$kendo-menu-popup-item-padding-x * 2} + #{$icon-size} ) !default;
|
|
113
110
|
$kendo-menu-popup-item-padding-end-sm: calc( #{$kendo-menu-popup-item-padding-x-sm * 2} + #{$icon-size} ) !default;
|
|
114
111
|
$kendo-menu-popup-item-padding-end-md: calc( #{$kendo-menu-popup-item-padding-x-md * 2} + #{$icon-size} ) !default;
|
|
115
112
|
$kendo-menu-popup-item-padding-end-lg: calc( #{$kendo-menu-popup-item-padding-x-lg * 2} + #{$icon-size} ) !default;
|
|
116
113
|
|
|
114
|
+
/// The start margin of the menu item expand icon.
|
|
115
|
+
/// @group menu
|
|
116
|
+
$kendo-menu-popup-item-icon-margin-start-sm: $kendo-menu-popup-item-padding-x-sm !default;
|
|
117
|
+
$kendo-menu-popup-item-icon-margin-start: $kendo-menu-popup-item-padding-x-md !default;
|
|
118
|
+
$kendo-menu-popup-item-icon-margin-start-lg: $kendo-menu-popup-item-padding-x-lg !default;
|
|
119
|
+
|
|
120
|
+
/// The end margin of the menu item expand icon.
|
|
121
|
+
/// @group menu
|
|
122
|
+
$kendo-menu-popup-item-icon-margin-end-sm: calc( -1 * (#{$kendo-menu-popup-item-padding-end-sm} - #{$kendo-menu-popup-item-padding-x-sm / 2}) ) !default;
|
|
123
|
+
$kendo-menu-popup-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-item-padding-end-md} - #{$kendo-menu-popup-item-padding-x-md / 2}) ) !default;
|
|
124
|
+
$kendo-menu-popup-item-icon-margin-end-lg: calc( -1 * (#{$kendo-menu-popup-item-padding-end-lg} - #{$kendo-menu-popup-item-padding-x-lg / 2}) ) !default;
|
|
125
|
+
|
|
117
126
|
/// The spacing between the menu items in popup.
|
|
118
|
-
/// @group menu
|
|
127
|
+
/// @group menu
|
|
119
128
|
$kendo-menu-popup-item-spacing: 0px !default;
|
|
120
129
|
|
|
121
130
|
/// The background of the menu item in popup.
|
|
122
|
-
/// @group menu
|
|
131
|
+
/// @group menu
|
|
123
132
|
$kendo-menu-popup-item-bg: null !default;
|
|
124
133
|
/// The text color of the menu item in popup.
|
|
125
|
-
/// @group menu
|
|
134
|
+
/// @group menu
|
|
126
135
|
$kendo-menu-popup-item-text: null !default;
|
|
127
136
|
/// The border color of the menu item in popup.
|
|
128
|
-
/// @group menu
|
|
137
|
+
/// @group menu
|
|
129
138
|
$kendo-menu-popup-item-border: null !default;
|
|
130
139
|
/// The background gradient of the menu item in popup.
|
|
131
|
-
/// @group menu
|
|
140
|
+
/// @group menu
|
|
132
141
|
$kendo-menu-popup-item-gradient: null !default;
|
|
133
142
|
|
|
134
143
|
/// The background of hovered menu item in popup.
|
|
135
|
-
/// @group menu
|
|
144
|
+
/// @group menu
|
|
136
145
|
$kendo-menu-popup-item-hover-bg: $kendo-list-item-hover-bg !default;
|
|
137
146
|
/// The text color of hovered menu item in popup.
|
|
138
|
-
/// @group menu
|
|
147
|
+
/// @group menu
|
|
139
148
|
$kendo-menu-popup-item-hover-text: $kendo-list-item-hover-text !default;
|
|
140
149
|
/// The border color of hovered menu item in popup.
|
|
141
|
-
/// @group menu
|
|
150
|
+
/// @group menu
|
|
142
151
|
$kendo-menu-popup-item-hover-border: null !default;
|
|
143
152
|
/// The background gradient of hovered menu item in popup.
|
|
144
|
-
/// @group menu
|
|
153
|
+
/// @group menu
|
|
145
154
|
$kendo-menu-popup-item-hover-gradient: null !default;
|
|
146
155
|
|
|
147
156
|
/// The background of expanded menu item in popup.
|
|
148
|
-
/// @group menu
|
|
157
|
+
/// @group menu
|
|
149
158
|
$kendo-menu-popup-item-expanded-bg: $kendo-list-item-selected-bg !default;
|
|
150
159
|
/// The text color of expanded menu item in popup.
|
|
151
|
-
/// @group menu
|
|
160
|
+
/// @group menu
|
|
152
161
|
$kendo-menu-popup-item-expanded-text: $kendo-list-item-selected-text !default;
|
|
153
162
|
/// The border color of expanded menu item in popup.
|
|
154
|
-
/// @group menu
|
|
163
|
+
/// @group menu
|
|
155
164
|
$kendo-menu-popup-item-expanded-border: null !default;
|
|
156
165
|
/// The background gradient of expanded menu item in popup.
|
|
157
|
-
/// @group menu
|
|
166
|
+
/// @group menu
|
|
158
167
|
$kendo-menu-popup-item-expanded-gradient: null !default;
|
|
159
168
|
|
|
160
169
|
/// The base shadow of focused menu item in popup.
|
|
161
|
-
/// @group menu
|
|
170
|
+
/// @group menu
|
|
162
171
|
$kendo-menu-popup-item-focus-shadow: null !default;
|
|
@@ -40,10 +40,10 @@ $orgchart-card-shadow: none !default;
|
|
|
40
40
|
$orgchart-card-focus-shadow: $orgchart-node-group-focus-shadow !default;
|
|
41
41
|
|
|
42
42
|
$orgchart-card-title-margin-bottom: 0px !default;
|
|
43
|
-
$orgchart-card-title-font-size:
|
|
43
|
+
$orgchart-card-title-font-size: null !default;
|
|
44
44
|
|
|
45
45
|
$orgchart-card-subtitle-margin-bottom: 0px !default;
|
|
46
|
-
$orgchart-card-subtitle-font-size:
|
|
46
|
+
$orgchart-card-subtitle-font-size: null !default;
|
|
47
47
|
|
|
48
48
|
$orgchart-card-body-border-width: 2px 0 0 !default;
|
|
49
49
|
$orgchart-card-body-border-color: transparent !default;
|
|
@@ -62,5 +62,5 @@ $pager-number-focus-opacity: .12 !default;
|
|
|
62
62
|
$pager-number-focus-bg: rgba($pager-number-text, $pager-number-focus-opacity) !default;
|
|
63
63
|
$pager-number-focus-shadow: null !default;
|
|
64
64
|
|
|
65
|
-
$pager-input-width:
|
|
65
|
+
$pager-input-width: 5em !default;
|
|
66
66
|
$pager-dropdown-width: 5em !default;
|
|
@@ -24,11 +24,8 @@ $pdf-viewer-page-text: $component-text !default;
|
|
|
24
24
|
$pdf-viewer-page-border: $component-border !default;
|
|
25
25
|
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
|
|
26
26
|
|
|
27
|
-
$pdf-viewer-search-dialog-
|
|
28
|
-
$pdf-viewer-search-dialog-
|
|
29
|
-
$pdf-viewer-search-dialog-textbox-padding-x: $kendo-input-padding-y !default;
|
|
30
|
-
$pdf-viewer-search-dialog-input-button-height: $line-height-em !default;
|
|
31
|
-
$pdf-viewer-search-dialog-matches-width: 4.5em !default;
|
|
27
|
+
$pdf-viewer-search-dialog-padding: $toolbar-padding-x !default;
|
|
28
|
+
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
32
29
|
|
|
33
30
|
$pdf-viewer-selection-line-height: $line-height-sm !default;
|
|
34
31
|
|
|
@@ -2,57 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
@include exports ("pivotgrid/layout/material/legacy") {
|
|
4
4
|
|
|
5
|
-
.k-pivot-toolbar .k-button {
|
|
6
|
-
@include border-radius( 16px );
|
|
7
|
-
|
|
8
|
-
.k-field-actions {
|
|
9
|
-
top: initial;
|
|
10
|
-
|
|
11
|
-
.k-setting-delete {
|
|
12
|
-
border-radius: 50%;
|
|
13
|
-
padding: 2px;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
&::before {
|
|
18
|
-
display: none;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
&.k-empty {
|
|
22
|
-
border: 0;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
5
|
.k-pivot-rowheaders .k-grid tr .k-grid-footer {
|
|
27
6
|
border-bottom-width: 0;
|
|
28
7
|
}
|
|
29
8
|
|
|
30
|
-
.k-fieldselector p,
|
|
31
|
-
.k-pivot-layout .k-button {
|
|
32
|
-
text-transform: none;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.k-fieldselector,
|
|
36
|
-
.k-pivot {
|
|
37
|
-
.k-i-arrow-60-right,
|
|
38
|
-
.k-i-arrow-e,
|
|
39
|
-
.k-i-sarrow-e,
|
|
40
|
-
.k-i-expand,
|
|
41
|
-
.k-i-expand-e {
|
|
42
|
-
&::before {
|
|
43
|
-
content: "\E014";
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.k-i-arrow-60-down,
|
|
48
|
-
.k-i-arrow-s,
|
|
49
|
-
.k-i-sarrow-s,
|
|
50
|
-
.k-i-collapse,
|
|
51
|
-
.k-i-expand-s {
|
|
52
|
-
&::before {
|
|
53
|
-
content: "\E015";
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
9
|
}
|
|
@@ -13,142 +13,3 @@
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
@include exports("pivotgrid/theme/material/legacy") {
|
|
19
|
-
|
|
20
|
-
.k-pivot {
|
|
21
|
-
border-color: $pivotgrid-border;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.k-fieldselector,
|
|
25
|
-
.k-pivot-layout .k-grid-footer,
|
|
26
|
-
.k-pivot-layout > tbody > tr:first-child > td:first-child {
|
|
27
|
-
background-color: $pivotgrid-alt-bg;
|
|
28
|
-
border-color: $pivotgrid-chrome-border;
|
|
29
|
-
}
|
|
30
|
-
.k-pivot-rowheaders .k-grid {
|
|
31
|
-
background: none;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.k-fieldselector {
|
|
35
|
-
color: $pivotgrid-configurator-text;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.k-fieldselector .k-list-container {
|
|
39
|
-
background-color: $grid-bg;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.k-pivot-toolbar,
|
|
43
|
-
.k-pivot-table,
|
|
44
|
-
.k-fieldselector .k-list-container,
|
|
45
|
-
.k-fieldselector .k-columns > div,
|
|
46
|
-
.k-pivot-rowheaders > .k-grid td:first-child,
|
|
47
|
-
.k-pivot-table .k-grid-header .k-header.k-first {
|
|
48
|
-
border-color: $pivotgrid-chrome-border;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.k-pivot-rowheaders > .k-grid td,
|
|
52
|
-
.k-pivot-rowheaders > .k-grid td:first-child:not(.k-first) {
|
|
53
|
-
border-bottom-color: transparent;
|
|
54
|
-
border-left-color: $pivotgrid-chrome-border;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.k-pivot-rowheaders > .k-grid tr {
|
|
58
|
-
&:last-child td:not(.k-grid-footer),
|
|
59
|
-
&:nth-last-child(2) td:not(.k-grid-footer) {
|
|
60
|
-
border-bottom-color: $pivotgrid-chrome-border;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.k-pivot-layout .k-grid .k-alt {
|
|
65
|
-
border-left-color: $pivotgrid-chrome-border;
|
|
66
|
-
|
|
67
|
-
+ .k-alt {
|
|
68
|
-
border-left-color: transparent;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.k-pivot-layout .k-grid-footer,
|
|
73
|
-
.k-pivot-layout .k-grid .k-alt {
|
|
74
|
-
color: $pivotgrid-alt-text;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.k-pivot-toolbar .k-button {
|
|
78
|
-
@include fill(
|
|
79
|
-
$pivotgrid-button-text,
|
|
80
|
-
$pivotgrid-button-bg
|
|
81
|
-
);
|
|
82
|
-
box-shadow: unset;
|
|
83
|
-
|
|
84
|
-
.k-field-actions .k-setting-delete {
|
|
85
|
-
@include fill(
|
|
86
|
-
$pivotgrid-remove-text,
|
|
87
|
-
$pivotgrid-remove-bg
|
|
88
|
-
);
|
|
89
|
-
opacity: .75;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
&:hover,
|
|
93
|
-
&.k-state-hover {
|
|
94
|
-
@include fill(
|
|
95
|
-
$pivotgrid-button-hover-text,
|
|
96
|
-
$pivotgrid-button-hover-bg
|
|
97
|
-
);
|
|
98
|
-
|
|
99
|
-
.k-field-actions .k-setting-delete {
|
|
100
|
-
opacity: 1;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
// Pressed state
|
|
105
|
-
&:active,
|
|
106
|
-
&.k-state-active {
|
|
107
|
-
@include fill(
|
|
108
|
-
$pivotgrid-button-active-text,
|
|
109
|
-
$pivotgrid-button-active-bg
|
|
110
|
-
);
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
// Focused state
|
|
114
|
-
&:focus,
|
|
115
|
-
&.k-state-focused {
|
|
116
|
-
box-shadow: $kendo-button-focus-shadow;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
&.k-empty {
|
|
120
|
-
background-color: $pivotgrid-container-bg;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
// Loading indicator
|
|
125
|
-
.k-fieldselector {
|
|
126
|
-
.k-i-loading {
|
|
127
|
-
border-color: $header-bg;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.k-i-loading::before,
|
|
131
|
-
.k-i-loading::after {
|
|
132
|
-
background-color: $header-bg;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
// KPI icons
|
|
137
|
-
.k-i-kpi-trend-increase,
|
|
138
|
-
.k-i-kpi-trend-decrease,
|
|
139
|
-
.k-i-kpi-trend-equal {
|
|
140
|
-
color: inherit;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.k-i-kpi-status-hold {
|
|
144
|
-
color: $warning;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.k-i-kpi-status-deny {
|
|
148
|
-
color: $error;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.k-i-kpi-status-open {
|
|
152
|
-
color: $success;
|
|
153
|
-
}
|
|
154
|
-
}
|
package/scss/radio/_index.scss
CHANGED
package/scss/radio/_theme.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@import "~@progress/kendo-theme-default/scss/radio/_theme.scss";
|
|
2
2
|
|
|
3
|
-
@include exports("radio/theme/material") {
|
|
3
|
+
@include exports( "radio/theme/material" ) {
|
|
4
4
|
|
|
5
5
|
// Radio
|
|
6
6
|
.k-radio-label {
|
|
@@ -11,13 +11,6 @@
|
|
|
11
11
|
opacity: 1;
|
|
12
12
|
filter: none;
|
|
13
13
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
// Ripple
|
|
17
|
-
.k-ripple-blob {
|
|
18
|
-
opacity: .2;
|
|
19
|
-
background-color: $kendo-radio-checked-bg;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
14
|
}
|
|
15
|
+
|
|
23
16
|
}
|