@progress/kendo-theme-utils 6.2.1-dev.0 → 6.2.1-dev.151
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 +5166 -1018
- package/dist/all.scss +5365 -511
- package/dist/meta/sassdoc-data.json +25209 -1198
- package/dist/meta/sassdoc-raw-data.json +25209 -1198
- package/dist/meta/variables.json +1 -1
- package/package.json +3 -3
- package/scss/_variables.scss +188 -32
- package/scss/background/_background-clip.scss +31 -0
- package/scss/background/_background-color.scss +23 -1
- package/scss/background/index.import.scss +2 -0
- 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 +19 -0
- package/scss/effects/index.import.scss +7 -0
- package/scss/filter/_backdrop.scss +37 -0
- package/scss/filter/index.import.scss +5 -0
- 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/index.import.scss +6 -2
- 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 +19 -0
- package/scss/layout/_clear.scss +8 -6
- package/scss/layout/_columns.scss +85 -0
- package/scss/layout/_display.scss +38 -9
- package/scss/layout/_float.scss +6 -5
- package/scss/layout/_object-fit.scss +43 -0
- package/scss/layout/_object-position.scss +61 -0
- package/scss/layout/_overflow.scss +22 -6
- package/scss/layout/_placement.scss +174 -0
- package/scss/layout/_position.scss +10 -111
- package/scss/layout/_visibility.scss +17 -2
- package/scss/layout/_zindex.scss +41 -1
- package/scss/layout/index.import.scss +10 -0
- 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 +43 -0
- package/scss/svg/_stroke.scss +43 -0
- package/scss/svg/index.import.scss +7 -0
- 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 +25 -0
- package/scss/typography/_text-align.scss +8 -6
- package/scss/typography/_text-decoration.scss +31 -0
- package/scss/typography/_text-overflow.scss +12 -0
- package/scss/typography/_text-transform.scss +9 -8
- package/scss/typography/_vertical-align.scss +55 -0
- package/scss/typography/_white-space.scss +12 -8
- package/scss/typography/index.import.scss +6 -3
|
@@ -1,4 +1,56 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `transform-origin: center;`.
|
|
2
|
+
/// @example transform-origin: center;
|
|
3
|
+
/// @name .k-origin-center
|
|
4
|
+
/// @group transform-origin
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `transform-origin: top;`.
|
|
8
|
+
/// @example transform-origin: top;
|
|
9
|
+
/// @name .k-origin-top
|
|
10
|
+
/// @group transform-origin
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `transform-origin: right;`.
|
|
14
|
+
/// @example transform-origin: right;
|
|
15
|
+
/// @name .k-origin-right
|
|
16
|
+
/// @group transform-origin
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `transform-origin: bottom;`.
|
|
20
|
+
/// @example transform-origin: bottom;
|
|
21
|
+
/// @name .k-origin-bottom
|
|
22
|
+
/// @group transform-origin
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `transform-origin: left;`.
|
|
26
|
+
/// @example transform-origin: left;
|
|
27
|
+
/// @name .k-origin-left
|
|
28
|
+
/// @group transform-origin
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `transform-origin: top-left;`.
|
|
32
|
+
/// @example transform-origin: top-left;
|
|
33
|
+
/// @name .k-origin-top-left
|
|
34
|
+
/// @group transform-origin
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `transform-origin: top-right;`.
|
|
38
|
+
/// @example transform-origin: top-right;
|
|
39
|
+
/// @name .k-origin-top-right
|
|
40
|
+
/// @group transform-origin
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// This is equivalent to `transform-origin: bottom-left;`.
|
|
44
|
+
/// @example transform-origin: bottom-left;
|
|
45
|
+
/// @name .k-origin-bottom-left
|
|
46
|
+
/// @group transform-origin
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// This is equivalent to `transform-origin: bottom-right;`.
|
|
50
|
+
/// @example transform-origin: bottom-right;
|
|
51
|
+
/// @name .k-origin-bottom-right
|
|
52
|
+
/// @group transform-origin
|
|
53
|
+
/// @contextType css
|
|
2
54
|
|
|
3
55
|
@mixin kendo-utils--transform--origin() {
|
|
4
56
|
|
|
@@ -1,39 +1,47 @@
|
|
|
1
|
-
/// This is equivalent to `transform: rotate( 0 );`.
|
|
1
|
+
/// This is equivalent to `transform: rotate( 0 );`.
|
|
2
|
+
/// @example transform: rotate( 0 );
|
|
2
3
|
/// @name .k-rotate-0
|
|
3
4
|
/// @group transform
|
|
4
5
|
/// @contextType css
|
|
5
6
|
|
|
6
|
-
/// This is equivalent to `transform: rotate( 45deg );`.
|
|
7
|
+
/// This is equivalent to `transform: rotate( 45deg );`.
|
|
8
|
+
/// @example transform: rotate( 45deg );
|
|
7
9
|
/// @name .k-rotate-45
|
|
8
10
|
/// @group transform
|
|
9
11
|
/// @contextType css
|
|
10
12
|
|
|
11
|
-
/// This is equivalent to `transform: rotate( 90deg );`.
|
|
13
|
+
/// This is equivalent to `transform: rotate( 90deg );`.
|
|
14
|
+
/// @example transform: rotate( 90deg );
|
|
12
15
|
/// @name .k-rotate-90
|
|
13
16
|
/// @group transform
|
|
14
17
|
/// @contextType css
|
|
15
18
|
|
|
16
|
-
/// This is equivalent to `transform: rotate( 135deg );`.
|
|
19
|
+
/// This is equivalent to `transform: rotate( 135deg );`.
|
|
20
|
+
/// @example transform: rotate( 135deg );
|
|
17
21
|
/// @name .k-rotate-135
|
|
18
22
|
/// @group transform
|
|
19
23
|
/// @contextType css
|
|
20
24
|
|
|
21
|
-
/// This is equivalent to `transform: rotate( 180deg );`.
|
|
25
|
+
/// This is equivalent to `transform: rotate( 180deg );`.
|
|
26
|
+
/// @example transform: rotate( 180deg );
|
|
22
27
|
/// @name .k-rotate-180
|
|
23
28
|
/// @group transform
|
|
24
29
|
/// @contextType css
|
|
25
30
|
|
|
26
|
-
/// This is equivalent to `transform: rotate( 225deg );`.
|
|
31
|
+
/// This is equivalent to `transform: rotate( 225deg );`.
|
|
32
|
+
/// @example transform: rotate( 225deg );
|
|
27
33
|
/// @name .k-rotate-225
|
|
28
34
|
/// @group transform
|
|
29
35
|
/// @contextType css
|
|
30
36
|
|
|
31
|
-
/// This is equivalent to `transform: rotate( 270deg );`.
|
|
37
|
+
/// This is equivalent to `transform: rotate( 270deg );`.
|
|
38
|
+
/// @example transform: rotate( 270deg );
|
|
32
39
|
/// @name .k-rotate-270
|
|
33
40
|
/// @group transform
|
|
34
41
|
/// @contextType css
|
|
35
42
|
|
|
36
|
-
/// This is equivalent to `transform: rotate( 315deg );`.
|
|
43
|
+
/// This is equivalent to `transform: rotate( 315deg );`.
|
|
44
|
+
/// @example transform: rotate( 315deg );
|
|
37
45
|
/// @name .k-rotate-315
|
|
38
46
|
/// @group transform
|
|
39
47
|
/// @contextType css
|
|
@@ -1,14 +1,17 @@
|
|
|
1
|
-
/// This is equivalent to `transform: scale( 0, 0 );`.
|
|
1
|
+
/// This is equivalent to `transform: scale( 0, 0 );`.
|
|
2
|
+
/// @example transform: scale( 0, 0 );
|
|
2
3
|
/// @name .k-scale-0
|
|
3
4
|
/// @group transform
|
|
4
5
|
/// @contextType css
|
|
5
6
|
|
|
6
|
-
/// This is equivalent to `transform: scale( 1, 1 );`.
|
|
7
|
+
/// This is equivalent to `transform: scale( 1, 1 );`.
|
|
8
|
+
/// @example transform: scale( 1, 1 );
|
|
7
9
|
/// @name .k-scale-1
|
|
8
10
|
/// @group transform
|
|
9
11
|
/// @contextType css
|
|
10
12
|
|
|
11
|
-
/// This is equivalent to `transform: scale( 2, 2 );`.
|
|
13
|
+
/// This is equivalent to `transform: scale( 2, 2 );`.
|
|
14
|
+
/// @example transform: scale( 2, 2 );
|
|
12
15
|
/// @name .k-scale-2
|
|
13
16
|
/// @group transform
|
|
14
17
|
/// @contextType css
|
|
@@ -1,4 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `transform: skewX(0deg);`.
|
|
2
|
+
/// @example transform: skewX(0deg);
|
|
3
|
+
/// @name .k-skew-x-0
|
|
4
|
+
/// @group skew
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `transform: skewX(1deg);`.
|
|
8
|
+
/// @example transform: skewX(1deg);
|
|
9
|
+
/// @name .k-skew-x-1
|
|
10
|
+
/// @group skew
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `transform: skewY(0deg);`.
|
|
14
|
+
/// @example transform: skewY(0deg);
|
|
15
|
+
/// @name .k-skew-y-0
|
|
16
|
+
/// @group skew
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `transform: skewY(1deg);`.
|
|
20
|
+
/// @example transform: skewY(1deg);
|
|
21
|
+
/// @name .k-skew-y-1
|
|
22
|
+
/// @group skew
|
|
23
|
+
/// @contextType css
|
|
2
24
|
|
|
3
25
|
// sass-lint:disable function-name-format
|
|
4
26
|
@function __skew-x( $val ) {
|
|
@@ -1,44 +1,53 @@
|
|
|
1
|
-
/// This is equivalent to `transform: translate( 0, 0 );`.
|
|
1
|
+
/// This is equivalent to `transform: translate( 0, 0 );`.
|
|
2
|
+
/// @example transform: translate( 0, 0 );
|
|
2
3
|
/// @name .k-translate-0
|
|
3
4
|
/// @group transform
|
|
4
5
|
/// @contextType css
|
|
5
6
|
|
|
6
|
-
/// This is equivalent to `transform: translate( 0, 50% );`.
|
|
7
|
+
/// This is equivalent to `transform: translate( 0, 50% );`.
|
|
8
|
+
/// @example transform: translate( 0, 50% );
|
|
7
9
|
/// @name .k-translate-0-50
|
|
8
10
|
/// @group transform
|
|
9
11
|
/// @contextType css
|
|
10
12
|
|
|
11
|
-
/// This is equivalent to `transform: translate( 0, 100% );`.
|
|
13
|
+
/// This is equivalent to `transform: translate( 0, 100% );`.
|
|
14
|
+
/// @example transform: translate( 0, 100% );
|
|
12
15
|
/// @name .k-translate-0-100
|
|
13
16
|
/// @group transform
|
|
14
17
|
/// @contextType css
|
|
15
18
|
|
|
16
|
-
/// This is equivalent to `transform: translate( 50%, 0 );`.
|
|
19
|
+
/// This is equivalent to `transform: translate( 50%, 0 );`.
|
|
20
|
+
/// @example transform: translate( 50%, 0 );
|
|
17
21
|
/// @name .k-translate-50-0
|
|
18
22
|
/// @group transform
|
|
19
23
|
/// @contextType css
|
|
20
24
|
|
|
21
|
-
/// This is equivalent to `transform: translate( 50%, 50% );`.
|
|
25
|
+
/// This is equivalent to `transform: translate( 50%, 50% );`.
|
|
26
|
+
/// @example transform: translate( 50%, 50% );
|
|
22
27
|
/// @name .k-translate-50-50
|
|
23
28
|
/// @group transform
|
|
24
29
|
/// @contextType css
|
|
25
30
|
|
|
26
|
-
/// This is equivalent to `transform: translate( 50%, 100% );`.
|
|
31
|
+
/// This is equivalent to `transform: translate( 50%, 100% );`.
|
|
32
|
+
/// @example transform: translate( 50%, 100% );
|
|
27
33
|
/// @name .k-translate-50-100
|
|
28
34
|
/// @group transform
|
|
29
35
|
/// @contextType css
|
|
30
36
|
|
|
31
|
-
/// This is equivalent to `transform: translate( 100%, 0 );`.
|
|
37
|
+
/// This is equivalent to `transform: translate( 100%, 0 );`.
|
|
38
|
+
/// @example transform: translate( 100%, 0 );
|
|
32
39
|
/// @name .k-translate-100-0
|
|
33
40
|
/// @group transform
|
|
34
41
|
/// @contextType css
|
|
35
42
|
|
|
36
|
-
/// This is equivalent to `transform: translate( 100%, 50% );`.
|
|
43
|
+
/// This is equivalent to `transform: translate( 100%, 50% );`.
|
|
44
|
+
/// @example transform: translate( 100%, 50% );
|
|
37
45
|
/// @name .k-translate-100-50
|
|
38
46
|
/// @group transform
|
|
39
47
|
/// @contextType css
|
|
40
48
|
|
|
41
|
-
/// This is equivalent to `transform: translate( 100%, 100% );`.
|
|
49
|
+
/// This is equivalent to `transform: translate( 100%, 100% );`.
|
|
50
|
+
/// @example transform: translate( 100%, 100% );
|
|
42
51
|
/// @name .k-translate-100-100
|
|
43
52
|
/// @group transform
|
|
44
53
|
/// @contextType css
|
|
@@ -1,4 +1,32 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `font-size: 10px;`.
|
|
2
|
+
/// @example font-size: 10px;
|
|
3
|
+
/// @name .k-font-xs
|
|
4
|
+
/// @group font-size
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `font-size: 12px;`.
|
|
8
|
+
/// @example font-size: 12px;
|
|
9
|
+
/// @name .k-font-sm
|
|
10
|
+
/// @group font-size
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `font-size: 14px;`.
|
|
14
|
+
/// @example font-size: 14px;
|
|
15
|
+
/// @name .k-font-md
|
|
16
|
+
/// @group font-size
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `font-size: 16px;`.
|
|
20
|
+
/// @example font-size: 16px;
|
|
21
|
+
/// @name .k-font-lg
|
|
22
|
+
/// @group font-size
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `font-size: 20px;`.
|
|
26
|
+
/// @example font-size: 20px;
|
|
27
|
+
/// @name .k-font-xl
|
|
28
|
+
/// @group font-size
|
|
29
|
+
/// @contextType css
|
|
2
30
|
|
|
3
31
|
@mixin kendo-utils--typography--font-size() {
|
|
4
32
|
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `font-style: italic;`.
|
|
2
|
+
/// @example font-style: italic;
|
|
3
|
+
/// @name .k-font-italic
|
|
4
|
+
/// @group font-style
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `font-style: normal;`.
|
|
8
|
+
/// @example font-style: normal;
|
|
9
|
+
/// @name .k-font-non-italic
|
|
10
|
+
/// @group font-style
|
|
11
|
+
/// @contextType css
|
|
2
12
|
|
|
3
13
|
@mixin kendo-utils--typography--font-style() {
|
|
4
14
|
|
|
@@ -1,4 +1,56 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `font-weight: 100;`.
|
|
2
|
+
/// @example font-weight: 100;
|
|
3
|
+
/// @name .k-font-thin
|
|
4
|
+
/// @group font-weight
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `font-weight: 200;`.
|
|
8
|
+
/// @example font-weight: 200;
|
|
9
|
+
/// @name .k-font-extralight
|
|
10
|
+
/// @group font-weight
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `font-weight: 300;`.
|
|
14
|
+
/// @example font-weight: 300;
|
|
15
|
+
/// @name .k-font-light
|
|
16
|
+
/// @group font-weight
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `font-weight: 400;`.
|
|
20
|
+
/// @example font-weight: 400;
|
|
21
|
+
/// @name .k-font-normal
|
|
22
|
+
/// @group font-weight
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `font-weight: 500;`.
|
|
26
|
+
/// @example font-weight: 500;
|
|
27
|
+
/// @name .k-font-medium
|
|
28
|
+
/// @group font-weight
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `font-weight: 600;`.
|
|
32
|
+
/// @example font-weight: 600;
|
|
33
|
+
/// @name .k-font-semibold
|
|
34
|
+
/// @group font-weight
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `font-weight: 700;`.
|
|
38
|
+
/// @example font-weight: 700;
|
|
39
|
+
/// @name .k-font-bold
|
|
40
|
+
/// @group font-weight
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// This is equivalent to `font-weight: 800;`.
|
|
44
|
+
/// @example font-weight: 800;
|
|
45
|
+
/// @name .k-font-extrabold
|
|
46
|
+
/// @group font-weight
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// This is equivalent to `font-weight: 900;`.
|
|
50
|
+
/// @example font-weight: 900;
|
|
51
|
+
/// @name .k-font-black
|
|
52
|
+
/// @group font-weight
|
|
53
|
+
/// @contextType css
|
|
2
54
|
|
|
3
55
|
@mixin kendo-utils--typography--font-weight() {
|
|
4
56
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/// This is equivalent to `list-style-type: none;`.
|
|
2
|
+
/// @example list-style-type: none;
|
|
3
|
+
/// @name .k-list-none
|
|
4
|
+
/// @group list-style
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `list-style-type: disc;`.
|
|
8
|
+
/// @example list-style-type: disc;
|
|
9
|
+
/// @name .k-list-disc
|
|
10
|
+
/// @group list-style
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `list-style-type: decimal;`.The marker of list items is a number.
|
|
14
|
+
/// @example list-style-type: decimal;
|
|
15
|
+
/// @name .k-list-decimal
|
|
16
|
+
/// @group list-style
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
@mixin kendo-utils--typography--list-style-type() {
|
|
20
|
+
|
|
21
|
+
// list-style-type utility classes
|
|
22
|
+
$kendo-utils-list-style-type: k-map-get( $kendo-utils, "list-style-type" ) !default;
|
|
23
|
+
@include generate-utils( list, list-style-type, $kendo-utils-list-style-type );
|
|
24
|
+
|
|
25
|
+
}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
/// This is equivalent to `text-align: left;`. The inline contents are aligned to the left edge of the line box.
|
|
1
|
+
/// This is equivalent to `text-align: left;`.
|
|
2
|
+
/// @example text-align: left;
|
|
4
3
|
/// @name .k-text-left
|
|
5
4
|
/// @group text-align
|
|
6
5
|
/// @contextType css
|
|
7
6
|
|
|
8
|
-
/// This is equivalent to `text-align: right;`.
|
|
7
|
+
/// This is equivalent to `text-align: right;`.
|
|
8
|
+
/// @example text-align: right;
|
|
9
9
|
/// @name .k-text-right
|
|
10
10
|
/// @group text-align
|
|
11
11
|
/// @contextType css
|
|
12
12
|
|
|
13
|
-
/// This is equivalent to `text-align: center;`.
|
|
13
|
+
/// This is equivalent to `text-align: center;`.
|
|
14
|
+
/// @example text-align: center;
|
|
14
15
|
/// @name .k-text-center
|
|
15
16
|
/// @group text-align
|
|
16
17
|
/// @contextType css
|
|
17
18
|
|
|
18
|
-
/// This is equivalent to `text-align: justify;`.
|
|
19
|
+
/// This is equivalent to `text-align: justify;`.
|
|
20
|
+
/// @example text-align: justify;
|
|
19
21
|
/// @name .k-text-justify
|
|
20
22
|
/// @group text-align
|
|
21
23
|
/// @contextType css
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/// This is equivalent to `text-decoration: underline;`.
|
|
2
|
+
/// @example text-decoration: underline;
|
|
3
|
+
/// @name .k-underline
|
|
4
|
+
/// @group text-decoration
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `text-decoration: overline;`.
|
|
8
|
+
/// @example text-decoration: overline;
|
|
9
|
+
/// @name .k-overline
|
|
10
|
+
/// @group text-decoration
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `text-decoration: line-through;`.
|
|
14
|
+
/// @example text-decoration: line-through;
|
|
15
|
+
/// @name .k-line-through
|
|
16
|
+
/// @group text-decoration
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `text-decoration: none-decoration;`.
|
|
20
|
+
/// @example text-decoration: none-decoration;
|
|
21
|
+
/// @name .k-none-decoration
|
|
22
|
+
/// @group text-decoration
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
@mixin kendo-utils--typography--text-decoration() {
|
|
26
|
+
|
|
27
|
+
// text-decoration utility classes
|
|
28
|
+
$kendo-utils-text-decoration: k-map-get( $kendo-utils, "text-decoration" ) !default;
|
|
29
|
+
@include generate-utils( text, text-decoration, $kendo-utils-text-decoration );
|
|
30
|
+
|
|
31
|
+
}
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
/// This is equivalent to `text-overflow: clip;`.
|
|
2
|
+
/// @example text-overflow: clip;
|
|
3
|
+
/// @name .k-text-clip
|
|
4
|
+
/// @group text-overflow
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `text-overflow: ellipsis; white-space: nowrap; overflow: hidden;`.
|
|
8
|
+
/// @example text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
|
|
9
|
+
/// @name .k-text-ellipsis
|
|
10
|
+
/// @group text-overflow
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
1
13
|
@mixin kendo-utils--typography--text-overflow() {
|
|
2
14
|
|
|
3
15
|
// Text overflow utility classes
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
///
|
|
4
|
-
/// @name k-text-lowercase
|
|
1
|
+
/// This is equivalent to `text-transform: lowercase;`.
|
|
2
|
+
/// @example text-transform: lowercase;
|
|
3
|
+
/// @name .k-text-lowercase
|
|
5
4
|
/// @group text-transform
|
|
6
5
|
/// @contextType css
|
|
7
6
|
|
|
8
|
-
/// This is equivalent to `text-transform: uppercase;`.
|
|
9
|
-
/// @
|
|
7
|
+
/// This is equivalent to `text-transform: uppercase;`.
|
|
8
|
+
/// @example text-transform: uppercase;
|
|
9
|
+
/// @name .k-text-uppercase
|
|
10
10
|
/// @group text-transform
|
|
11
11
|
/// @contextType css
|
|
12
12
|
|
|
13
|
-
/// This is equivalent to `text-transform: capitalize;`.
|
|
14
|
-
/// @
|
|
13
|
+
/// This is equivalent to `text-transform: capitalize;`.
|
|
14
|
+
/// @example text-transform: capitalize;
|
|
15
|
+
/// @name .k-text-capitalize
|
|
15
16
|
/// @group text-transform
|
|
16
17
|
/// @contextType css
|
|
17
18
|
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/// This is equivalent to `vertical-align: baseline;`.
|
|
2
|
+
/// @example vertical-align: baseline;
|
|
3
|
+
/// @name .k-align-baseline
|
|
4
|
+
/// @group vertical-align
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `vertical-align: top;`.
|
|
8
|
+
/// @example vertical-align: top;
|
|
9
|
+
/// @name .k-align-top
|
|
10
|
+
/// @group vertical-align
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `vertical-align: middle;`.
|
|
14
|
+
/// @example vertical-align: middle;
|
|
15
|
+
/// @name .k-align-middle
|
|
16
|
+
/// @group vertical-align
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `vertical-align: bottom;`.
|
|
20
|
+
/// @example vertical-align: bottom;
|
|
21
|
+
/// @name .k-align-bottom
|
|
22
|
+
/// @group vertical-align
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `vertical-align: text-top;`.
|
|
26
|
+
/// @example vertical-align: text-top;
|
|
27
|
+
/// @name .k-align-text-top
|
|
28
|
+
/// @group vertical-align
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `vertical-align: text-bottom;`.
|
|
32
|
+
/// @example vertical-align: text-bottom;
|
|
33
|
+
/// @name .k-align-text-bottom
|
|
34
|
+
/// @group vertical-align
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `vertical-align: sub;`.
|
|
38
|
+
/// @example vertical-align: sub;
|
|
39
|
+
/// @name .k-align-sub
|
|
40
|
+
/// @group vertical-align
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// This is equivalent to `vertical-align: super;`.
|
|
44
|
+
/// @example vertical-align: super;
|
|
45
|
+
/// @name .k-align-super
|
|
46
|
+
/// @group vertical-align
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
@mixin kendo-utils--typography--vertical-align() {
|
|
50
|
+
|
|
51
|
+
// vertical-align utility classes
|
|
52
|
+
$kendo-utils-vertical-align: k-map-get( $kendo-utils, "vertical-align" ) !default;
|
|
53
|
+
@include generate-utils( align, vertical-align, $kendo-utils-vertical-align );
|
|
54
|
+
|
|
55
|
+
}
|
|
@@ -1,31 +1,35 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
/// This is equivalent to `white-space: normal;`. Sequences of white space are collapsed. Newline characters in the source are handled the same as other white space. Lines are broken as necessary to fill line boxes.
|
|
1
|
+
/// This is equivalent to `white-space: normal;`.
|
|
2
|
+
/// @example white-space: normal;
|
|
4
3
|
/// @name .k-white-space-normal
|
|
5
4
|
/// @group white-space
|
|
6
5
|
/// @contextType css
|
|
7
6
|
|
|
8
|
-
/// This is equivalent to `white-space: nowrap;`.
|
|
7
|
+
/// This is equivalent to `white-space: nowrap;`.
|
|
8
|
+
/// @example white-space: nowrap;
|
|
9
9
|
/// @name .k-white-space-nowrap
|
|
10
10
|
/// @group white-space
|
|
11
11
|
/// @contextType css
|
|
12
12
|
|
|
13
|
-
/// This is equivalent to `white-space: pre;`.
|
|
13
|
+
/// This is equivalent to `white-space: pre;`.
|
|
14
|
+
/// @example white-space: pre;
|
|
14
15
|
/// @name .k-white-space-pre
|
|
15
16
|
/// @group white-space
|
|
16
17
|
/// @contextType css
|
|
17
18
|
|
|
18
|
-
/// This is equivalent to `white-space: pre-wrap;`.
|
|
19
|
+
/// This is equivalent to `white-space: pre-wrap;`.
|
|
20
|
+
/// @example white-space: pre-wrap;
|
|
19
21
|
/// @name .k-white-space-pre-wrap
|
|
20
22
|
/// @group white-space
|
|
21
23
|
/// @contextType css
|
|
22
24
|
|
|
23
|
-
/// This is equivalent to `white-space: pre-line;`.
|
|
25
|
+
/// This is equivalent to `white-space: pre-line;`.
|
|
26
|
+
/// @example white-space: pre-line;
|
|
24
27
|
/// @name .k-white-space-pre-line
|
|
25
28
|
/// @group white-space
|
|
26
29
|
/// @contextType css
|
|
27
30
|
|
|
28
|
-
/// This is equivalent to `white-space: break-spaces;`.
|
|
31
|
+
/// This is equivalent to `white-space: break-spaces;`.
|
|
32
|
+
/// @example white-space: break-spaces;
|
|
29
33
|
/// @name .k-white-space-break-spaces
|
|
30
34
|
/// @group white-space
|
|
31
35
|
/// @contextType css
|
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
// font variant
|
|
7
7
|
// letter spacing
|
|
8
8
|
// line height
|
|
9
|
-
|
|
9
|
+
@import "./_list-style.scss";
|
|
10
10
|
@import "./_text-align.scss";
|
|
11
11
|
@import "./_text-color.scss";
|
|
12
|
-
|
|
12
|
+
@import "./_text-decoration.scss";
|
|
13
13
|
@import "./_text-overflow.scss";
|
|
14
14
|
@import "./_text-transform.scss";
|
|
15
15
|
// text indent
|
|
16
|
-
|
|
16
|
+
@import "./_vertical-align.scss";
|
|
17
17
|
@import "./_white-space.scss";
|
|
18
18
|
|
|
19
19
|
|
|
@@ -21,9 +21,12 @@
|
|
|
21
21
|
@include kendo-utils--typography--font-size();
|
|
22
22
|
@include kendo-utils--typography--font-style();
|
|
23
23
|
@include kendo-utils--typography--font-weight();
|
|
24
|
+
@include kendo-utils--typography--list-style-type();
|
|
24
25
|
@include kendo-utils--typography--text-align();
|
|
25
26
|
@include kendo-utils--typography--text-color();
|
|
27
|
+
@include kendo-utils--typography--text-decoration();
|
|
26
28
|
@include kendo-utils--typography--text-overflow();
|
|
27
29
|
@include kendo-utils--typography--text-transform();
|
|
30
|
+
@include kendo-utils--typography--vertical-align();
|
|
28
31
|
@include kendo-utils--typography--white-space();
|
|
29
32
|
}
|