Skip to content

Commit a3da653

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 0e5223a commit a3da653

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

docs/framework/drawing/drawing-dom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ If you want to change the appearance of the PDF output as it appears in the brow
347347

348348
### The `.k-pdf-export` Class
349349

350-
This CSS class is applied to a DOM element just before the drawing starts, and is removed shortly afterwards.
350+
This CSS class is applied to each individual page just before the drawing starts, and is removed shortly afterwards. For multipage exports, it is better to use the [`kendo-pdf-document`](#the-kendo-pdf-document-element) element because styles are applied to the whole export at once.
351351

352352
The example below demonstrates how to define a style that places a border around all paragraphs in the PDF output.
353353

styles/web/common/inputs.less

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,16 +345,17 @@ span.k-datetimepicker .k-select + .k-select {
345345
}
346346

347347
.k-ie {
348-
.k-textbox > input,
349348
.k-autocomplete .k-input,
350349
.k-multiselect-wrap .k-input,
351-
.k-picker-wrap .k-input,
352-
.k-numeric-wrap .k-input,
353350
.k-dropdown-wrap .k-input,
354351
.k-selectbox .k-input {
355352
height: @input-height;
356353
}
357354

355+
.k-textbox > input,
356+
.k-picker-wrap .k-input,
357+
.k-numeric-wrap .k-input,
358+
.k-combobox .k-input,
358359
input.k-textbox {
359360
height: ~"calc(@{input-height} + 2*@{input-padding-y} + 2px)";
360361
}

styles/web/kendo.rtl.less

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,9 @@
347347
.k-rtl .k-dirty
348348
{
349349
border-color: #f00 #f00 transparent transparent;
350-
margin: -0.4em -0.5em 0 0;
350+
margin: 0;
351+
left: auto;
352+
right: 0;
351353
}
352354

353355
.k-webkit .k-rtl .k-dirty
@@ -920,7 +922,7 @@
920922
.k-rtl .k-toolbar .k-button-group .k-button,
921923
.k-rtl .k-toolbar .k-split-button .k-split-button-arrow
922924
{
923-
margin: 0 -1px 0 0;
925+
margin-right: -1px;
924926
}
925927

926928
.k-rtl.k-overflow-container .k-overflow-button,

0 commit comments

Comments
 (0)