Skip to content

Commit a3b735b

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 67a8429 commit a3b735b

File tree

25 files changed

+268
-607
lines changed

25 files changed

+268
-607
lines changed

docs-aspnet/html-helpers/navigation/stepper/accessibility/keyboard-navigation.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,14 @@ Kendo UI Stepper supports the following keyboard shortcuts:
1616

1717
| SHORTCUT | DESCRIPTION |
1818
|:--- |:--- |
19-
| `Left arrow` | Focuses previous Step |
20-
| `Up arrow` | Focuses previous Step |
21-
| `Right arrow` | Focuses next Step |
22-
| `Down arrow` | Focuses next Step |
19+
| `Left arrow` or `Up arrow` or `Shift`+`Tab` | Focuses previous Step |
20+
| `Right arrow` or `Down arrow` or `Tab` | Focuses next Step |
2321
| `Home` | Focuses first Step |
2422
| `End` | Focuses last Step |
2523
| `Enter` | Selects the focused Step|
2624
| `Space` | Selects the focused Step|
27-
| `Tab` | Move the focus away from the Stepper |
28-
| `Shift`+`Tab` | Move the focus away from the Stepper |
25+
| `Tab` | To move the focus away from the Stepper select last step and press `Tab` |
26+
| `Shift`+`Tab` | To move the focus away from the Stepper select first step and press `Shift`+`Tab` |
2927

3028
> When using keyboard navigation the focusing and selecting behavior of the Stepper can be configured via the `selectOnFocus` configuration option. By default this option is disabled and additional action is required by the user to select the focused step.
3129

docs/controls/navigation/stepper/accessibility/keyboard-navigation.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,14 @@ Kendo UI Stepper supports the following keyboard shortcuts:
1616

1717
| SHORTCUT | DESCRIPTION |
1818
|:--- |:--- |
19-
| `Left arrow` | Focuses previous Step |
20-
| `Up arrow` | Focuses previous Step |
21-
| `Right arrow` | Focuses next Step |
22-
| `Down arrow` | Focuses next Step |
19+
| `Left arrow` or `Up arrow` or `Shift`+`Tab` | Focuses previous Step |
20+
| `Right arrow` or `Down arrow` or `Tab` | Focuses next Step |
2321
| `Home` | Focuses first Step |
2422
| `End` | Focuses last Step |
2523
| `Enter` | Selects the focused Step|
2624
| `Space` | Selects the focused Step|
27-
| `Tab` | Move the focus away from the Stepper |
28-
| `Shift`+`Tab` | Move the focus away from the Stepper |
25+
| `Tab` | To move the focus away from the Stepper select last step and press `Tab` |
26+
| `Shift`+`Tab` | To move the focus away from the Stepper select first step and press `Shift`+`Tab` |
2927

3028
> When using keyboard navigation the focusing and selecting behavior of the Stepper can be configured via the [`selectOnFocus`](/api/javascript/ui/stepper/configuration/selectOnFocus) configuration option. By default this option is disabled and additional action is required by the user to select the focused step.
3129

