@syncfusion/ej2-layouts 25.2.3 → 26.1.38
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/.eslintrc.json +3 -2
- package/dist/ej2-layouts.min.js +2 -2
- package/dist/ej2-layouts.umd.min.js +2 -2
- package/dist/ej2-layouts.umd.min.js.map +1 -1
- package/dist/es6/ej2-layouts.es2015.js +215 -140
- package/dist/es6/ej2-layouts.es2015.js.map +1 -1
- package/dist/es6/ej2-layouts.es5.js +243 -167
- package/dist/es6/ej2-layouts.es5.js.map +1 -1
- package/dist/global/ej2-layouts.min.js +2 -2
- package/dist/global/ej2-layouts.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/dashboard-layout/dashboard-layout.d.ts +2 -2
- package/src/dashboard-layout/dashboard-layout.js +55 -76
- package/src/splitter/splitter.js +81 -41
- package/src/timeline/timeline-model.d.ts +5 -5
- package/src/timeline/timeline.d.ts +6 -3
- package/src/timeline/timeline.js +107 -33
- package/styles/avatar/_bootstrap5.3-definition.scss +26 -0
- package/styles/avatar/_fluent2-definition.scss +28 -0
- package/styles/avatar/_layout.scss +22 -18
- package/styles/avatar/_material3-definition.scss +0 -7
- package/styles/avatar/bootstrap-dark.css +7 -4
- package/styles/avatar/bootstrap.css +7 -4
- package/styles/avatar/bootstrap4.css +7 -4
- package/styles/avatar/bootstrap5-dark.css +13 -10
- package/styles/avatar/bootstrap5.css +13 -10
- package/styles/avatar/fabric-dark.css +7 -4
- package/styles/avatar/fabric.css +7 -4
- package/styles/avatar/fluent-dark.css +11 -8
- package/styles/avatar/fluent.css +11 -8
- package/styles/avatar/fluent2.css +1097 -0
- package/styles/avatar/fluent2.scss +3 -0
- package/styles/avatar/highcontrast-light.css +7 -4
- package/styles/avatar/highcontrast.css +7 -4
- package/styles/avatar/material-dark.css +7 -4
- package/styles/avatar/material.css +7 -4
- package/styles/avatar/material3-dark.css +12 -9
- package/styles/avatar/material3.css +12 -9
- package/styles/avatar/tailwind-dark.css +11 -8
- package/styles/avatar/tailwind.css +11 -8
- package/styles/bootstrap-dark.css +359 -197
- package/styles/bootstrap-dark.scss +14 -5
- package/styles/bootstrap.css +359 -197
- package/styles/bootstrap.scss +14 -5
- package/styles/bootstrap4.css +357 -196
- package/styles/bootstrap4.scss +14 -5
- package/styles/bootstrap5-dark.css +370 -207
- package/styles/bootstrap5-dark.scss +14 -5
- package/styles/bootstrap5.css +370 -207
- package/styles/bootstrap5.scss +14 -5
- package/styles/card/_bootstrap5.3-definition.scss +125 -0
- package/styles/card/_fluent2-definition.scss +123 -0
- package/styles/card/_layout.scss +13 -4
- package/styles/card/_material3-definition.scss +0 -13
- package/styles/card/_theme.scss +4 -16
- package/styles/card/bootstrap-dark.css +95 -52
- package/styles/card/bootstrap.css +95 -52
- package/styles/card/bootstrap4.css +95 -52
- package/styles/card/bootstrap5-dark.css +95 -52
- package/styles/card/bootstrap5.css +95 -52
- package/styles/card/fabric-dark.css +95 -52
- package/styles/card/fabric.css +95 -52
- package/styles/card/fluent-dark.css +99 -54
- package/styles/card/fluent.css +99 -54
- package/styles/card/fluent2.css +1593 -0
- package/styles/card/fluent2.scss +3 -0
- package/styles/card/highcontrast-light.css +95 -52
- package/styles/card/highcontrast.css +95 -52
- package/styles/card/material-dark.css +95 -52
- package/styles/card/material.css +97 -53
- package/styles/card/material3-dark.css +99 -53
- package/styles/card/material3.css +99 -53
- package/styles/card/tailwind-dark.css +95 -52
- package/styles/card/tailwind.css +95 -52
- package/styles/dashboard-layout/_bootstrap5.3-definition.scss +108 -0
- package/styles/dashboard-layout/_fluent2-definition.scss +111 -0
- package/styles/dashboard-layout/_highcontrast-definition.scss +1 -1
- package/styles/dashboard-layout/_layout.scss +62 -60
- package/styles/dashboard-layout/_material3-definition.scss +0 -47
- package/styles/dashboard-layout/_theme.scss +19 -32
- package/styles/dashboard-layout/bootstrap-dark.css +41 -42
- package/styles/dashboard-layout/bootstrap.css +41 -42
- package/styles/dashboard-layout/bootstrap4.css +41 -42
- package/styles/dashboard-layout/bootstrap5-dark.css +48 -47
- package/styles/dashboard-layout/bootstrap5.css +48 -47
- package/styles/dashboard-layout/fabric-dark.css +41 -42
- package/styles/dashboard-layout/fabric.css +41 -42
- package/styles/dashboard-layout/fluent-dark.css +46 -46
- package/styles/dashboard-layout/fluent.css +46 -46
- package/styles/dashboard-layout/fluent2.css +1336 -0
- package/styles/dashboard-layout/fluent2.scss +4 -0
- package/styles/dashboard-layout/highcontrast-light.css +39 -41
- package/styles/dashboard-layout/highcontrast.css +43 -42
- package/styles/dashboard-layout/icons/_bootstrap5.3.scss +80 -0
- package/styles/dashboard-layout/icons/_fluent2.scss +80 -0
- package/styles/dashboard-layout/material-dark.css +41 -42
- package/styles/dashboard-layout/material.css +41 -42
- package/styles/dashboard-layout/material3-dark.css +48 -47
- package/styles/dashboard-layout/material3.css +48 -47
- package/styles/dashboard-layout/tailwind-dark.css +57 -55
- package/styles/dashboard-layout/tailwind.css +57 -55
- package/styles/fabric-dark.css +359 -197
- package/styles/fabric-dark.scss +14 -5
- package/styles/fabric.css +359 -197
- package/styles/fabric.scss +14 -5
- package/styles/fluent-dark.css +370 -206
- package/styles/fluent-dark.scss +14 -5
- package/styles/fluent.css +370 -206
- package/styles/fluent.scss +14 -5
- package/styles/fluent2.css +2803 -0
- package/styles/fluent2.scss +14 -0
- package/styles/highcontrast-light.css +357 -196
- package/styles/highcontrast-light.scss +13 -5
- package/styles/highcontrast.css +361 -197
- package/styles/highcontrast.scss +14 -5
- package/styles/material-dark.css +357 -196
- package/styles/material-dark.scss +14 -5
- package/styles/material.css +359 -197
- package/styles/material.scss +14 -5
- package/styles/material3-dark.css +370 -204
- package/styles/material3-dark.scss +14 -5
- package/styles/material3.css +370 -204
- package/styles/material3.scss +14 -5
- package/styles/splitter/_bootstrap5.3-definition.scss +31 -0
- package/styles/splitter/_fluent2-definition.scss +31 -0
- package/styles/splitter/_layout.scss +0 -4
- package/styles/splitter/_material3-definition.scss +0 -7
- package/styles/splitter/_theme.scss +0 -4
- package/styles/splitter/bootstrap-dark.css +115 -59
- package/styles/splitter/bootstrap.css +115 -59
- package/styles/splitter/bootstrap4.css +113 -58
- package/styles/splitter/bootstrap5-dark.css +113 -58
- package/styles/splitter/bootstrap5.css +113 -58
- package/styles/splitter/fabric-dark.css +115 -59
- package/styles/splitter/fabric.css +115 -59
- package/styles/splitter/fluent-dark.css +113 -58
- package/styles/splitter/fluent.css +113 -58
- package/styles/splitter/fluent2.css +1578 -0
- package/styles/splitter/fluent2.scss +4 -0
- package/styles/splitter/highcontrast-light.css +115 -59
- package/styles/splitter/highcontrast.css +115 -59
- package/styles/splitter/icons/_bootstrap5.3.scss +39 -0
- package/styles/splitter/icons/_fluent2.scss +39 -0
- package/styles/splitter/material-dark.css +113 -58
- package/styles/splitter/material.css +113 -58
- package/styles/splitter/material3-dark.css +114 -59
- package/styles/splitter/material3.css +114 -59
- package/styles/splitter/tailwind-dark.css +113 -58
- package/styles/splitter/tailwind.css +113 -58
- package/styles/tailwind-dark.css +377 -213
- package/styles/tailwind-dark.scss +14 -5
- package/styles/tailwind.css +377 -213
- package/styles/tailwind.scss +14 -5
- package/styles/timeline/_bootstrap5.3-definition.scss +18 -0
- package/styles/timeline/_fluent2-definition.scss +18 -0
- package/styles/timeline/_layout.scss +46 -7
- package/styles/timeline/bootstrap-dark.css +99 -39
- package/styles/timeline/bootstrap.css +99 -39
- package/styles/timeline/bootstrap4.css +99 -39
- package/styles/timeline/bootstrap5-dark.css +99 -39
- package/styles/timeline/bootstrap5.css +99 -39
- package/styles/timeline/fabric-dark.css +99 -39
- package/styles/timeline/fabric.css +99 -39
- package/styles/timeline/fluent-dark.css +99 -39
- package/styles/timeline/fluent.css +99 -39
- package/styles/timeline/fluent2.css +1332 -0
- package/styles/timeline/fluent2.scss +3 -0
- package/styles/timeline/highcontrast-light.css +99 -39
- package/styles/timeline/highcontrast.css +99 -39
- package/styles/timeline/material-dark.css +99 -39
- package/styles/timeline/material.css +99 -39
- package/styles/timeline/material3-dark.css +100 -40
- package/styles/timeline/material3.css +100 -40
- package/styles/timeline/tailwind-dark.css +99 -39
- package/styles/timeline/tailwind.css +99 -39
- package/CHANGELOG.md +0 -601
@@ -1,3 +1,9 @@
|
|
1
|
+
@mixin avatar-size($height, $width, $line-height) {
|
2
|
+
height: $height;
|
3
|
+
width: $width;
|
4
|
+
line-height: $line-height;
|
5
|
+
}
|
6
|
+
|
1
7
|
@include export-module('avatar-layout') {
|
2
8
|
.e-avatar {
|
3
9
|
align-content: center;
|
@@ -21,6 +27,12 @@
|
|
21
27
|
line-height: $avatar-base-line-height;
|
22
28
|
}
|
23
29
|
|
30
|
+
@if $skin-name == 'fluent2' {
|
31
|
+
&:has(:not(img)) {
|
32
|
+
border: 1px solid $avatar-border;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
24
36
|
img {
|
25
37
|
height: $avatar-base-img-height;
|
26
38
|
width: auto;
|
@@ -36,44 +48,36 @@
|
|
36
48
|
|
37
49
|
&.e-avatar-xsmall {
|
38
50
|
font-size: $avatar-xsmall-font-size;
|
39
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
|
40
|
-
|
41
|
-
line-height: $avatar-base-xsmall-line-height;
|
42
|
-
width: 24px;
|
51
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3' or $skin-name == 'fluent2') {
|
52
|
+
@include avatar-size(24px, 24px, $avatar-base-xsmall-line-height);
|
43
53
|
}
|
44
54
|
}
|
45
55
|
|
46
56
|
&.e-avatar-small {
|
47
57
|
font-size: $avatar-small-font-size;
|
48
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
|
49
|
-
|
50
|
-
line-height: $avatar-base-small-line-height;
|
51
|
-
width: 32px;
|
58
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3' or $skin-name == 'fluent2') {
|
59
|
+
@include avatar-size(32px, 32px, $avatar-base-small-line-height);
|
52
60
|
}
|
53
61
|
}
|
54
62
|
|
55
63
|
&.e-avatar-large {
|
56
64
|
font-size: $avatar-large-font-size;
|
65
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3' or $skin-name == 'fluent2') {
|
66
|
+
@include avatar-size(48px, 48px, $avatar-base-large-line-height);
|
67
|
+
}
|
57
68
|
@if ($skin-name == 'bootstrap5') {
|
58
69
|
border-radius: $avatar-large-border-radius;
|
59
70
|
}
|
60
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
|
61
|
-
height: 48px;
|
62
|
-
line-height: $avatar-base-large-line-height;
|
63
|
-
width: 48px;
|
64
|
-
}
|
65
71
|
}
|
66
72
|
|
67
73
|
&.e-avatar-xlarge {
|
68
74
|
font-size: $avatar-xlarge-font-size;
|
75
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3' or $skin-name == 'fluent2') {
|
76
|
+
@include avatar-size(56px, 56px, $avatar-base-xlarge-line-height);
|
77
|
+
}
|
69
78
|
@if ($skin-name == 'bootstrap5') {
|
70
79
|
border-radius: $avatar-large-border-radius;
|
71
80
|
}
|
72
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark'or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
|
73
|
-
height: 56px;
|
74
|
-
line-height: $avatar-base-xlarge-line-height;
|
75
|
-
width: 56px;
|
76
|
-
}
|
77
81
|
}
|
78
82
|
}
|
79
83
|
}
|
@@ -1,4 +1,3 @@
|
|
1
|
-
// Avatar Base
|
2
1
|
$avatar-base-border-radius: 4px !default;
|
3
2
|
$avatar-base-background-color: rgba($primary-light) !default;
|
4
3
|
$avatar-base-font-size: $text-xl !default;
|
@@ -8,18 +7,12 @@ $avatar-base-line-height: 20px !default;
|
|
8
7
|
$avatar-base-text-color: rgba($primary-darker) !default;
|
9
8
|
$avatar-base-font-weight: 500 !default;
|
10
9
|
$avatar-base-img-height: 100% !default;
|
11
|
-
|
12
|
-
// Circle Avatar
|
13
10
|
$avatar-circle-border-radius: 50% !default;
|
14
|
-
|
15
|
-
// Avatar size
|
16
11
|
$avatar-xsmall-font-size: 14px !default;
|
17
12
|
$avatar-small-font-size: 18px !default;
|
18
13
|
$avatar-large-font-size: 26px !default;
|
19
14
|
$avatar-xlarge-font-size: 30px !default;
|
20
15
|
$avatar-large-border-radius: 4px !default;
|
21
|
-
|
22
|
-
// Avatar Line Height
|
23
16
|
$avatar-base-xsmall-line-height: 14px !default;
|
24
17
|
$avatar-base-small-line-height: 18px !default;
|
25
18
|
$avatar-base-large-line-height: 26px !default;
|
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #bcbcbc;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 5px;
|
11
12
|
color: #fff;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
15
17
|
font-size: 1em;
|
16
18
|
font-weight: 400;
|
17
19
|
height: 3em;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 3em;
|
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #bcbcbc;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 5px;
|
11
12
|
color: #fff;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
15
17
|
font-size: 1em;
|
16
18
|
font-weight: 400;
|
17
19
|
height: 3em;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 3em;
|
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #e9ecef;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 4px;
|
11
12
|
color: #212529;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
15
17
|
font-size: 1.05em;
|
16
18
|
font-weight: 400;
|
17
19
|
height: 2.5em;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 2.5em;
|
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #495057;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 2px;
|
11
12
|
color: #adb5bd;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
15
17
|
font-size: 14px;
|
16
18
|
font-weight: 500;
|
17
19
|
height: 40px;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 40px;
|
@@ -35,26 +38,26 @@
|
|
35
38
|
.e-avatar.e-avatar-xsmall {
|
36
39
|
font-size: 10px;
|
37
40
|
height: 24px;
|
38
|
-
line-height: 16px;
|
39
41
|
width: 24px;
|
42
|
+
line-height: 16px;
|
40
43
|
}
|
41
44
|
.e-avatar.e-avatar-small {
|
42
45
|
font-size: 12px;
|
43
46
|
height: 32px;
|
44
|
-
line-height: 18px;
|
45
47
|
width: 32px;
|
48
|
+
line-height: 18px;
|
46
49
|
}
|
47
50
|
.e-avatar.e-avatar-large {
|
48
51
|
font-size: 18px;
|
49
|
-
border-radius: 4px;
|
50
52
|
height: 48px;
|
51
|
-
line-height: 28px;
|
52
53
|
width: 48px;
|
54
|
+
line-height: 28px;
|
55
|
+
border-radius: 4px;
|
53
56
|
}
|
54
57
|
.e-avatar.e-avatar-xlarge {
|
55
58
|
font-size: 20px;
|
56
|
-
border-radius: 4px;
|
57
59
|
height: 56px;
|
58
|
-
line-height: 28px;
|
59
60
|
width: 56px;
|
61
|
+
line-height: 28px;
|
62
|
+
border-radius: 4px;
|
60
63
|
}
|
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #dee2e6;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 2px;
|
11
12
|
color: #6c757d;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
15
17
|
font-size: 14px;
|
16
18
|
font-weight: 500;
|
17
19
|
height: 40px;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 40px;
|
@@ -35,26 +38,26 @@
|
|
35
38
|
.e-avatar.e-avatar-xsmall {
|
36
39
|
font-size: 10px;
|
37
40
|
height: 24px;
|
38
|
-
line-height: 16px;
|
39
41
|
width: 24px;
|
42
|
+
line-height: 16px;
|
40
43
|
}
|
41
44
|
.e-avatar.e-avatar-small {
|
42
45
|
font-size: 12px;
|
43
46
|
height: 32px;
|
44
|
-
line-height: 18px;
|
45
47
|
width: 32px;
|
48
|
+
line-height: 18px;
|
46
49
|
}
|
47
50
|
.e-avatar.e-avatar-large {
|
48
51
|
font-size: 18px;
|
49
|
-
border-radius: 4px;
|
50
52
|
height: 48px;
|
51
|
-
line-height: 28px;
|
52
53
|
width: 48px;
|
54
|
+
line-height: 28px;
|
55
|
+
border-radius: 4px;
|
53
56
|
}
|
54
57
|
.e-avatar.e-avatar-xlarge {
|
55
58
|
font-size: 20px;
|
56
|
-
border-radius: 4px;
|
57
59
|
height: 56px;
|
58
|
-
line-height: 28px;
|
59
60
|
width: 56px;
|
61
|
+
line-height: 28px;
|
62
|
+
border-radius: 4px;
|
60
63
|
}
|
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #bcbcbc;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 5px;
|
11
12
|
color: #fff;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
15
17
|
font-size: 1em;
|
16
18
|
font-weight: 400;
|
17
19
|
height: 3em;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 3em;
|
package/styles/avatar/fabric.css
CHANGED
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #bcbcbc;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 5px;
|
11
12
|
color: #fff;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
15
17
|
font-size: 1em;
|
16
18
|
font-weight: 400;
|
17
19
|
height: 3em;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 3em;
|
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #292827;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 4px;
|
11
12
|
color: #a19f9d;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
15
17
|
font-size: 16px;
|
16
18
|
font-weight: 400;
|
17
19
|
height: 40px;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 40px;
|
@@ -35,24 +38,24 @@
|
|
35
38
|
.e-avatar.e-avatar-xsmall {
|
36
39
|
font-size: 10px;
|
37
40
|
height: 24px;
|
38
|
-
line-height: 16px;
|
39
41
|
width: 24px;
|
42
|
+
line-height: 16px;
|
40
43
|
}
|
41
44
|
.e-avatar.e-avatar-small {
|
42
45
|
font-size: 12px;
|
43
46
|
height: 32px;
|
44
|
-
line-height: 18px;
|
45
47
|
width: 32px;
|
48
|
+
line-height: 18px;
|
46
49
|
}
|
47
50
|
.e-avatar.e-avatar-large {
|
48
51
|
font-size: 20px;
|
49
52
|
height: 48px;
|
50
|
-
line-height: 28px;
|
51
53
|
width: 48px;
|
54
|
+
line-height: 28px;
|
52
55
|
}
|
53
56
|
.e-avatar.e-avatar-xlarge {
|
54
57
|
font-size: 24px;
|
55
58
|
height: 56px;
|
56
|
-
line-height: 28px;
|
57
59
|
width: 56px;
|
60
|
+
line-height: 28px;
|
58
61
|
}
|
package/styles/avatar/fluent.css
CHANGED
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #edebe9;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 4px;
|
11
12
|
color: #605e5c;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
15
17
|
font-size: 16px;
|
16
18
|
font-weight: 400;
|
17
19
|
height: 40px;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 40px;
|
@@ -35,24 +38,24 @@
|
|
35
38
|
.e-avatar.e-avatar-xsmall {
|
36
39
|
font-size: 10px;
|
37
40
|
height: 24px;
|
38
|
-
line-height: 16px;
|
39
41
|
width: 24px;
|
42
|
+
line-height: 16px;
|
40
43
|
}
|
41
44
|
.e-avatar.e-avatar-small {
|
42
45
|
font-size: 12px;
|
43
46
|
height: 32px;
|
44
|
-
line-height: 18px;
|
45
47
|
width: 32px;
|
48
|
+
line-height: 18px;
|
46
49
|
}
|
47
50
|
.e-avatar.e-avatar-large {
|
48
51
|
font-size: 20px;
|
49
52
|
height: 48px;
|
50
|
-
line-height: 28px;
|
51
53
|
width: 48px;
|
54
|
+
line-height: 28px;
|
52
55
|
}
|
53
56
|
.e-avatar.e-avatar-xlarge {
|
54
57
|
font-size: 24px;
|
55
58
|
height: 56px;
|
56
|
-
line-height: 28px;
|
57
59
|
width: 56px;
|
60
|
+
line-height: 28px;
|
58
61
|
}
|