@progress/kendo-theme-default 4.43.1-dev.4 → 4.43.1-dev.5
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 +748 -805
- package/dist/all.scss +1290 -1168
- package/package.json +2 -2
- package/scss/adaptive/_layout.scss +40 -86
- package/scss/adaptive/_theme.scss +0 -9
- package/scss/appbar/_variables.scss +1 -1
- package/scss/autocomplete/_theme.scss +20 -39
- package/scss/autocomplete/_variables.scss +0 -19
- package/scss/avatar/_variables.scss +11 -1
- package/scss/button/_layout.scss +2 -2
- package/scss/button/_variables.scss +3 -3
- package/scss/calendar/_layout.scss +2 -14
- package/scss/card/_variables.scss +4 -4
- package/scss/chat/_layout.scss +3 -9
- package/scss/chat/_theme.scss +0 -21
- package/scss/chat/_variables.scss +0 -7
- package/scss/checkbox/_layout.scss +78 -145
- package/scss/checkbox/_theme.scss +6 -2
- package/scss/checkbox/_variables.scss +87 -18
- package/scss/daterangepicker/_index.scss +10 -0
- package/scss/daterangepicker/_layout.scss +27 -0
- package/scss/daterangepicker/_theme.scss +3 -0
- package/scss/daterangepicker/_variables.scss +1 -0
- package/scss/editor/_layout.scss +2 -10
- package/scss/forms/_layout.scss +7 -9
- package/scss/gantt/_layout.scss +1 -1
- package/scss/grid/_layout.scss +128 -97
- package/scss/grid/_variables.scss +1 -3
- package/scss/index.scss +1 -0
- package/scss/input/_layout.scss +1 -1
- package/scss/input/_variables.scss +5 -5
- package/scss/list/_layout.scss +9 -41
- package/scss/list/_theme.scss +4 -3
- package/scss/list/_variables.scss +64 -8
- package/scss/listbox/_variables.scss +1 -1
- package/scss/listview/_layout.scss +2 -9
- package/scss/map/_layout.scss +5 -0
- package/scss/menu/_layout.scss +48 -5
- package/scss/menu/_theme.scss +6 -2
- package/scss/menu/_variables.scss +1 -1
- package/scss/numerictextbox/_layout.scss +9 -27
- package/scss/numerictextbox/_theme.scss +64 -84
- package/scss/numerictextbox/_variables.scss +0 -27
- package/scss/orgchart/_variables.scss +2 -2
- package/scss/pager/_variables.scss +1 -1
- package/scss/pdf-viewer/_layout.scss +20 -29
- package/scss/pdf-viewer/_variables.scss +2 -5
- package/scss/radio/_layout.scss +89 -136
- package/scss/radio/_theme.scss +2 -2
- package/scss/radio/_variables.scss +88 -26
- package/scss/scheduler/_layout.scss +25 -12
- package/scss/searchbox/_layout.scss +22 -8
- package/scss/searchbox/_theme.scss +16 -25
- package/scss/searchbox/_variables.scss +0 -20
- package/scss/skeleton/_layout.scss +1 -1
- package/scss/spreadsheet/_layout.scss +27 -15
- package/scss/table/_layout.scss +29 -6
- package/scss/table/_theme.scss +3 -2
- package/scss/table/_variables.scss +3 -3
- package/scss/timeselector/_layout.scss +2 -2
- package/scss/toolbar/_layout.scss +21 -2
- package/scss/toolbar/_theme.scss +35 -7
- package/scss/treeview/_layout.scss +130 -110
- package/scss/treeview/_theme.scss +36 -25
- package/scss/treeview/_variables.scss +67 -13
- package/scss/typography/_variables.scss +3 -3
- package/scss/window/_variables.scss +1 -1
|
@@ -274,6 +274,7 @@
|
|
|
274
274
|
font-family: Arial, Verdana, Sans-serif;
|
|
275
275
|
flex: 1;
|
|
276
276
|
position: relative;
|
|
277
|
+
overflow: hidden;
|
|
277
278
|
|
|
278
279
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
279
280
|
.k-state-disabled {
|
|
@@ -632,37 +633,48 @@
|
|
|
632
633
|
}
|
|
633
634
|
|
|
634
635
|
// Details
|
|
635
|
-
.k-details
|
|
636
|
+
.k-details,
|
|
637
|
+
.k-expander {
|
|
636
638
|
padding: 0;
|
|
637
639
|
border-width: 1px 0 0;
|
|
638
640
|
border-style: solid;
|
|
639
641
|
border-color: inherit;
|
|
640
642
|
}
|
|
641
|
-
.k-
|
|
642
|
-
|
|
643
|
+
.k-expander {
|
|
644
|
+
border: 0;
|
|
645
|
+
background: inherit;
|
|
646
|
+
}
|
|
647
|
+
.k-details-summary,
|
|
648
|
+
.k-columnmenu-item {
|
|
649
|
+
padding: $menu-popup-item-padding-y $menu-popup-item-padding-x;
|
|
650
|
+
display: flex;
|
|
651
|
+
align-items: center;
|
|
643
652
|
cursor: pointer;
|
|
644
653
|
|
|
645
654
|
> .k-icon {
|
|
646
655
|
margin-right: $padding-y;
|
|
647
656
|
}
|
|
648
657
|
}
|
|
649
|
-
.k-details-content
|
|
650
|
-
|
|
658
|
+
.k-details-content,
|
|
659
|
+
.k-columnmenu-item-content {
|
|
660
|
+
padding: map-get( $spacing, 2 );
|
|
661
|
+
display: flex;
|
|
662
|
+
flex-flow: column nowrap;
|
|
663
|
+
gap: map-get( $spacing, 2 );
|
|
651
664
|
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
margin-bottom: 3px;
|
|
665
|
+
.k-filter-and {
|
|
666
|
+
width: min-content;
|
|
667
|
+
align-self: flex-start;
|
|
656
668
|
}
|
|
657
669
|
|
|
658
|
-
.k-
|
|
659
|
-
|
|
670
|
+
.k-searchbox {
|
|
671
|
+
width: 100%;
|
|
660
672
|
}
|
|
673
|
+
}
|
|
661
674
|
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
}
|
|
675
|
+
.k-actions {
|
|
676
|
+
margin: 0;
|
|
677
|
+
padding: 0;
|
|
666
678
|
}
|
|
667
679
|
}
|
|
668
680
|
|
package/scss/table/_layout.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@include exports("table/layout") {
|
|
1
|
+
@include exports( "table/layout" ) {
|
|
2
2
|
|
|
3
3
|
// Table
|
|
4
4
|
.k-table {
|
|
@@ -30,12 +30,11 @@
|
|
|
30
30
|
// Table native parts
|
|
31
31
|
.k-table-thead,
|
|
32
32
|
.k-table-tbody,
|
|
33
|
-
.k-table-tfoot
|
|
34
|
-
text-align: inherit;
|
|
35
|
-
}
|
|
33
|
+
.k-table-tfoot,
|
|
36
34
|
.k-table-row,
|
|
37
35
|
.k-table-alt-row {
|
|
38
36
|
border-color: inherit;
|
|
37
|
+
text-align: inherit;
|
|
39
38
|
}
|
|
40
39
|
.k-table-th,
|
|
41
40
|
.k-table-td {
|
|
@@ -56,6 +55,9 @@
|
|
|
56
55
|
border-left-width: 0;
|
|
57
56
|
}
|
|
58
57
|
}
|
|
58
|
+
.k-table-th {
|
|
59
|
+
border-bottom-width: 1px;
|
|
60
|
+
}
|
|
59
61
|
|
|
60
62
|
|
|
61
63
|
// Table header
|
|
@@ -74,8 +76,27 @@
|
|
|
74
76
|
width: 100%;
|
|
75
77
|
border-width: 0 $table-cell-vertical-border-width 0 0;
|
|
76
78
|
border-style: solid;
|
|
79
|
+
border-color: inherit;
|
|
77
80
|
overflow: hidden;
|
|
78
81
|
}
|
|
82
|
+
.k-table-header,
|
|
83
|
+
.k-table-header-wrap {
|
|
84
|
+
> .k-table {
|
|
85
|
+
margin-bottom: -1px;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
.k-table-group-sticky-header {
|
|
89
|
+
font-size: $table-font-size;
|
|
90
|
+
line-height: $line-height;
|
|
91
|
+
flex: none;
|
|
92
|
+
|
|
93
|
+
.k-table-th {
|
|
94
|
+
display: flex;
|
|
95
|
+
flex-flow: row nowrap;
|
|
96
|
+
align-items: center;
|
|
97
|
+
align-content: center;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
79
100
|
|
|
80
101
|
|
|
81
102
|
// Table list
|
|
@@ -112,7 +133,7 @@
|
|
|
112
133
|
.k-table-group-row {
|
|
113
134
|
|
|
114
135
|
&::before {
|
|
115
|
-
content: "
|
|
136
|
+
content: "\200b";
|
|
116
137
|
padding: $table-cell-padding-y 0;
|
|
117
138
|
width: 0;
|
|
118
139
|
display: block;
|
|
@@ -154,7 +175,8 @@
|
|
|
154
175
|
|
|
155
176
|
|
|
156
177
|
// Virtualization
|
|
157
|
-
.k-virtual-table .k-table-row
|
|
178
|
+
.k-virtual-table .k-table-row,
|
|
179
|
+
.k-virtual-table .k-table-group-row {
|
|
158
180
|
position: absolute;
|
|
159
181
|
width: 100%;
|
|
160
182
|
}
|
|
@@ -187,6 +209,7 @@
|
|
|
187
209
|
width: 100%;
|
|
188
210
|
border-width: 0 $table-cell-vertical-border-width 0 0;
|
|
189
211
|
border-style: solid;
|
|
212
|
+
border-color: inherit;
|
|
190
213
|
overflow: hidden;
|
|
191
214
|
}
|
|
192
215
|
|
package/scss/table/_theme.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@include exports("table/theme") {
|
|
1
|
+
@include exports( "table/theme" ) {
|
|
2
2
|
|
|
3
3
|
// Table
|
|
4
4
|
.k-table,
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
|
|
12
12
|
// Table header
|
|
13
13
|
.k-table-thead,
|
|
14
|
-
.k-table-header
|
|
14
|
+
.k-table-header,
|
|
15
|
+
.k-table-group-sticky-header {
|
|
15
16
|
border-color: $table-header-border;
|
|
16
17
|
color: $table-header-text;
|
|
17
18
|
background-color: $table-header-bg;
|
|
@@ -58,13 +58,13 @@ $table-footer-border: $grid-footer-border !default;
|
|
|
58
58
|
|
|
59
59
|
/// Background color of group rows in table.
|
|
60
60
|
/// @group table
|
|
61
|
-
$table-group-row-bg: $
|
|
61
|
+
$table-group-row-bg: $table-header-bg !default;
|
|
62
62
|
/// Text color of group rows in table.
|
|
63
63
|
/// @group table
|
|
64
|
-
$table-group-row-text: $
|
|
64
|
+
$table-group-row-text: $table-header-text !default;
|
|
65
65
|
/// Border color of group rows in table.
|
|
66
66
|
/// @group table
|
|
67
|
-
$table-group-row-border:
|
|
67
|
+
$table-group-row-border: $table-header-border !default;
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
/// Background color of alternating rows in table.
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
&::before,
|
|
105
105
|
&::after {
|
|
106
106
|
display: block;
|
|
107
|
-
content: "
|
|
107
|
+
content: "\200b";
|
|
108
108
|
position: absolute;
|
|
109
109
|
width: 100%;
|
|
110
110
|
left: 0;
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
&::after {
|
|
141
141
|
display: block;
|
|
142
142
|
position: absolute;
|
|
143
|
-
content: "
|
|
143
|
+
content: "\200b";
|
|
144
144
|
height: 0;
|
|
145
145
|
line-height: 0;
|
|
146
146
|
z-index: 1;
|
|
@@ -67,8 +67,9 @@
|
|
|
67
67
|
@include border-radius( 0 );
|
|
68
68
|
margin: 0;
|
|
69
69
|
padding: $toolbar-padding-y;
|
|
70
|
-
width:
|
|
70
|
+
width: auto;
|
|
71
71
|
height: 100%;
|
|
72
|
+
aspect-ratio: 1;
|
|
72
73
|
border-width: 0;
|
|
73
74
|
border-color: inherit;
|
|
74
75
|
box-sizing: border-box;
|
|
@@ -142,6 +143,14 @@
|
|
|
142
143
|
// Overflow container
|
|
143
144
|
.k-overflow-container {
|
|
144
145
|
|
|
146
|
+
> .k-item {
|
|
147
|
+
border-color: inherit;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.k-separator {
|
|
151
|
+
margin: map-get( $spacing, 1 ) 0;
|
|
152
|
+
}
|
|
153
|
+
|
|
145
154
|
// Group
|
|
146
155
|
.k-overflow-tool-group {
|
|
147
156
|
display: block;
|
|
@@ -149,13 +158,23 @@
|
|
|
149
158
|
|
|
150
159
|
// Button
|
|
151
160
|
.k-overflow-button {
|
|
161
|
+
@include border-radius( 0 );
|
|
162
|
+
padding: $list-item-padding-y $list-item-padding-x;
|
|
152
163
|
width: 100%;
|
|
164
|
+
border-width: 0;
|
|
165
|
+
color: inherit;
|
|
166
|
+
background-color: transparent;
|
|
167
|
+
background-image: none;
|
|
168
|
+
line-height: inherit;
|
|
169
|
+
display: flex;
|
|
170
|
+
justify-content: flex-start;
|
|
153
171
|
}
|
|
154
172
|
|
|
155
173
|
// Button group
|
|
156
174
|
.k-button-group {
|
|
175
|
+
@include box-shadow( none );
|
|
157
176
|
display: flex;
|
|
158
|
-
flex-
|
|
177
|
+
flex-flow: column nowrap;
|
|
159
178
|
|
|
160
179
|
.k-button {
|
|
161
180
|
margin: if( $button-border-width == 0, null, 0);
|
package/scss/toolbar/_theme.scss
CHANGED
|
@@ -11,13 +11,6 @@
|
|
|
11
11
|
@include box-shadow( $toolbar-shadow );
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
// Overflow anchor
|
|
15
|
-
.k-overflow-anchor {
|
|
16
|
-
color: inherit;
|
|
17
|
-
background: transparent;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
14
|
// Separator
|
|
22
15
|
.k-separator {
|
|
23
16
|
border-color: $toolbar-separator-border;
|
|
@@ -29,6 +22,41 @@
|
|
|
29
22
|
|
|
30
23
|
}
|
|
31
24
|
|
|
25
|
+
|
|
26
|
+
// Overflow container
|
|
27
|
+
.k-overflow-container {
|
|
28
|
+
|
|
29
|
+
.k-button {
|
|
30
|
+
|
|
31
|
+
// Hover state
|
|
32
|
+
&:hover,
|
|
33
|
+
&.k-state-hover {
|
|
34
|
+
color: $list-item-hovered-text;
|
|
35
|
+
background: $list-item-hovered-bg;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Active state
|
|
39
|
+
&:active,
|
|
40
|
+
&.k-state-active {
|
|
41
|
+
color: $list-item-selected-text;
|
|
42
|
+
background: $list-item-selected-bg;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// Button focus state
|
|
46
|
+
.k-button:focus,
|
|
47
|
+
.k-button.k-state-focused {
|
|
48
|
+
box-shadow: $list-item-focused-shadow;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// Disabled state
|
|
52
|
+
&:disabled,
|
|
53
|
+
&.k-state-disabled {
|
|
54
|
+
color: inherit;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
}
|
|
59
|
+
|
|
32
60
|
}
|
|
33
61
|
|
|
34
62
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@include exports("treeview/layout") {
|
|
2
2
|
|
|
3
|
-
//
|
|
3
|
+
// Treeview
|
|
4
4
|
.k-treeview {
|
|
5
|
-
padding:
|
|
5
|
+
padding: 0;
|
|
6
6
|
border-width: 0;
|
|
7
7
|
background: none;
|
|
8
8
|
box-sizing: border-box;
|
|
@@ -16,158 +16,178 @@
|
|
|
16
16
|
white-space: nowrap;
|
|
17
17
|
-webkit-touch-callout: none;
|
|
18
18
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19
|
+
}
|
|
19
20
|
|
|
20
|
-
> .k-group {
|
|
21
|
-
outline: 0;
|
|
22
|
-
-webkit-touch-callout: none;
|
|
23
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
24
|
-
}
|
|
25
21
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
}
|
|
22
|
+
// Treeview group
|
|
23
|
+
.k-treeview-group,
|
|
24
|
+
.k-treeview .k-group {
|
|
25
|
+
margin: 0;
|
|
26
|
+
padding: 0;
|
|
27
|
+
background: none;
|
|
28
|
+
list-style: none;
|
|
29
|
+
position: relative;
|
|
30
|
+
outline: 0;
|
|
31
|
+
-webkit-touch-callout: none;
|
|
32
|
+
-webkit-tap-highlight-color: $rgba-transparent;
|
|
39
33
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
.k-mid,
|
|
43
|
-
.k-bot {
|
|
44
|
-
display: flex;
|
|
45
|
-
flex-direction: row;
|
|
46
|
-
align-items: center;
|
|
47
|
-
align-content: center;
|
|
34
|
+
&.ng-animating {
|
|
35
|
+
overflow: hidden;
|
|
48
36
|
}
|
|
37
|
+
}
|
|
49
38
|
|
|
50
|
-
// Items
|
|
51
|
-
.k-item {
|
|
52
|
-
outline-style: none;
|
|
53
|
-
margin: 0;
|
|
54
|
-
padding: 0 0 0 $treeview-indent;
|
|
55
|
-
border-width: 0;
|
|
56
|
-
display: block;
|
|
57
|
-
}
|
|
58
39
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
}
|
|
72
|
-
.k-in.k-state-focused {
|
|
73
|
-
z-index: 1;
|
|
74
|
-
}
|
|
40
|
+
// Treeview wrappers
|
|
41
|
+
.k-treeview-top,
|
|
42
|
+
.k-treeview .k-top,
|
|
43
|
+
.k-treeview-mid,
|
|
44
|
+
.k-treeview .k-mid,
|
|
45
|
+
.k-treeview-bot,
|
|
46
|
+
.k-treeview .k-bot {
|
|
47
|
+
display: flex;
|
|
48
|
+
flex-direction: row;
|
|
49
|
+
align-items: center;
|
|
50
|
+
align-content: center;
|
|
51
|
+
}
|
|
75
52
|
|
|
76
|
-
// LoadMore button
|
|
77
|
-
.k-treeview-load-more-button {
|
|
78
|
-
cursor: pointer;
|
|
79
53
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
54
|
+
// Treeview item
|
|
55
|
+
.k-treeview-item,
|
|
56
|
+
.k-treeview .k-item {
|
|
57
|
+
outline-style: none;
|
|
58
|
+
margin: 0;
|
|
59
|
+
padding: 0 0 0 $treeview-indent;
|
|
60
|
+
border-width: 0;
|
|
61
|
+
display: block;
|
|
62
|
+
}
|
|
89
63
|
|
|
90
|
-
.k-i-loading {
|
|
91
|
-
margin-left: $treeview-loadmore-checkboxes-icon-indent;
|
|
92
|
-
margin-right: $treeview-loadmore-checkboxes-icon-margin-x;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
64
|
|
|
96
|
-
|
|
65
|
+
// Treeview toggle
|
|
66
|
+
.k-treeview-toggle {
|
|
67
|
+
flex: none;
|
|
68
|
+
display: inline-flex;
|
|
69
|
+
flex-flow: row nowrap;
|
|
70
|
+
align-items: center;
|
|
71
|
+
|
|
97
72
|
.k-i-expand,
|
|
98
73
|
.k-i-collapse {
|
|
99
|
-
margin-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
74
|
+
margin: 0 !important; // sass-lint:disable-line no-important
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
.k-treeview-toggle,
|
|
78
|
+
.k-treeview .k-i-expand,
|
|
79
|
+
.k-treeview .k-i-collapse {
|
|
80
|
+
margin-left: -$treeview-indent;
|
|
81
|
+
cursor: pointer;
|
|
82
|
+
|
|
83
|
+
+ .k-checkbox-wrap,
|
|
84
|
+
+ .k-checkbox-wrapper {
|
|
85
|
+
margin-left: $icon-spacing;
|
|
105
86
|
}
|
|
87
|
+
}
|
|
106
88
|
|
|
107
|
-
|
|
108
|
-
|
|
89
|
+
|
|
90
|
+
// Loading icon
|
|
91
|
+
.k-treeview-loading {
|
|
92
|
+
margin-right: $icon-spacing;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
// Checkbox
|
|
97
|
+
.k-treeview .k-checkbox-wrap,
|
|
98
|
+
.k-treeview .k-checkbox-wrapper {
|
|
99
|
+
margin-right: $icon-spacing;
|
|
100
|
+
align-self: center;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
// Treeview leaf
|
|
105
|
+
.k-treeview-leaf,
|
|
106
|
+
.k-treeview .k-in {
|
|
107
|
+
@include border-radius( $treeview-item-border-radius );
|
|
108
|
+
margin: 0;
|
|
109
|
+
padding: $treeview-item-padding-y $treeview-item-padding-x;
|
|
110
|
+
border: $treeview-item-border-width solid transparent;
|
|
111
|
+
text-decoration: none;
|
|
112
|
+
display: inline-flex;
|
|
113
|
+
align-items: center;
|
|
114
|
+
align-content: center;
|
|
115
|
+
vertical-align: middle;
|
|
116
|
+
position: relative;
|
|
117
|
+
|
|
118
|
+
.k-icon,
|
|
119
|
+
.k-image,
|
|
120
|
+
.k-sprite {
|
|
109
121
|
margin-right: $icon-spacing;
|
|
110
122
|
}
|
|
111
123
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
position: absolute;
|
|
116
|
-
transform: translate(-50%, -50%);
|
|
117
|
-
z-index: 1000;
|
|
124
|
+
&.k-state-focus,
|
|
125
|
+
&.k-state-focused {
|
|
126
|
+
z-index: 1;
|
|
118
127
|
}
|
|
128
|
+
}
|
|
119
129
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
130
|
+
|
|
131
|
+
// Treeview load more button
|
|
132
|
+
.k-treeview .k-treeview-load-more-button {
|
|
133
|
+
cursor: pointer;
|
|
134
|
+
|
|
135
|
+
&:hover,
|
|
136
|
+
&.k-state-hover,
|
|
137
|
+
&:focus,
|
|
138
|
+
&.k-state-focus,
|
|
139
|
+
&.k-state-focused {
|
|
140
|
+
text-decoration: underline;
|
|
125
141
|
}
|
|
126
142
|
}
|
|
127
143
|
|
|
144
|
+
|
|
128
145
|
// RTL
|
|
129
146
|
.k-rtl .k-treeview,
|
|
130
147
|
.k-treeview[dir="rtl"] {
|
|
131
148
|
|
|
132
|
-
//
|
|
133
|
-
.k-item
|
|
149
|
+
// Treeview item
|
|
150
|
+
.k-item,
|
|
151
|
+
.k-treeview-item {
|
|
134
152
|
padding-left: 0;
|
|
135
153
|
padding-right: $treeview-indent;
|
|
136
154
|
}
|
|
137
155
|
|
|
138
|
-
|
|
139
|
-
padding-left: 0;
|
|
140
|
-
padding-right: $treeview-loadmore-checkboxes-padding-x;
|
|
141
|
-
|
|
142
|
-
.k-i-loading {
|
|
143
|
-
margin-left: $treeview-loadmore-checkboxes-icon-margin-x;
|
|
144
|
-
margin-right: $treeview-loadmore-checkboxes-icon-indent;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
// Expand / collapse
|
|
156
|
+
// Treeview toggle
|
|
149
157
|
.k-i-expand,
|
|
150
|
-
.k-i-collapse
|
|
158
|
+
.k-i-collapse,
|
|
159
|
+
.k-treeview-toggle {
|
|
151
160
|
margin-left: 0;
|
|
152
161
|
margin-right: -$treeview-indent;
|
|
153
162
|
|
|
163
|
+
+ .k-checkbox-wrap,
|
|
154
164
|
+ .k-checkbox-wrapper {
|
|
155
165
|
margin-right: $icon-spacing;
|
|
156
166
|
}
|
|
157
167
|
}
|
|
158
168
|
|
|
159
|
-
//
|
|
160
|
-
.k-
|
|
169
|
+
// Loading
|
|
170
|
+
.k-treeview-loading {
|
|
161
171
|
margin-right: 0;
|
|
162
172
|
margin-left: $icon-spacing;
|
|
163
173
|
}
|
|
164
174
|
|
|
165
|
-
//
|
|
166
|
-
.k-
|
|
167
|
-
.k-
|
|
168
|
-
.k-in .k-sprite {
|
|
169
|
-
margin-left: $icon-spacing;
|
|
175
|
+
// Checkbox
|
|
176
|
+
.k-checkbox-wrap,
|
|
177
|
+
.k-checkbox-wrapper {
|
|
170
178
|
margin-right: 0;
|
|
179
|
+
margin-left: $icon-spacing;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// Treeview leaf
|
|
183
|
+
.k-treeview-leaf,
|
|
184
|
+
.k-in {
|
|
185
|
+
.k-icon,
|
|
186
|
+
.k-image,
|
|
187
|
+
.k-sprite {
|
|
188
|
+
margin-right: 0;
|
|
189
|
+
margin-left: $icon-spacing;
|
|
190
|
+
}
|
|
171
191
|
}
|
|
172
192
|
|
|
173
193
|
}
|