@progress/kendo-theme-utils 5.4.2-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/LICENSE.md +17 -0
- package/dist/all.css +13183 -0
- package/dist/all.scss +1963 -0
- package/package.json +45 -0
- package/scss/_functions.scss +37 -0
- package/scss/_mixins.scss +28 -0
- package/scss/_variables.scss +754 -0
- package/scss/accessibility/_screen-readers.scss +28 -0
- package/scss/accessibility/index.import.scss +1 -0
- package/scss/all.scss +1 -0
- package/scss/border/_border-color.scss +11 -0
- package/scss/border/_border-radius.scss +13 -0
- package/scss/border/_border-style.scss +11 -0
- package/scss/border/_border-width.scss +11 -0
- package/scss/border/_outline-color.scss +5 -0
- package/scss/border/_outline-offset.scss +5 -0
- package/scss/border/_outline-style.scss +5 -0
- package/scss/border/_outline-width.scss +5 -0
- package/scss/border/index.import.scss +8 -0
- package/scss/flex-grid/_align-content.scss +5 -0
- package/scss/flex-grid/_align-items.scss +5 -0
- package/scss/flex-grid/_align-self.scss +5 -0
- package/scss/flex-grid/_flex-basis.scss +13 -0
- package/scss/flex-grid/_flex-direction.scss +19 -0
- package/scss/flex-grid/_flex-grow.scss +11 -0
- package/scss/flex-grid/_flex-shrink.scss +11 -0
- package/scss/flex-grid/_flex-wrap.scss +15 -0
- package/scss/flex-grid/_flex.scss +19 -0
- package/scss/flex-grid/_gap.scss +5 -0
- package/scss/flex-grid/_grid-auto-columns.scss +5 -0
- package/scss/flex-grid/_grid-auto-flow.scss +5 -0
- package/scss/flex-grid/_grid-auto-rows.scss +5 -0
- package/scss/flex-grid/_grid-column-start-end.scss +15 -0
- package/scss/flex-grid/_grid-row-start-end.scss +15 -0
- package/scss/flex-grid/_grid-template-columns.scss +5 -0
- package/scss/flex-grid/_grid-template-rows.scss +5 -0
- package/scss/flex-grid/_justify-content.scss +8 -0
- package/scss/flex-grid/_justify-items.scss +5 -0
- package/scss/flex-grid/_justify-self.scss +5 -0
- package/scss/flex-grid/_order.scss +5 -0
- package/scss/flex-grid/_place-content.scss +5 -0
- package/scss/flex-grid/_place-items.scss +5 -0
- package/scss/flex-grid/_place-self.scss +5 -0
- package/scss/flex-grid/index.import.scss +24 -0
- package/scss/index.import.scss +18 -0
- package/scss/interactivity/_accent-color.scss +5 -0
- package/scss/interactivity/_appearance.scss +11 -0
- package/scss/interactivity/_caret-color.scss +5 -0
- package/scss/interactivity/_cursor.scss +5 -0
- package/scss/interactivity/_pointer-events.scss +11 -0
- package/scss/interactivity/_resize.scss +19 -0
- package/scss/interactivity/_scroll.scss +45 -0
- package/scss/interactivity/_touch-action.scss +13 -0
- package/scss/interactivity/_user-select.scss +23 -0
- package/scss/interactivity/_will-change.scss +5 -0
- package/scss/interactivity/index.import.scss +10 -0
- package/scss/layout/_aspect-ratio.scss +5 -0
- package/scss/layout/_clear.scss +5 -0
- package/scss/layout/_display.scss +47 -0
- package/scss/layout/_float.scss +5 -0
- package/scss/layout/_overflow.scss +63 -0
- package/scss/layout/_position.scss +60 -0
- package/scss/layout/_visibility.scss +11 -0
- package/scss/layout/_zindex.scss +5 -0
- package/scss/layout/index.import.scss +8 -0
- package/scss/sizing/_height.scss +15 -0
- package/scss/sizing/_width.scss +15 -0
- package/scss/sizing/index.import.scss +2 -0
- package/scss/spacing/_margin.scss +11 -0
- package/scss/spacing/_padding.scss +11 -0
- package/scss/spacing/_space-between.scss +0 -0
- package/scss/spacing/index.import.scss +3 -0
- package/scss/table/_border-collapse.scss +5 -0
- package/scss/table/_table-layout.scss +11 -0
- package/scss/table/index.import.scss +2 -0
- package/scss/transform/_flip.scss +24 -0
- package/scss/transform/_origin.scss +5 -0
- package/scss/transform/_rotate.scss +11 -0
- package/scss/transform/_scale.scss +19 -0
- package/scss/transform/_skew.scss +15 -0
- package/scss/transform/_translate.scss +15 -0
- package/scss/transform/index.import.scss +6 -0
- package/scss/typography/_font-size.scss +5 -0
- package/scss/typography/_font-style.scss +5 -0
- package/scss/typography/_font-weight.scss +5 -0
- package/scss/typography/_text-align.scss +19 -0
- package/scss/typography/_text-transform.scss +17 -0
- package/scss/typography/_white-space.scss +27 -0
- package/scss/typography/index.import.scss +17 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
$kendo-utils-accessibility: map-get( $kendo-utils, "accessibility" ) !default;
|
|
2
|
+
|
|
3
|
+
@if $kendo-utils-accessibility {
|
|
4
|
+
/// @name .k-sr-only
|
|
5
|
+
/// @description This class could be assigned to elements which should be visually hidden, but remain accessible for screen readers.
|
|
6
|
+
/// @group accessibility
|
|
7
|
+
.#{$kendo-prefix}sr-only {
|
|
8
|
+
margin: -1px;
|
|
9
|
+
padding: 0;
|
|
10
|
+
width: 1px;
|
|
11
|
+
height: 1px;
|
|
12
|
+
border-width: 0;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
clip: rect(0, 0, 0, 0);
|
|
15
|
+
position: absolute;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.#{$kendo-prefix}not-sr-only {
|
|
19
|
+
margin: 0;
|
|
20
|
+
padding: 0;
|
|
21
|
+
width: auto;
|
|
22
|
+
height: auto;
|
|
23
|
+
border-width: 0;
|
|
24
|
+
overflow: visible;
|
|
25
|
+
clip: auto;
|
|
26
|
+
position: static;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "./_screen-readers.scss";
|
package/scss/all.scss
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "./index.import.scss";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// TODO DOCS
|
|
2
|
+
|
|
3
|
+
$kendo-utils-border-color: map-get( $kendo-utils, "border-color" ) !default;
|
|
4
|
+
|
|
5
|
+
@include generate-utils( border, border-color, $kendo-utils-border-color );
|
|
6
|
+
@include generate-utils( border-t, border-top-color, $kendo-utils-border-color );
|
|
7
|
+
@include generate-utils( border-r, border-right-color, $kendo-utils-border-color );
|
|
8
|
+
@include generate-utils( border-b, border-bottom-color, $kendo-utils-border-color );
|
|
9
|
+
@include generate-utils( border-l, border-left-color, $kendo-utils-border-color );
|
|
10
|
+
@include generate-utils( border-x, border-inline-color, $kendo-utils-border-color );
|
|
11
|
+
@include generate-utils( border-y, border-block-color, $kendo-utils-border-color );
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// TODO DOCS
|
|
2
|
+
|
|
3
|
+
$kendo-utils-border-radius: map-get( $kendo-utils, "border-radius" ) !default;
|
|
4
|
+
|
|
5
|
+
@include generate-utils( rounded, border-radius, $kendo-utils-border-radius );
|
|
6
|
+
@include generate-utils( rounded-tl, border-top-left-radius, $kendo-utils-border-radius );
|
|
7
|
+
@include generate-utils( rounded-tr, border-top-right-radius, $kendo-utils-border-radius );
|
|
8
|
+
@include generate-utils( rounded-br, border-bottom-right-radius, $kendo-utils-border-radius );
|
|
9
|
+
@include generate-utils( rounded-bl, border-bottom-left-radius, $kendo-utils-border-radius );
|
|
10
|
+
@include generate-utils( rounded-t, ( border-top-left-radius, border-top-right-radius ), $kendo-utils-border-radius );
|
|
11
|
+
@include generate-utils( rounded-r, ( border-top-right-radius, border-bottom-right-radius ), $kendo-utils-border-radius );
|
|
12
|
+
@include generate-utils( rounded-b, ( border-bottom-left-radius, border-bottom-right-radius ), $kendo-utils-border-radius );
|
|
13
|
+
@include generate-utils( rounded-l, ( border-top-left-radius, border-bottom-left-radius ), $kendo-utils-border-radius );
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// TODO DOCS
|
|
2
|
+
|
|
3
|
+
$kendo-utils-border-style: map-get( $kendo-utils, "border-style" ) !default;
|
|
4
|
+
|
|
5
|
+
@include generate-utils( border, border-style, $kendo-utils-border-style );
|
|
6
|
+
@include generate-utils( border-t, border-top-style, $kendo-utils-border-style );
|
|
7
|
+
@include generate-utils( border-r, border-right-style, $kendo-utils-border-style );
|
|
8
|
+
@include generate-utils( border-b, border-bottom-style, $kendo-utils-border-style );
|
|
9
|
+
@include generate-utils( border-l, border-left-style, $kendo-utils-border-style );
|
|
10
|
+
@include generate-utils( border-x, border-inline-style, $kendo-utils-border-style );
|
|
11
|
+
@include generate-utils( border-y, border-block-style, $kendo-utils-border-style );
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// TODO DOCS
|
|
2
|
+
|
|
3
|
+
$kendo-utils-border-width: map-get( $kendo-utils, "border-width" ) !default;
|
|
4
|
+
|
|
5
|
+
@include generate-utils( border, border-width, $kendo-utils-border-width );
|
|
6
|
+
@include generate-utils( border-t, border-top-width, $kendo-utils-border-width );
|
|
7
|
+
@include generate-utils( border-r, border-right-width, $kendo-utils-border-width );
|
|
8
|
+
@include generate-utils( border-b, border-bottom-width, $kendo-utils-border-width );
|
|
9
|
+
@include generate-utils( border-l, border-left-width, $kendo-utils-border-width );
|
|
10
|
+
@include generate-utils( border-x, border-inline-width, $kendo-utils-border-width );
|
|
11
|
+
@include generate-utils( border-y, border-block-width, $kendo-utils-border-width );
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
@import "./_border-width.scss";
|
|
2
|
+
@import "./_border-style.scss";
|
|
3
|
+
@import "./_border-color.scss";
|
|
4
|
+
@import "./_border-radius.scss";
|
|
5
|
+
@import "./_outline-width.scss";
|
|
6
|
+
@import "./_outline-style.scss";
|
|
7
|
+
@import "./_outline-color.scss";
|
|
8
|
+
@import "./_outline-offset.scss";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// @name .k-flex-basis-auto
|
|
2
|
+
/// @description This is equivalent to `flex-basis: auto`. It specifies the initial size of the flex item, before any available space is distributed according to the flex factors. It sizes the element according to its size property.
|
|
3
|
+
/// @group flex-basis
|
|
4
|
+
|
|
5
|
+
// TODO DOCS
|
|
6
|
+
|
|
7
|
+
/// @name .k-flex-basis-0
|
|
8
|
+
/// @description This is equivalent to `flex-basis: 0`. It specifies the initial size of the flex item, before any available space is distributed according to the flex factors. It disregards the element' size property.
|
|
9
|
+
/// @group flex-basis
|
|
10
|
+
|
|
11
|
+
$kendo-utils-flex-basis: map-get( $kendo-utils, "flex-basis" ) !default;
|
|
12
|
+
|
|
13
|
+
@include generate-utils( basis, flex-basis, $kendo-utils-flex-basis );
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/// @name .k-flex-row
|
|
2
|
+
/// @description This is equivalent to `flex-direction: row`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: left to right in `ltr`; right to left in `rtl`.
|
|
3
|
+
/// @group flex-direction
|
|
4
|
+
|
|
5
|
+
/// @name .k-flex-row-reverse
|
|
6
|
+
/// @description This is equivalent to `flex-direction: row-reverse`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: right to left in `ltr`; left to right in `rtl`.
|
|
7
|
+
/// @group flex-direction
|
|
8
|
+
|
|
9
|
+
/// @name .k-flex-col
|
|
10
|
+
/// @description This is equivalent to `flex-direction: column`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: top to bottom.
|
|
11
|
+
/// @group flex-direction
|
|
12
|
+
|
|
13
|
+
/// @name .k-flex-col-reverse
|
|
14
|
+
/// @description This is equivalent to `flex-direction: column-reverse`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: bottom to top.
|
|
15
|
+
/// @group flex-direction
|
|
16
|
+
|
|
17
|
+
$kendo-utils-flex-direction: map-get( $kendo-utils, "flex-direction" ) !default;
|
|
18
|
+
|
|
19
|
+
@include generate-utils( flex, flex-direction, $kendo-utils-flex-direction );
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// @name .k-flex-grow
|
|
2
|
+
/// @description This is equivalent to `flex-grow: 1`. It defines the ability for a flex item to grow if necessary. It accepts a unitless value that serves as a proportion. It dictates what amount of the available space inside the flex container the item should take up.
|
|
3
|
+
/// @group flex-grow
|
|
4
|
+
|
|
5
|
+
/// @name .k-flex-grow-0
|
|
6
|
+
/// @description This is equivalent to `flex-grow: 0`. The item will not grow.
|
|
7
|
+
/// @group flex-grow
|
|
8
|
+
|
|
9
|
+
$kendo-utils-flex-grow: map-get( $kendo-utils, "flex-grow" ) !default;
|
|
10
|
+
|
|
11
|
+
@include generate-utils( grow, flex-grow, $kendo-utils-flex-grow );
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// @name .k-flex-shrink
|
|
2
|
+
/// @description This is equivalent to `flex-shrink: 1`. It determines how much the flex item will shrink relative to the rest of the flex items in the flex container when there isn't enough space on the row.
|
|
3
|
+
/// @group flex-shrink
|
|
4
|
+
|
|
5
|
+
/// @name .k-flex-shrink-0
|
|
6
|
+
/// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
|
|
7
|
+
/// @group flex-shrink
|
|
8
|
+
|
|
9
|
+
$kendo-utils-flex-shrink: map-get( $kendo-utils, "flex-shrink" ) !default;
|
|
10
|
+
|
|
11
|
+
@include generate-utils( shrink, flex-shrink, $kendo-utils-flex-shrink );
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// @name .k-flex-wrap
|
|
2
|
+
/// @description This is equivalent to `flex-wrap: wrap`. It allows flex items to wrap as needed onto multiple lines, from top to bottom.
|
|
3
|
+
/// @group flex-wrap
|
|
4
|
+
|
|
5
|
+
/// @name .k-flex-nowrap
|
|
6
|
+
/// @description This is equivalent to `flex-wrap: nowrap`. All flex items will be on one line.
|
|
7
|
+
/// @group flex-wrap
|
|
8
|
+
|
|
9
|
+
/// @name .k-flex-wrap-reverse
|
|
10
|
+
/// @description This is equivalent to `flex-wrap: wrap-reverse`. It allows flex items to wrap as needed onto multiple lines, from bottom to top.
|
|
11
|
+
/// @group flex-wrap
|
|
12
|
+
|
|
13
|
+
$kendo-utils-flex-wrap: map-get( $kendo-utils, "flex-wrap" ) !default;
|
|
14
|
+
|
|
15
|
+
@include generate-utils( flex, flex-wrap, $kendo-utils-flex-wrap );
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/// @name .k-flex-1
|
|
2
|
+
/// @description This is equivalent to `flex: 1 1 0%`. It sizes the item not based on its `width`/`height` properties, but based on the available space. This is similar to `flex: 1 1 auto` except it is allowed to shrink beyond its initial size.
|
|
3
|
+
/// @group flex
|
|
4
|
+
|
|
5
|
+
/// @name .k-flex-auto
|
|
6
|
+
/// @description This is equivalent to `flex: 1 1 auto`. Beware, this is not the default value. It sizes the item based on its `width`/`height` properties, but makes it fully flexible so that they absorb any extra space along the main axis. If all items are either `flex: auto`, `flex: initial`, or `flex: none`, any remaining space after the items have been sized will be distributed evenly to the items with `flex: auto`.
|
|
7
|
+
/// @group flex
|
|
8
|
+
|
|
9
|
+
/// @name .k-flex-initial
|
|
10
|
+
/// @description This is the same as `flex: initial;` and the shorthand for the default value: `flex: 0 1 auto`. It sizes the item based on its `width`/`height` properties (or its content if not set). It makes the flex item inflexible when there is some free space left, but allows it to shrink to its minimum when there is not enough space. The alignment abilities or `auto` margins can be used to align flex items along the main axis.
|
|
11
|
+
/// @group flex
|
|
12
|
+
|
|
13
|
+
/// @name .k-flex-none
|
|
14
|
+
/// @description This is equivalent to `flex: 0 0 auto`. It sizes the item according to its `width`/`height` properties, but makes it fully inflexible. This is similar to `flex: initial` except it is not allowed to shrink, even in an overflow situation.
|
|
15
|
+
/// @group flex
|
|
16
|
+
|
|
17
|
+
$kendo-utils-flex: map-get( $kendo-utils, "flex" ) !default;
|
|
18
|
+
|
|
19
|
+
@include generate-utils( flex, flex, $kendo-utils-flex );
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// TODO DOCS
|
|
2
|
+
|
|
3
|
+
$kendo-utils-grid-column-start: map-get( $kendo-utils, "grid-column-start" ) !default;
|
|
4
|
+
|
|
5
|
+
@include generate-utils( col-start, grid-column-start, $kendo-utils-grid-column-start );
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
$kendo-utils-grid-column-end: map-get( $kendo-utils, "grid-column-end" ) !default;
|
|
9
|
+
|
|
10
|
+
@include generate-utils( col-end, grid-column-end, $kendo-utils-grid-column-end );
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
$kendo-utils-grid-column-span: map-get( $kendo-utils, "grid-column-span" ) !default;
|
|
14
|
+
|
|
15
|
+
@include generate-utils( col-span, grid-column, $kendo-utils-grid-column-span );
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// TODO DOCS
|
|
2
|
+
|
|
3
|
+
$kendo-utils-grid-row-start: map-get( $kendo-utils, "grid-row-start" ) !default;
|
|
4
|
+
|
|
5
|
+
@include generate-utils( row-start, grid-row-start, $kendo-utils-grid-row-start );
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
$kendo-utils-grid-row-end: map-get( $kendo-utils, "grid-row-end" ) !default;
|
|
9
|
+
|
|
10
|
+
@include generate-utils( row-end, grid-row-end, $kendo-utils-grid-row-end );
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
$kendo-utils-grid-row-span: map-get( $kendo-utils, "grid-row-span" ) !default;
|
|
14
|
+
|
|
15
|
+
@include generate-utils( row-span, grid-row, $kendo-utils-grid-row-span );
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// TODO DOCS
|
|
2
|
+
|
|
3
|
+
$kendo-utils-justify-content: map-get( $kendo-utils, "justify-content" ) !default;
|
|
4
|
+
|
|
5
|
+
@include generate-utils( justify-content, justify-content, $kendo-utils-justify-content );
|
|
6
|
+
|
|
7
|
+
.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0%; }
|
|
8
|
+
.\!.#{$kendo-prefix}justify-content-stretch > * { flex: 1 0 0% !important; } // sass-lint:disable-line no-important class-name-format
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
@import "./_flex-direction.scss";
|
|
2
|
+
@import "./_flex-wrap.scss";
|
|
3
|
+
@import "./_flex.scss";
|
|
4
|
+
@import "./_flex-grow.scss";
|
|
5
|
+
@import "./_flex-shrink.scss";
|
|
6
|
+
@import "./_flex-basis.scss";
|
|
7
|
+
@import "./_order.scss";
|
|
8
|
+
@import "./_grid-template-columns.scss";
|
|
9
|
+
@import "./_grid-template-rows.scss";
|
|
10
|
+
@import "./_grid-column-start-end.scss";
|
|
11
|
+
@import "./_grid-row-start-end.scss";
|
|
12
|
+
@import "./_grid-auto-flow.scss";
|
|
13
|
+
@import "./_grid-auto-columns.scss";
|
|
14
|
+
@import "./_grid-auto-rows.scss";
|
|
15
|
+
@import "./_gap.scss";
|
|
16
|
+
@import "./_align-content.scss";
|
|
17
|
+
@import "./_align-items.scss";
|
|
18
|
+
@import "./_align-self.scss";
|
|
19
|
+
@import "./_justify-content.scss";
|
|
20
|
+
@import "./_justify-items.scss";
|
|
21
|
+
@import "./_justify-self.scss";
|
|
22
|
+
@import "./_place-content.scss";
|
|
23
|
+
@import "./_place-items.scss";
|
|
24
|
+
@import "./_place-self.scss";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
@import "./_functions.scss";
|
|
2
|
+
@import "./_variables.scss";
|
|
3
|
+
@import "./_mixins.scss";
|
|
4
|
+
|
|
5
|
+
@import "./accessibility/index.import.scss";
|
|
6
|
+
@import "./layout/index.import.scss";
|
|
7
|
+
@import "./flex-grid/index.import.scss";
|
|
8
|
+
@import "./spacing/index.import.scss";
|
|
9
|
+
@import "./sizing/index.import.scss";
|
|
10
|
+
@import "./typography/index.import.scss";
|
|
11
|
+
// background
|
|
12
|
+
@import "./border/index.import.scss";
|
|
13
|
+
// effects
|
|
14
|
+
// filter
|
|
15
|
+
@import "./table/index.import.scss";
|
|
16
|
+
// transition
|
|
17
|
+
@import "./transform/index.import.scss";
|
|
18
|
+
@import "./interactivity/index.import.scss";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// @name .k-appearance-none
|
|
2
|
+
/// @description This is equivalent to `appearance: none;`. Resets any browser specific styling on an element.
|
|
3
|
+
/// @group appearance
|
|
4
|
+
|
|
5
|
+
/// @name .k-appearance-auto
|
|
6
|
+
/// @description This is equivalent to `appearance: auto;`. The user agent selects the appropriate special styling based on the element. Acts as `none` on elements with no special styling.
|
|
7
|
+
/// @group appearance
|
|
8
|
+
|
|
9
|
+
$kendo-utils-appearance: map-get( $kendo-utils, "appearance" ) !default;
|
|
10
|
+
|
|
11
|
+
@include generate-utils( appearance, appearance, $kendo-utils-appearance );
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// @name .k-pointer-events-none
|
|
2
|
+
/// @description This is equivalent to `pointer-events: none;`. The element is never the target of pointer events; however, pointer events may target its descendant elements if those descendants have pointer-events set to some other value. In these circumstances, pointer events will trigger event listeners on this parent element as appropriate on their way to/from the descendant during the event capture/bubble phases.
|
|
3
|
+
/// @group pointer-events
|
|
4
|
+
|
|
5
|
+
/// @name .k-pointer-events-auto
|
|
6
|
+
/// @description This is equivalent to `pointer-events: auto;`. The element behaves as it would if the pointer-events property were not specified. In SVG content, this value and the value visiblePainted have the same effect.
|
|
7
|
+
/// @group pointer-events
|
|
8
|
+
|
|
9
|
+
$kendo-utils-pointer-events: map-get( $kendo-utils, "pointer-events" ) !default;
|
|
10
|
+
|
|
11
|
+
@include generate-utils( pointer-events, pointer-events, $kendo-utils-pointer-events );
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/// @name .k-resize
|
|
2
|
+
/// @description This is equivalent to `resize: both;`. The element displays a mechanism for allowing the user to resize it, which may be resized both horizontally and vertically.
|
|
3
|
+
/// @group resize
|
|
4
|
+
|
|
5
|
+
/// @name .k-resize-none
|
|
6
|
+
/// @description This is equivalent to `resize: none;`. The element offers no user-controllable method for resizing it.
|
|
7
|
+
/// @group resize
|
|
8
|
+
|
|
9
|
+
/// @name .k-resize-x
|
|
10
|
+
/// @description This is equivalent to `resize: horizontal;`. The element displays a mechanism for allowing the user to resize it in the horizontal direction.
|
|
11
|
+
/// @group resize
|
|
12
|
+
|
|
13
|
+
/// @name .k-resize-y
|
|
14
|
+
/// @description This is equivalent to `resize: vertical;`. The element displays a mechanism for allowing the user to resize it in the vertical direction.
|
|
15
|
+
/// @group resize
|
|
16
|
+
|
|
17
|
+
$kendo-utils-resize: map-get( $kendo-utils, "resize" ) !default;
|
|
18
|
+
|
|
19
|
+
@include generate-utils( resize, resize, $kendo-utils-resize );
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// TODO DOCS
|
|
2
|
+
|
|
3
|
+
$kendo-utils-scroll-behavior: map-get( $kendo-utils, "scroll-behavior" ) !default;
|
|
4
|
+
|
|
5
|
+
@include generate-utils( scroll, scroll-behavior, $kendo-utils-scroll-behavior );
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
$kendo-utils-scroll-snap-type: map-get( $kendo-utils, "scroll-snap-type" ) !default;
|
|
9
|
+
|
|
10
|
+
@include generate-utils( scroll-snap, scroll-snap-type, $kendo-utils-scroll-snap-type );
|
|
11
|
+
|
|
12
|
+
.#{$kendo-prefix}scroll-snap-mandatory { #{--#{$kendo-prefix}scroll-snap-strictness}: mandatory; }
|
|
13
|
+
.#{$kendo-prefix}scroll-snap-proximity { #{--#{$kendo-prefix}scroll-snap-strictness}: proximity; }
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
$kendo-utils-scroll-snap-stop: map-get( $kendo-utils, "scroll-snap-stop" ) !default;
|
|
17
|
+
|
|
18
|
+
@include generate-utils( scroll-snap-stop, scroll-snap-stop, $kendo-utils-scroll-snap-stop );
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
$kendo-utils-scroll-snap-align: map-get( $kendo-utils, "scroll-snap-align" ) !default;
|
|
22
|
+
|
|
23
|
+
@include generate-utils( scroll-snap-align, scroll-snap-align, $kendo-utils-scroll-snap-align );
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
$kendo-utils-scroll-margin: map-get( $kendo-utils, "scroll-margin" ) !default;
|
|
27
|
+
|
|
28
|
+
@include generate-utils( scroll-m, scroll-margin, $kendo-utils-scroll-margin );
|
|
29
|
+
@include generate-utils( scroll-mt, scroll-margin-top, $kendo-utils-scroll-margin );
|
|
30
|
+
@include generate-utils( scroll-mr, scroll-margin-right, $kendo-utils-scroll-margin );
|
|
31
|
+
@include generate-utils( scroll-mb, scroll-margin-bottom, $kendo-utils-scroll-margin );
|
|
32
|
+
@include generate-utils( scroll-ml, scroll-margin-left, $kendo-utils-scroll-margin );
|
|
33
|
+
@include generate-utils( scroll-mx, scroll-margin-inline, $kendo-utils-scroll-margin );
|
|
34
|
+
@include generate-utils( scroll-my, scroll-margin-block, $kendo-utils-scroll-margin );
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
$kendo-utils-scroll-padding: map-get( $kendo-utils, "scroll-padding" ) !default;
|
|
38
|
+
|
|
39
|
+
@include generate-utils( scroll-p, scroll-padding, $kendo-utils-scroll-padding );
|
|
40
|
+
@include generate-utils( scroll-pt, scroll-padding-top, $kendo-utils-scroll-padding );
|
|
41
|
+
@include generate-utils( scroll-pr, scroll-padding-right, $kendo-utils-scroll-padding );
|
|
42
|
+
@include generate-utils( scroll-pb, scroll-padding-bottom, $kendo-utils-scroll-padding );
|
|
43
|
+
@include generate-utils( scroll-pl, scroll-padding-left, $kendo-utils-scroll-padding );
|
|
44
|
+
@include generate-utils( scroll-px, scroll-padding-inline, $kendo-utils-scroll-padding );
|
|
45
|
+
@include generate-utils( scroll-py, scroll-padding-block, $kendo-utils-scroll-padding );
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// TODO DOCS
|
|
2
|
+
|
|
3
|
+
/// @name .k-touch-action-none
|
|
4
|
+
/// @description This is equivalent to `touch-action: none;`. Disable browser handling of all panning and zooming gestures.
|
|
5
|
+
/// @group touch-action
|
|
6
|
+
|
|
7
|
+
/// @name .k-touch-action-auto
|
|
8
|
+
/// @description This is equivalent to `touch-action: auto;`. Enable browser handling of all panning and zooming gestures.
|
|
9
|
+
/// @group touch-action
|
|
10
|
+
|
|
11
|
+
$kendo-utils-touch-action: map-get( $kendo-utils, "touch-action" ) !default;
|
|
12
|
+
|
|
13
|
+
@include generate-utils( touch-action, touch-action, $kendo-utils-touch-action );
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/// @name .k-user-select-auto
|
|
2
|
+
/// @description This is equivalent to `user-select: auto;`. This is the default value of the `user-select` property.
|
|
3
|
+
/// @group user-select
|
|
4
|
+
|
|
5
|
+
/// @name .k-user-select-none
|
|
6
|
+
/// @description This is equivalent to `user-select: none;`. The text of the element and its sub-elements is not selectable. Note that the Selection object can contain these elements.
|
|
7
|
+
/// @group user-select
|
|
8
|
+
|
|
9
|
+
/// @name .k-user-select-text
|
|
10
|
+
/// @description This is equivalent to `user-select: text;`. The text can be selected by the user.
|
|
11
|
+
/// @group user-select
|
|
12
|
+
|
|
13
|
+
/// @name .k-user-select-all
|
|
14
|
+
/// @description This is equivalent to `user-select: all;`. The content of the element shall be selected atomically: If a selection would contain part of the element, then the selection must contain the entire element including all its descendants. If a double-click or context-click occurred in sub-elements, the highest ancestor with this value will be selected.
|
|
15
|
+
/// @group user-select
|
|
16
|
+
|
|
17
|
+
/// @name .k-user-select-contain
|
|
18
|
+
/// @description This is equivalent to `user-select: contain;`. Enables selection to start within the element; however, the selection will be contained by the bounds of that element.
|
|
19
|
+
/// @group user-select
|
|
20
|
+
|
|
21
|
+
$kendo-utils-user-select: map-get( $kendo-utils, "user-select" ) !default;
|
|
22
|
+
|
|
23
|
+
@include generate-utils( user-select, user-select, $kendo-utils-user-select );
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
@import "./_accent-color.scss";
|
|
2
|
+
@import "./_appearance.scss";
|
|
3
|
+
@import "./_cursor.scss";
|
|
4
|
+
@import "./_caret-color.scss";
|
|
5
|
+
@import "./_pointer-events.scss";
|
|
6
|
+
@import "./_resize.scss";
|
|
7
|
+
@import "./_scroll.scss";
|
|
8
|
+
@import "./_touch-action.scss";
|
|
9
|
+
@import "./_user-select.scss";
|
|
10
|
+
@import "./_will-change.scss";
|