src/kendo.combobox.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ var __meta__ = { // jshint ignore:line
2828
Select = ui.Select,
2929
caret = kendo.caret,
3030
support = kendo.support,
31-
isIE = kendo.support.browser.msie,
3231
placeholderSupported = support.placeholder,
3332
activeElement = kendo._activeElement,
3433
keys = kendo.keys,
@@ -253,10 +252,6 @@ var __meta__ = { // jshint ignore:line
253252
clearTimeout(that._typingTimeout);
254253
that._typingTimeout = null;
255254

256-
if(this._userTriggered && isIE){
257-
return;
258-
}
259-
260255
that.text(that.text());
261256

262257
var item = that._focus();
@@ -806,7 +801,7 @@ var __meta__ = { // jshint ignore:line
806801

807802
that._oldIndex = that.selectedIndex;
808803

809-
that._prev = that.input.val();
804+
that._prev = that._oldText = that.input.val();
810805

811806
if (that._state === STATE_FILTER) {
812807
that._state = STATE_ACCEPT;

styles/web/Default/breadcrumb/_layout.less

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
.k-breadcrumb {
2+
min-height: @breadcrumb-min-height;
3+
border-width: 0;
24
box-sizing: border-box;
3-
border: 0;
5+
border-style: solid;
6+
background-color: transparent;
47
display: flex;
58
flex-direction: row;
6-
background-color: transparent;
7-
min-height: @breadcrumb-min-height;
89

910
// Items
1011
.k-breadcrumb-container {

styles/web/Default/filemanager/_layout.less

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,8 @@
8181
// Filemanager view
8282
.k-filemanager-view {
8383
display: flex;
84-
flex: 1 1 0%;
85-
flex-flow: column nowrap;
86-
overflow: hidden;
84+
flex: 1 1 auto;
85+
flex-flow: row nowrap;
8786

8887
> .k-filemanager-listview,
8988
> .k-filemanager-grid {
@@ -244,11 +243,28 @@
244243

245244

246245
// Resizing Handle
246+
.k-filemanager-resizable {
247+
248+
.k-filemanager-navigation,
249+
.k-filemanager-preview {
250+
border-width: 0;
251+
}
252+
}
247253
.k-filemanager .k-splitbar {
254+
// border-width: 0;
248255
flex-shrink: 0;
249256
display: inline-flex;
250257
position: relative;
251258
}
259+
.k-filemanager .k-splitbar-horizontal {
260+
width: 6px;
261+
flex-direction: column;
262+
align-items: center;
263+
264+
.k-resize-handle {
265+
width: 2px;
266+
}
267+
}
252268

253269

254270
// Upload Dialog

styles/web/Default/forms/_layout.less

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,14 @@
2323
.k-form-legend {
2424
margin: @form-legend-margin;
2525
padding: @form-legend-padding-y @form-legend-padding-x;
26-
border-width: 0;
26+
border-width: 0 0 2px;
27+
border-style: solid;
28+
width: 100%;
29+
border-width: 0 0 2px;
2730
box-sizing: border-box;
2831
font-size: @form-legend-font-size;
2932
line-height: @form-legend-line-height;
33+
text-transform: uppercase;
3034
}
3135

3236

styles/web/Default/forms/_theme.less

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@
55
.k-form-error {
66
color: @error;
77
}
8+
9+
10+
// Form legend
11+
.k-form-legend {
12+
.fill(@border: @widget-border-color);
13+
}

styles/web/common/imagebrowser.less

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -73,19 +73,13 @@
7373

7474
.k-filebrowser {
7575

76-
.k-filebrowser-toolbar
77-
{
76+
.k-filebrowser-toolbar {
7877
border-style: solid;
7978
border-width: 1px;
8079
margin: 8px 0 0;
8180
padding: .25em;
8281
line-height: 23px;
8382
white-space: nowrap; // required by WebKit
84-
85-
.k-button.k-state-disabled
86-
{
87-
display: none;
88-
}
8983
}
9084

9185
.k-tiles-arrange
@@ -98,22 +92,19 @@
9892
}
9993
}
10094

101-
.k-upload
102-
{
103-
float: left;
104-
z-index: 10010;
95+
.k-upload {
10596
border-width: 0;
10697
background-color: transparent;
10798

108-
.k-upload-status
109-
{
99+
.k-upload-status,
100+
.k-upload-files {
110101
display: none;
111102
}
112103

113-
.k-upload-button
114-
{
104+
.k-upload-button {
105+
margin: 0;
115106
width: auto;
116-
margin-left: 0;
107+
min-width: auto;
117108
}
118109
}
119110

styles/web/common/splitter.less

Lines changed: 8 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,16 @@
4040
.prohibit-selection;
4141
}
4242

43-
.k-splitter .k-ghost-splitbar-horizontal,
44-
.k-splitter .k-splitbar-horizontal
45-
{
43+
.k-ghost-splitbar-horizontal,
44+
.k-splitbar-horizontal {
4645
top: 0;
4746
width: 5px;
4847
border-width: 0 1px;
4948
background-repeat: repeat-y;
5049
}
5150

5251
.k-ghost-splitbar-vertical,
53-
.k-splitbar-vertical
54-
{
52+
.k-splitbar-vertical {
5553
left: 0;
5654
height: 5px;
5755
border-width: 1px 0;
@@ -163,24 +161,19 @@
163161
}
164162

165163
.k-splitbar-draggable-vertical .k-resize-handle,
166-
.k-splitbar-draggable-horizontal .k-resize-handle
167-
{
164+
.k-splitbar-draggable-horizontal .k-resize-handle {
168165
display: inline-block;
169166
border-radius: 1px;
170167
}
171168

172-
.k-splitbar-draggable-horizontal .k-resize-handle
173-
{
169+
.k-splitbar-draggable-horizontal .k-resize-handle {
174170
width: 3px;
175-
height: 16px;
176-
margin-left: 1px;
171+
height: 20px;
177172
}
178173

179-
.k-splitbar-draggable-vertical .k-resize-handle
180-
{
181-
width: 16px;
174+
.k-splitbar-draggable-vertical .k-resize-handle {
175+
width: 20px;
182176
height: 3px;
183-
margin-top: 1px;
184177
}
185178

186179
.k-splitbar {
@@ -202,10 +195,6 @@
202195
{
203196
.k-splitbar-horizontal
204197
{
205-
.k-resize-handle
206-
{
207-
margin-right: 1px;
208-
}
209198

210199
.k-i-arrow-60-right {
211200
margin-top: 13px;

0 commit comments

Comments
 (0)