@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,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: #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: #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: "Roboto", "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: #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: "Roboto", "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;
|
@@ -44,7 +44,7 @@
|
|
44
44
|
--color-sf-on-warning: 99, 52, 0;
|
45
45
|
--color-sf-on-warning-container: 255, 220, 193;
|
46
46
|
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
47
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #
|
47
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
|
48
48
|
--color-sf-success-text: 0, 0, 0;
|
49
49
|
--color-sf-warning-text: 0, 0, 0;
|
50
50
|
--color-sf-info-text: 0, 0, 0;
|
@@ -56,22 +56,25 @@
|
|
56
56
|
.e-avatar {
|
57
57
|
-ms-flex-line-pack: center;
|
58
58
|
align-content: center;
|
59
|
-
-
|
60
|
-
align
|
59
|
+
-webkit-box-align: center;
|
60
|
+
-ms-flex-align: center;
|
61
|
+
align-items: center;
|
61
62
|
background-color: rgba(var(--color-sf-primary-container));
|
62
63
|
background-position: center;
|
63
64
|
background-repeat: no-repeat;
|
64
65
|
background-size: cover;
|
65
66
|
border-radius: 4px;
|
66
67
|
color: rgba(var(--color-sf-on-primary-container));
|
68
|
+
display: -webkit-inline-box;
|
67
69
|
display: -ms-inline-flexbox;
|
68
70
|
display: inline-flex;
|
69
71
|
font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
70
72
|
font-size: 20px;
|
71
73
|
font-weight: 500;
|
72
74
|
height: 40px;
|
73
|
-
-
|
74
|
-
|
75
|
+
-webkit-box-pack: center;
|
76
|
+
-ms-flex-pack: center;
|
77
|
+
justify-content: center;
|
75
78
|
overflow: hidden;
|
76
79
|
position: relative;
|
77
80
|
width: 40px;
|
@@ -90,24 +93,24 @@
|
|
90
93
|
.e-avatar.e-avatar-xsmall {
|
91
94
|
font-size: 14px;
|
92
95
|
height: 24px;
|
93
|
-
line-height: 14px;
|
94
96
|
width: 24px;
|
97
|
+
line-height: 14px;
|
95
98
|
}
|
96
99
|
.e-avatar.e-avatar-small {
|
97
100
|
font-size: 18px;
|
98
101
|
height: 32px;
|
99
|
-
line-height: 18px;
|
100
102
|
width: 32px;
|
103
|
+
line-height: 18px;
|
101
104
|
}
|
102
105
|
.e-avatar.e-avatar-large {
|
103
106
|
font-size: 26px;
|
104
107
|
height: 48px;
|
105
|
-
line-height: 26px;
|
106
108
|
width: 48px;
|
109
|
+
line-height: 26px;
|
107
110
|
}
|
108
111
|
.e-avatar.e-avatar-xlarge {
|
109
112
|
font-size: 30px;
|
110
113
|
height: 56px;
|
111
|
-
line-height: 30px;
|
112
114
|
width: 56px;
|
115
|
+
line-height: 30px;
|
113
116
|
}
|
@@ -100,7 +100,7 @@
|
|
100
100
|
--color-sf-on-warning: 99, 52, 0;
|
101
101
|
--color-sf-on-warning-container: 255, 220, 193;
|
102
102
|
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
103
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #
|
103
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
|
104
104
|
--color-sf-success-text: 0, 0, 0;
|
105
105
|
--color-sf-warning-text: 0, 0, 0;
|
106
106
|
--color-sf-info-text: 0, 0, 0;
|
@@ -112,22 +112,25 @@
|
|
112
112
|
.e-avatar {
|
113
113
|
-ms-flex-line-pack: center;
|
114
114
|
align-content: center;
|
115
|
-
-
|
116
|
-
align
|
115
|
+
-webkit-box-align: center;
|
116
|
+
-ms-flex-align: center;
|
117
|
+
align-items: center;
|
117
118
|
background-color: rgba(var(--color-sf-primary-container));
|
118
119
|
background-position: center;
|
119
120
|
background-repeat: no-repeat;
|
120
121
|
background-size: cover;
|
121
122
|
border-radius: 4px;
|
122
123
|
color: rgba(var(--color-sf-on-primary-container));
|
124
|
+
display: -webkit-inline-box;
|
123
125
|
display: -ms-inline-flexbox;
|
124
126
|
display: inline-flex;
|
125
127
|
font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
126
128
|
font-size: 20px;
|
127
129
|
font-weight: 500;
|
128
130
|
height: 40px;
|
129
|
-
-
|
130
|
-
|
131
|
+
-webkit-box-pack: center;
|
132
|
+
-ms-flex-pack: center;
|
133
|
+
justify-content: center;
|
131
134
|
overflow: hidden;
|
132
135
|
position: relative;
|
133
136
|
width: 40px;
|
@@ -146,24 +149,24 @@
|
|
146
149
|
.e-avatar.e-avatar-xsmall {
|
147
150
|
font-size: 14px;
|
148
151
|
height: 24px;
|
149
|
-
line-height: 14px;
|
150
152
|
width: 24px;
|
153
|
+
line-height: 14px;
|
151
154
|
}
|
152
155
|
.e-avatar.e-avatar-small {
|
153
156
|
font-size: 18px;
|
154
157
|
height: 32px;
|
155
|
-
line-height: 18px;
|
156
158
|
width: 32px;
|
159
|
+
line-height: 18px;
|
157
160
|
}
|
158
161
|
.e-avatar.e-avatar-large {
|
159
162
|
font-size: 26px;
|
160
163
|
height: 48px;
|
161
|
-
line-height: 26px;
|
162
164
|
width: 48px;
|
165
|
+
line-height: 26px;
|
163
166
|
}
|
164
167
|
.e-avatar.e-avatar-xlarge {
|
165
168
|
font-size: 30px;
|
166
169
|
height: 56px;
|
167
|
-
line-height: 30px;
|
168
170
|
width: 56px;
|
171
|
+
line-height: 30px;
|
169
172
|
}
|
@@ -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: #4b5563;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 4px;
|
11
12
|
color: #9ca3af;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Inter";
|
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,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: 18px;
|
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: 20px;
|
55
58
|
height: 56px;
|
56
|
-
line-height: 28px;
|
57
59
|
width: 56px;
|
60
|
+
line-height: 28px;
|
58
61
|
}
|
@@ -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: #e5e7eb;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 4px;
|
11
12
|
color: #6b7280;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Inter";
|
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,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: 18px;
|
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: 20px;
|
55
58
|
height: 56px;
|
56
|
-
line-height: 28px;
|
57
59
|
width: 56px;
|
60
|
+
line-height: 28px;
|
58
61
|
}
|