@progress/kendo-theme-utils 6.2.1-dev.8 → 6.3.1-dev.0
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 +12 -60
- package/dist/all.scss +4906 -484
- package/dist/meta/sassdoc-data.json +25020 -1335
- package/dist/meta/sassdoc-raw-data.json +25020 -1335
- package/dist/meta/variables.json +1 -1
- package/package.json +3 -3
- package/scss/_variables.scss +6 -6
- package/scss/background/_background-clip.scss +23 -1
- package/scss/background/_background-color.scss +23 -1
- package/scss/border/_border-color.scss +30 -1
- package/scss/border/_border-radius.scss +323 -1
- package/scss/border/_border-style.scss +246 -1
- package/scss/border/_border-width.scss +211 -1
- package/scss/border/_outline-color.scss +29 -1
- package/scss/border/_outline-offset.scss +29 -1
- package/scss/border/_outline-style.scss +35 -1
- package/scss/border/_outline-width.scss +29 -1
- package/scss/effects/_opacity.scss +11 -1
- package/scss/filter/_backdrop.scss +29 -1
- package/scss/flex-grid/_align-content.scss +77 -1
- package/scss/flex-grid/_align-items.scss +71 -1
- package/scss/flex-grid/_align-self.scss +77 -1
- package/scss/flex-grid/_flex-basis.scss +4 -2
- package/scss/flex-grid/_flex-direction.scss +8 -4
- package/scss/flex-grid/_flex-grow.scss +4 -2
- package/scss/flex-grid/_flex-shrink.scss +4 -2
- package/scss/flex-grid/_flex-wrap.scss +6 -3
- package/scss/flex-grid/_flex.scss +7 -3
- package/scss/flex-grid/_gap.scss +179 -1
- package/scss/flex-grid/_grid-auto-columns.scss +23 -1
- package/scss/flex-grid/_grid-auto-flow.scss +35 -1
- package/scss/flex-grid/_grid-auto-rows.scss +23 -1
- package/scss/flex-grid/_grid-column-start-end.scss +17 -1
- package/scss/flex-grid/_grid-row-start-end.scss +17 -1
- package/scss/flex-grid/_grid-template-columns.scss +17 -1
- package/scss/flex-grid/_grid-template-rows.scss +17 -1
- package/scss/flex-grid/_justify-content.scss +77 -1
- package/scss/flex-grid/_justify-items.scss +83 -1
- package/scss/flex-grid/_justify-self.scss +77 -1
- package/scss/flex-grid/_order.scss +9 -0
- package/scss/flex-grid/_place-content.scss +77 -1
- package/scss/flex-grid/_place-items.scss +59 -1
- package/scss/flex-grid/_place-self.scss +65 -1
- package/scss/interactivity/_appearance.scss +4 -2
- package/scss/interactivity/_cursor.scss +23 -1
- package/scss/interactivity/_pointer-events.scss +4 -4
- package/scss/interactivity/_resize.scss +8 -6
- package/scss/interactivity/_scroll.scss +325 -1
- package/scss/interactivity/_touch-action.scss +52 -4
- package/scss/interactivity/_user-select.scss +10 -7
- package/scss/layout/_aspect-ratio.scss +8 -6
- package/scss/layout/_box-sizing.scss +11 -1
- package/scss/layout/_clear.scss +8 -6
- package/scss/layout/_columns.scss +25 -14
- package/scss/layout/_display.scss +37 -10
- package/scss/layout/_float.scss +6 -5
- package/scss/layout/_object-fit.scss +35 -1
- package/scss/layout/_object-position.scss +53 -1
- package/scss/layout/_overflow.scss +20 -5
- package/scss/layout/_placement.scss +70 -6
- package/scss/layout/_position.scss +10 -7
- package/scss/layout/_visibility.scss +17 -2
- package/scss/layout/_zindex.scss +41 -1
- package/scss/sizing/_height.scss +143 -1
- package/scss/sizing/_width.scss +143 -1
- package/scss/spacing/_margin.scss +545 -1
- package/scss/spacing/_padding.scss +545 -1
- package/scss/svg/_fill.scss +35 -1
- package/scss/svg/_stroke.scss +36 -2
- package/scss/table/_border-collapse.scss +11 -1
- package/scss/table/_table-layout.scss +6 -6
- package/scss/transform/_flip.scss +4 -2
- package/scss/transform/_origin.scss +53 -1
- package/scss/transform/_rotate.scss +16 -8
- package/scss/transform/_scale.scss +6 -3
- package/scss/transform/_skew.scss +23 -1
- package/scss/transform/_translate.scss +18 -9
- package/scss/typography/_font-size.scss +29 -1
- package/scss/typography/_font-style.scss +11 -1
- package/scss/typography/_font-weight.scss +53 -1
- package/scss/typography/_list-style.scss +17 -1
- package/scss/typography/_text-align.scss +8 -6
- package/scss/typography/_text-decoration.scss +23 -1
- package/scss/typography/_text-overflow.scss +12 -0
- package/scss/typography/_text-transform.scss +9 -8
- package/scss/typography/_vertical-align.scss +47 -1
- package/scss/typography/_white-space.scss +12 -8
|
@@ -1,59 +1,86 @@
|
|
|
1
|
-
/// This is equivalent to `display: none;`.
|
|
1
|
+
/// This is equivalent to `display: none;`.
|
|
2
|
+
/// @example display: none;
|
|
2
3
|
/// @name .k-d-none
|
|
3
4
|
/// @group display
|
|
4
5
|
/// @contextType css
|
|
5
6
|
|
|
6
|
-
/// This is equivalent to `display:
|
|
7
|
+
/// This is equivalent to `display: contents;`.
|
|
8
|
+
/// @example display: contents;
|
|
9
|
+
/// @name .k-d-contents
|
|
10
|
+
/// @group display
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `display: block;`.
|
|
14
|
+
/// @example display: block;
|
|
7
15
|
/// @name .k-d-block
|
|
8
16
|
/// @group display
|
|
9
17
|
/// @contextType css
|
|
10
18
|
|
|
11
|
-
/// This is equivalent to `display: inline;`.
|
|
19
|
+
/// This is equivalent to `display: inline;`.
|
|
20
|
+
/// @example display: inline;
|
|
12
21
|
/// @name .k-d-inline
|
|
13
22
|
/// @group display
|
|
14
23
|
/// @contextType css
|
|
15
24
|
|
|
16
|
-
/// This is equivalent to `display: inline-block;`.
|
|
25
|
+
/// This is equivalent to `display: inline-block;`.
|
|
26
|
+
/// @example display: inline-block;
|
|
17
27
|
/// @name .k-d-inline-block
|
|
18
28
|
/// @group display
|
|
19
29
|
/// @contextType css
|
|
20
30
|
|
|
21
|
-
/// This is equivalent to `display: flex;`.
|
|
31
|
+
/// This is equivalent to `display: flex;`.
|
|
32
|
+
/// @example display: flex;
|
|
22
33
|
/// @name .k-d-flex
|
|
23
34
|
/// @group display
|
|
24
35
|
/// @contextType css
|
|
25
36
|
|
|
26
|
-
/// This is equivalent to `display: inline-flex;`.
|
|
37
|
+
/// This is equivalent to `display: inline-flex;`.
|
|
38
|
+
/// @example display: inline-flex;
|
|
27
39
|
/// @name .k-d-inline-flex
|
|
28
40
|
/// @group display
|
|
29
41
|
/// @contextType css
|
|
30
42
|
|
|
31
43
|
/// This is equivalent to `display: grid`. It defines the element as a grid container and establishes a new grid formatting context for its contents.
|
|
44
|
+
/// @example display: grid
|
|
32
45
|
/// @name .k-d-grid
|
|
33
46
|
/// @group display
|
|
34
47
|
/// @contextType css
|
|
35
48
|
|
|
36
49
|
/// This is equivalent to `display: inline-grid`. It defines the element as a grid container and establishes a new grid formatting context for its contents.
|
|
50
|
+
/// @example display: inline-grid
|
|
37
51
|
/// @name .k-d-inline-grid
|
|
38
52
|
/// @group display
|
|
39
53
|
/// @contextType css
|
|
40
54
|
|
|
41
|
-
/// This is equivalent to `display: table;`.
|
|
55
|
+
/// This is equivalent to `display: table;`.
|
|
56
|
+
/// @example display: table;
|
|
42
57
|
/// @name .k-d-table
|
|
43
58
|
/// @group display
|
|
44
59
|
/// @contextType css
|
|
45
60
|
|
|
46
|
-
/// This is equivalent to `display: inline-table;`.
|
|
61
|
+
/// This is equivalent to `display: inline-table;`.
|
|
62
|
+
/// @example display: inline-table;
|
|
47
63
|
/// @name .k-d-inline-table
|
|
48
64
|
/// @group display
|
|
49
65
|
/// @contextType css
|
|
50
66
|
|
|
51
|
-
/// This is equivalent to `display: list-item;`.
|
|
67
|
+
/// This is equivalent to `display: list-item;`.
|
|
68
|
+
/// @example display: list-item;
|
|
52
69
|
/// @name .k-d-list-item
|
|
53
70
|
/// @group display
|
|
54
71
|
/// @contextType css
|
|
55
72
|
|
|
56
|
-
|
|
73
|
+
/// This is equivalent to `display: table-row;`.
|
|
74
|
+
/// @example display: table-row;
|
|
75
|
+
/// @name .k-d-table-row
|
|
76
|
+
/// @group display
|
|
77
|
+
/// @contextType css
|
|
78
|
+
|
|
79
|
+
/// This is equivalent to `display: table-cell;`.
|
|
80
|
+
/// @example display: table-cell;
|
|
81
|
+
/// @name .k-d-table-cell
|
|
82
|
+
/// @group display
|
|
83
|
+
/// @contextType css
|
|
57
84
|
|
|
58
85
|
@mixin kendo-utils--layout--display() {
|
|
59
86
|
|
package/scss/layout/_float.scss
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
/// This is equivalent to `float: left;`. The element must float on the left side of its containing block.
|
|
1
|
+
/// This is equivalent to `float: left;`.
|
|
2
|
+
/// @example float: left;
|
|
4
3
|
/// @name .k-float-left
|
|
5
4
|
/// @group float
|
|
6
5
|
/// @contextType css
|
|
7
6
|
|
|
8
|
-
/// This is equivalent to `float: right;`.
|
|
7
|
+
/// This is equivalent to `float: right;`.
|
|
8
|
+
/// @example float: right;
|
|
9
9
|
/// @name .k-float-right
|
|
10
10
|
/// @group float
|
|
11
11
|
/// @contextType css
|
|
12
12
|
|
|
13
|
-
/// This is equivalent to `float: none;`.
|
|
13
|
+
/// This is equivalent to `float: none;`.
|
|
14
|
+
/// @example float: none;
|
|
14
15
|
/// @name .k-float-none
|
|
15
16
|
/// @group float
|
|
16
17
|
/// @contextType css
|
|
@@ -1,4 +1,38 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `object-fit: contain;`.
|
|
2
|
+
/// @example object-fit: contain;
|
|
3
|
+
/// @name .k-object-fit-contain
|
|
4
|
+
/// @group object-fit
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `object-fit: cover;`.
|
|
8
|
+
/// @example object-fit: cover;
|
|
9
|
+
/// @name .k-object-fit-cover
|
|
10
|
+
/// @group object-fit
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `object-fit: fill;`.
|
|
14
|
+
/// @example object-fit: fill;
|
|
15
|
+
/// @name .k-object-fit-fill
|
|
16
|
+
/// @group object-fit
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `object-fit: scale-down;`.
|
|
20
|
+
/// @example object-fit: scale-down;
|
|
21
|
+
/// @name .k-object-fit-scale-down
|
|
22
|
+
/// @group object-fit
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `object-fit: initial;`.
|
|
26
|
+
/// @example object-fit: initial;
|
|
27
|
+
/// @name .k-object-fit-initial
|
|
28
|
+
/// @group object-fit
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `object-fit: none;`.
|
|
32
|
+
/// @example object-fit: none;
|
|
33
|
+
/// @name .k-object-fit-none
|
|
34
|
+
/// @group object-fit
|
|
35
|
+
/// @contextType css
|
|
2
36
|
|
|
3
37
|
@mixin kendo-utils--layout--object-fit() {
|
|
4
38
|
|
|
@@ -1,4 +1,56 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `object-position: center;`.
|
|
2
|
+
/// @example object-position: center;
|
|
3
|
+
/// @name .k-object-position-center
|
|
4
|
+
/// @group object-position
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `object-position: top;`.
|
|
8
|
+
/// @example object-position: top;
|
|
9
|
+
/// @name .k-object-position-top
|
|
10
|
+
/// @group object-position
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `object-position: right;`.
|
|
14
|
+
/// @example object-position: right;
|
|
15
|
+
/// @name .k-object-position-right
|
|
16
|
+
/// @group object-position
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `object-position: bottom;`.
|
|
20
|
+
/// @example object-position: bottom;
|
|
21
|
+
/// @name .k-object-position-bottom
|
|
22
|
+
/// @group object-position
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `object-position: left;`.
|
|
26
|
+
/// @example object-position: left;
|
|
27
|
+
/// @name .k-object-position-left
|
|
28
|
+
/// @group object-position
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `object-position: top left;`.
|
|
32
|
+
/// @example object-position: top left;
|
|
33
|
+
/// @name .k-object-position-top-left
|
|
34
|
+
/// @group object-position
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `object-position: top right;`.
|
|
38
|
+
/// @example object-position: top right;
|
|
39
|
+
/// @name .k-object-position-top-right
|
|
40
|
+
/// @group object-position
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// This is equivalent to `object-position: bottom left;`.
|
|
44
|
+
/// @example object-position: bottom left;
|
|
45
|
+
/// @name .k-object-position-bottom-left
|
|
46
|
+
/// @group object-position
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// This is equivalent to `object-position: bottom right;`.
|
|
50
|
+
/// @example object-position: bottom right;
|
|
51
|
+
/// @name .k-object-position-bottom-right
|
|
52
|
+
/// @group object-position
|
|
53
|
+
/// @contextType css
|
|
2
54
|
|
|
3
55
|
@mixin kendo-utils--layout--object-position() {
|
|
4
56
|
|
|
@@ -1,74 +1,89 @@
|
|
|
1
|
-
/// This is equivalent to `overflow: auto;`.
|
|
1
|
+
/// This is equivalent to `overflow: auto;`.
|
|
2
|
+
/// @example overflow: auto;
|
|
2
3
|
/// @name .k-overflow-auto
|
|
3
4
|
/// @group overflow
|
|
4
5
|
/// @contextType css
|
|
5
6
|
|
|
6
|
-
/// This is equivalent to `overflow: hidden;`.
|
|
7
|
+
/// This is equivalent to `overflow: hidden;`.
|
|
8
|
+
/// @example overflow: hidden;
|
|
7
9
|
/// @name .k-overflow-hidden
|
|
8
10
|
/// @group overflow
|
|
9
11
|
/// @contextType css
|
|
10
12
|
|
|
11
|
-
/// This is equivalent to `overflow: visible;`.
|
|
13
|
+
/// This is equivalent to `overflow: visible;`.
|
|
14
|
+
/// @example overflow: visible;
|
|
12
15
|
/// @name .k-overflow-visible
|
|
13
16
|
/// @group overflow
|
|
14
17
|
/// @contextType css
|
|
15
18
|
|
|
16
|
-
/// This is equivalent to `overflow: scroll;`.
|
|
19
|
+
/// This is equivalent to `overflow: scroll;`.
|
|
20
|
+
/// @example overflow: scroll;
|
|
17
21
|
/// @name .k-overflow-scroll
|
|
18
22
|
/// @group overflow
|
|
19
23
|
/// @contextType css
|
|
20
24
|
|
|
21
|
-
/// This is equivalent to `overflow: clip;`.
|
|
25
|
+
/// This is equivalent to `overflow: clip;`.
|
|
26
|
+
/// @example overflow: clip;
|
|
22
27
|
/// @name .k-overflow-clip
|
|
23
28
|
/// @group overflow
|
|
24
29
|
/// @contextType css
|
|
25
30
|
|
|
26
31
|
/// This is equivalent to `overflow-x: auto;`.
|
|
32
|
+
/// @example overflow-x: auto;
|
|
27
33
|
/// @name .k-overflow-x-auto
|
|
28
34
|
/// @group overflow
|
|
29
35
|
/// @contextType css
|
|
30
36
|
|
|
31
37
|
/// This is equivalent to `overflow-x: hidden;`.
|
|
38
|
+
/// @example overflow-x: hidden;
|
|
32
39
|
/// @name .k-overflow-x-hidden
|
|
33
40
|
/// @group overflow
|
|
34
41
|
/// @contextType css
|
|
35
42
|
|
|
36
43
|
/// This is equivalent to `overflow-x: visible;`.
|
|
44
|
+
/// @example overflow-x: visible;
|
|
37
45
|
/// @name .k-overflow-x-visible
|
|
38
46
|
/// @group overflow
|
|
39
47
|
/// @contextType css
|
|
40
48
|
|
|
41
49
|
/// This is equivalent to `overflow-x: scroll;`.
|
|
50
|
+
/// @example overflow-x: scroll;
|
|
42
51
|
/// @name .k-overflow-x-scroll
|
|
43
52
|
/// @group overflow
|
|
44
53
|
/// @contextType css
|
|
45
54
|
|
|
46
55
|
/// This is equivalent to `overflow-x: clip;`.
|
|
56
|
+
/// @example overflow-x: clip;
|
|
47
57
|
/// @name .k-overflow-x-clip
|
|
48
58
|
/// @group overflow
|
|
49
59
|
/// @contextType css
|
|
50
60
|
|
|
51
61
|
/// This is equivalent to `overflow-y: auto;`.
|
|
62
|
+
/// @example overflow-y: auto;
|
|
52
63
|
/// @name .k-overflow-y-auto
|
|
53
64
|
/// @group overflow
|
|
54
65
|
/// @contextType css
|
|
55
66
|
|
|
56
67
|
/// This is equivalent to `overflow-y: hidden;`.
|
|
68
|
+
/// @example overflow-y: hidden;
|
|
57
69
|
/// @name .k-overflow-y-hidden
|
|
58
70
|
/// @group overflow
|
|
59
71
|
/// @contextType css
|
|
60
72
|
|
|
61
73
|
/// This is equivalent to `overflow-y: visible;`.
|
|
74
|
+
/// @example overflow-y: visible;
|
|
62
75
|
/// @name .k-overflow-y-visible
|
|
63
76
|
/// @group overflow
|
|
64
77
|
/// @contextType css
|
|
65
78
|
|
|
66
79
|
/// This is equivalent to `overflow-y: scroll;`.
|
|
80
|
+
/// @example overflow-y: scroll;
|
|
67
81
|
/// @name .k-overflow-y-scroll
|
|
68
82
|
/// @group overflow
|
|
69
83
|
/// @contextType css
|
|
70
84
|
|
|
71
85
|
/// This is equivalent to `overflow-y: clip;`.
|
|
86
|
+
/// @example overflow-y: clip;
|
|
72
87
|
/// @name .k-overflow-y-clip
|
|
73
88
|
/// @group overflow
|
|
74
89
|
/// @contextType css
|
|
@@ -1,26 +1,90 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `top: 0;`.
|
|
2
|
+
/// @example top: 0;
|
|
3
|
+
/// @name .k-top-0
|
|
4
|
+
/// @group position
|
|
5
|
+
/// @contextType css
|
|
2
6
|
|
|
7
|
+
/// This is equivalent to `right: 0;`.
|
|
8
|
+
/// @example right: 0;
|
|
9
|
+
/// @name .k-right-0
|
|
10
|
+
/// @group position
|
|
11
|
+
/// @contextType css
|
|
3
12
|
|
|
4
|
-
|
|
13
|
+
/// This is equivalent to `bottom: 0;`.
|
|
14
|
+
/// @example bottom: 0;
|
|
15
|
+
/// @name .k-bottom-0
|
|
16
|
+
/// @group position
|
|
17
|
+
/// @contextType css
|
|
5
18
|
|
|
19
|
+
/// This is equivalent to `left: 0;`.
|
|
20
|
+
/// @example left: 0;
|
|
21
|
+
/// @name .k-left-0
|
|
22
|
+
/// @group position
|
|
23
|
+
/// @contextType css
|
|
6
24
|
|
|
7
25
|
/// This is equivalent to `top: 0;`.
|
|
8
|
-
/// @
|
|
26
|
+
/// @example top: 0;
|
|
27
|
+
/// @name .k-pos-top-0
|
|
9
28
|
/// @group position
|
|
10
29
|
/// @contextType css
|
|
11
30
|
|
|
12
31
|
/// This is equivalent to `right: 0;`.
|
|
13
|
-
/// @
|
|
32
|
+
/// @example right: 0;
|
|
33
|
+
/// @name .k-pos-right-0
|
|
14
34
|
/// @group position
|
|
15
35
|
/// @contextType css
|
|
16
36
|
|
|
17
37
|
/// This is equivalent to `bottom: 0;`.
|
|
18
|
-
/// @
|
|
38
|
+
/// @example bottom: 0;
|
|
39
|
+
/// @name .k-pos-bottom-0
|
|
19
40
|
/// @group position
|
|
20
41
|
/// @contextType css
|
|
21
42
|
|
|
22
43
|
/// This is equivalent to `left: 0;`.
|
|
23
|
-
/// @
|
|
44
|
+
/// @example left: 0;
|
|
45
|
+
/// @name .k-pos-left-0
|
|
46
|
+
/// @group position
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// This is equivalent to `top: 0; left: 0;`.
|
|
50
|
+
/// @example top: 0; left: 0;
|
|
51
|
+
/// @name .k-top-left-0
|
|
52
|
+
/// @group position
|
|
53
|
+
/// @contextType css
|
|
54
|
+
|
|
55
|
+
/// This is equivalent to `top: 0; right: 0;`.
|
|
56
|
+
/// @example top: 0; right: 0;
|
|
57
|
+
/// @name .k-top-right-0
|
|
58
|
+
/// @group position
|
|
59
|
+
/// @contextType css
|
|
60
|
+
|
|
61
|
+
/// This is equivalent to `bottom: 0; left: 0;`.
|
|
62
|
+
/// @example bottom: 0; left: 0;
|
|
63
|
+
/// @name .k-bottom-left-0
|
|
64
|
+
/// @group position
|
|
65
|
+
/// @contextType css
|
|
66
|
+
|
|
67
|
+
/// This is equivalent to `bottom: 0; right: 0;`.
|
|
68
|
+
/// @example bottom: 0; right: 0;
|
|
69
|
+
/// @name .k-bottom-right-0
|
|
70
|
+
/// @group position
|
|
71
|
+
/// @contextType css
|
|
72
|
+
|
|
73
|
+
/// This is equivalent to `inset: 0;`.This is a shorthand that corresponds to the top: 0; right: 0; bottom: 0; and/or left: 0 properties. It has the same multi-value syntax of the margin shorthand.
|
|
74
|
+
/// @example inset: 0;
|
|
75
|
+
/// @name .k-inset-0
|
|
76
|
+
/// @group position
|
|
77
|
+
/// @contextType css
|
|
78
|
+
|
|
79
|
+
/// This is equivalent to `inset-inline: 0;`.
|
|
80
|
+
/// @example inset-inline: 0;
|
|
81
|
+
/// @name .k-inset-x-0
|
|
82
|
+
/// @group position
|
|
83
|
+
/// @contextType css
|
|
84
|
+
|
|
85
|
+
/// This is equivalent to `inset-block: 0;`.
|
|
86
|
+
/// @example inset-block: 0;
|
|
87
|
+
/// @name .k-inset-y-0
|
|
24
88
|
/// @group position
|
|
25
89
|
/// @contextType css
|
|
26
90
|
|
|
@@ -1,26 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
/// This is equivalent to `position: static;`. The element is positioned according to the normal flow of the document. The top, right, bottom, left, and z-index properties have no effect. This is the default value.
|
|
1
|
+
/// This is equivalent to `position: static;`.
|
|
2
|
+
/// @example position: static;
|
|
4
3
|
/// @name .k-pos-static
|
|
5
4
|
/// @group position
|
|
6
5
|
/// @contextType css
|
|
7
6
|
|
|
8
|
-
/// This is equivalent to `position: relative;`.
|
|
7
|
+
/// This is equivalent to `position: relative;`.
|
|
8
|
+
/// @example position: relative;
|
|
9
9
|
/// @name .k-pos-relative
|
|
10
10
|
/// @group position
|
|
11
11
|
/// @contextType css
|
|
12
12
|
|
|
13
|
-
/// This is equivalent to `position: absolute;`.
|
|
13
|
+
/// This is equivalent to `position: absolute;`.
|
|
14
|
+
/// @example position: absolute;
|
|
14
15
|
/// @name .k-pos-absolute
|
|
15
16
|
/// @group position
|
|
16
17
|
/// @contextType css
|
|
17
18
|
|
|
18
|
-
/// This is equivalent to `position: fixed;`.
|
|
19
|
+
/// This is equivalent to `position: fixed;`.
|
|
20
|
+
/// @example position: fixed;
|
|
19
21
|
/// @name .k-pos-fixed
|
|
20
22
|
/// @group position
|
|
21
23
|
/// @contextType css
|
|
22
24
|
|
|
23
|
-
/// This is equivalent to `position: sticky;`.
|
|
25
|
+
/// This is equivalent to `position: sticky;`.
|
|
26
|
+
/// @example position: sticky;
|
|
24
27
|
/// @name .k-pos-sticky
|
|
25
28
|
/// @group position
|
|
26
29
|
/// @contextType css
|
|
@@ -1,5 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/// This is equivalent to `visibility: visble;`.
|
|
2
|
+
/// @example visibility: visble;
|
|
3
|
+
/// @name .k-visible
|
|
4
|
+
/// @group visibility
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `visibility: hidden;`.
|
|
8
|
+
/// @example visibility: hidden;
|
|
9
|
+
/// @name .k-invisible
|
|
10
|
+
/// @group visibility
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `visibility: collapse;`.
|
|
14
|
+
/// @example visibility: collapse;
|
|
15
|
+
/// @name .k-collapse
|
|
16
|
+
/// @group visibility
|
|
17
|
+
/// @contextType css
|
|
3
18
|
|
|
4
19
|
@mixin kendo-utils--layout--visibility() {
|
|
5
20
|
|
package/scss/layout/_zindex.scss
CHANGED
|
@@ -1,4 +1,44 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `z-index: 0;`.
|
|
2
|
+
/// @example z-index: 0;
|
|
3
|
+
/// @name .k-zindex-0
|
|
4
|
+
/// @group zindex
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `z-index: 10;`.
|
|
8
|
+
/// @example z-index: 10;
|
|
9
|
+
/// @name .k-zindex-10
|
|
10
|
+
/// @group zindex
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `z-index: 20;`.
|
|
14
|
+
/// @example z-index: 20;
|
|
15
|
+
/// @name .k-zindex-20
|
|
16
|
+
/// @group zindex
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `z-index: 30;`.
|
|
20
|
+
/// @example z-index: 30;
|
|
21
|
+
/// @name .k-zindex-30
|
|
22
|
+
/// @group zindex
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `z-index: 40;`.
|
|
26
|
+
/// @example z-index: 40;
|
|
27
|
+
/// @name .k-zindex-40
|
|
28
|
+
/// @group zindex
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `z-index: 50;`.
|
|
32
|
+
/// @example z-index: 50;
|
|
33
|
+
/// @name .k-zindex-50
|
|
34
|
+
/// @group zindex
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `z-index: auto;`.
|
|
38
|
+
/// @example z-index: auto;
|
|
39
|
+
/// @name .k-zindex-auto
|
|
40
|
+
/// @group zindex
|
|
41
|
+
/// @contextType css
|
|
2
42
|
|
|
3
43
|
@mixin kendo-utils--layout--zindex() {
|
|
4
44
|
|
package/scss/sizing/_height.scss
CHANGED
|
@@ -1,4 +1,146 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `height: 0;`.
|
|
2
|
+
/// @example height: 0;
|
|
3
|
+
/// @name .k-h-0
|
|
4
|
+
/// @group height
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `height: 1px;`.
|
|
8
|
+
/// @example height: 1px;
|
|
9
|
+
/// @name .k-h-1px
|
|
10
|
+
/// @group height
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `height: 0.25rem;`.
|
|
14
|
+
/// @example height: 0.25rem;
|
|
15
|
+
/// @name .k-h-1
|
|
16
|
+
/// @group height
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `min-height: 100%;`.
|
|
20
|
+
/// @example min-height: 100%;
|
|
21
|
+
/// @name .k-h-full
|
|
22
|
+
/// @group height
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `height: 100vh;`.
|
|
26
|
+
/// @example height: 100vh;
|
|
27
|
+
/// @name .k-h-screen
|
|
28
|
+
/// @group height
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `height: min-content;`.
|
|
32
|
+
/// @example height: min-content;
|
|
33
|
+
/// @name .k-h-min
|
|
34
|
+
/// @group height
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `height: max-content;`.
|
|
38
|
+
/// @example height: max-content;
|
|
39
|
+
/// @name .k-h-max
|
|
40
|
+
/// @group height
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// This is equivalent to `height: fit-content;`.
|
|
44
|
+
/// @example height: fit-content;
|
|
45
|
+
/// @name .k-h-fit
|
|
46
|
+
/// @group height
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// This is equivalent to `min-height: 0;`.
|
|
50
|
+
/// @example min-height: 0;
|
|
51
|
+
/// @name .k-min-h-0
|
|
52
|
+
/// @group height
|
|
53
|
+
/// @contextType css
|
|
54
|
+
|
|
55
|
+
/// This is equivalent to `min-height: 1px;`.
|
|
56
|
+
/// @example min-height: 1px;
|
|
57
|
+
/// @name .k-min-h-1px
|
|
58
|
+
/// @group height
|
|
59
|
+
/// @contextType css
|
|
60
|
+
|
|
61
|
+
/// This is equivalent to `min-height: 0.25rem;`.
|
|
62
|
+
/// @example min-height: 0.25rem;
|
|
63
|
+
/// @name .k-min-h-1
|
|
64
|
+
/// @group height
|
|
65
|
+
/// @contextType css
|
|
66
|
+
|
|
67
|
+
/// This is equivalent to `min-height: 100%;`.
|
|
68
|
+
/// @example min-height: 100%;
|
|
69
|
+
/// @name .k-min-h-full
|
|
70
|
+
/// @group height
|
|
71
|
+
/// @contextType css
|
|
72
|
+
|
|
73
|
+
/// This is equivalent to `min-height: 100vh;`.
|
|
74
|
+
/// @example min-height: 100vh;
|
|
75
|
+
/// @name .k-min-h-screen
|
|
76
|
+
/// @group height
|
|
77
|
+
/// @contextType css
|
|
78
|
+
|
|
79
|
+
/// This is equivalent to `min-height: min-content;`.
|
|
80
|
+
/// @example min-height: min-content;
|
|
81
|
+
/// @name .k-min-h-min
|
|
82
|
+
/// @group height
|
|
83
|
+
/// @contextType css
|
|
84
|
+
|
|
85
|
+
/// This is equivalent to `min-height: max-content;`.
|
|
86
|
+
/// @example min-height: max-content;
|
|
87
|
+
/// @name .k-min-h-max
|
|
88
|
+
/// @group height
|
|
89
|
+
/// @contextType css
|
|
90
|
+
|
|
91
|
+
/// This is equivalent to `min-height: fit-content;`.
|
|
92
|
+
/// @example min-height: fit-content;
|
|
93
|
+
/// @name .k-min-h-fit
|
|
94
|
+
/// @group height
|
|
95
|
+
/// @contextType css
|
|
96
|
+
|
|
97
|
+
/// This is equivalent to `max-height: 0;`.
|
|
98
|
+
/// @example max-height: 0;
|
|
99
|
+
/// @name .k-max-h-0
|
|
100
|
+
/// @group height
|
|
101
|
+
/// @contextType css
|
|
102
|
+
|
|
103
|
+
/// This is equivalent to `max-height: 1px;`.
|
|
104
|
+
/// @example max-height: 1px;
|
|
105
|
+
/// @name .k-max-h-1px
|
|
106
|
+
/// @group height
|
|
107
|
+
/// @contextType css
|
|
108
|
+
|
|
109
|
+
/// This is equivalent to `max-height: 0.25rem;`.
|
|
110
|
+
/// @example max-height: 0.25rem;
|
|
111
|
+
/// @name .k-max-h-1
|
|
112
|
+
/// @group height
|
|
113
|
+
/// @contextType css
|
|
114
|
+
|
|
115
|
+
/// This is equivalent to `max-height: 100%;`.
|
|
116
|
+
/// @example max-height: 100%;
|
|
117
|
+
/// @name .k-max-h-full
|
|
118
|
+
/// @group height
|
|
119
|
+
/// @contextType css
|
|
120
|
+
|
|
121
|
+
/// This is equivalent to `max-height: 100vh;`.
|
|
122
|
+
/// @example max-height: 100vh;
|
|
123
|
+
/// @name .k-max-h-screen
|
|
124
|
+
/// @group height
|
|
125
|
+
/// @contextType css
|
|
126
|
+
|
|
127
|
+
/// This is equivalent to `max-height: min-content;`.
|
|
128
|
+
/// @example max-height: min-content;
|
|
129
|
+
/// @name .k-max-h-min
|
|
130
|
+
/// @group height
|
|
131
|
+
/// @contextType css
|
|
132
|
+
|
|
133
|
+
/// This is equivalent to `max-height: max-content;`.
|
|
134
|
+
/// @example max-height: max-content;
|
|
135
|
+
/// @name .k-max-h-max
|
|
136
|
+
/// @group height
|
|
137
|
+
/// @contextType css
|
|
138
|
+
|
|
139
|
+
/// This is equivalent to `max-height: fit-content;`.
|
|
140
|
+
/// @example max-height: fit-content;
|
|
141
|
+
/// @name .k-max-h-fit
|
|
142
|
+
/// @group height
|
|
143
|
+
/// @contextType css
|
|
2
144
|
|
|
3
145
|
@mixin kendo-utils--sizing--height() {
|
|
4
146
|
|