@fundamental-styles/theming-preview 0.24.2-rc.3 → 0.24.2-rc.6
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/fundamental-styles.css +485 -309
- package/package.json +2 -2
package/fundamental-styles.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
@charset "UTF-8";
|
|
3
3
|
/*!
|
|
4
|
-
* Fundamental Library Styles v0.24.2-rc.
|
|
4
|
+
* Fundamental Library Styles v0.24.2-rc.6
|
|
5
5
|
* Copyright (c) 2022 SAP SE or an SAP affiliate company.
|
|
6
6
|
* Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)
|
|
7
7
|
*/
|
|
@@ -4073,11 +4073,6 @@
|
|
|
4073
4073
|
/* stylelint-enable */
|
|
4074
4074
|
/* Fully expanded pseudo element. Requires parent to have specified position */
|
|
4075
4075
|
/* Fully expanded pseudo element. Requires parent to have specified position */
|
|
4076
|
-
/*!
|
|
4077
|
-
.fd-avatar+((--circle), (--thumbnail), (--xxs|--xs|--s|--m|--l|--xl|--xxl), (--accent-color-{1-10}))
|
|
4078
|
-
.fd-avatar__icon
|
|
4079
|
-
.fd-avatar__zoom-icon
|
|
4080
|
-
*/
|
|
4081
4076
|
.fd-avatar {
|
|
4082
4077
|
font-size: var(--sapFontSize);
|
|
4083
4078
|
line-height: var(--sapContent_LineHeight);
|
|
@@ -4089,16 +4084,15 @@
|
|
|
4089
4084
|
padding: 0;
|
|
4090
4085
|
margin: 0;
|
|
4091
4086
|
border: 0;
|
|
4092
|
-
border: var(--fdAvatar_Border);
|
|
4093
|
-
color: var(--sapContent_ContrastTextColor);
|
|
4094
|
-
background-color: var(--fdAvatar_BackgroundColor);
|
|
4095
|
-
display: inline-block;
|
|
4096
4087
|
position: relative;
|
|
4097
4088
|
vertical-align: middle;
|
|
4098
|
-
text-align: center;
|
|
4099
|
-
background-repeat: no-repeat;
|
|
4100
4089
|
background-size: cover;
|
|
4101
4090
|
background-position: 50%;
|
|
4091
|
+
background-repeat: no-repeat;
|
|
4092
|
+
border: var(--fdAvatar_Border);
|
|
4093
|
+
text-shadow: var(--fdAvatar_Text_Shadow);
|
|
4094
|
+
color: var(--sapContent_ContrastTextColor);
|
|
4095
|
+
background-color: var(--fdAvatar_BackgroundColor);
|
|
4102
4096
|
border-radius: var(--sapElement_BorderCornerRadius);
|
|
4103
4097
|
}
|
|
4104
4098
|
.fd-avatar::before, .fd-avatar::after {
|
|
@@ -4107,9 +4101,20 @@
|
|
|
4107
4101
|
font-size: inherit;
|
|
4108
4102
|
}
|
|
4109
4103
|
.fd-avatar:focus, .fd-avatar.is-focus {
|
|
4110
|
-
outline
|
|
4111
|
-
|
|
4112
|
-
|
|
4104
|
+
outline: none;
|
|
4105
|
+
}
|
|
4106
|
+
.fd-avatar:focus::after, .fd-avatar.is-focus::after {
|
|
4107
|
+
border-width: var(--sapContent_FocusWidth);
|
|
4108
|
+
border-color: var(--sapContent_FocusColor);
|
|
4109
|
+
border-style: var(--sapContent_FocusStyle);
|
|
4110
|
+
border-radius: var(--fdAvatar_Focus_Outline_Radius);
|
|
4111
|
+
content: "";
|
|
4112
|
+
position: absolute;
|
|
4113
|
+
pointer-events: none;
|
|
4114
|
+
top: var(--fdAvatar_Focus_Outline_Offset);
|
|
4115
|
+
bottom: var(--fdAvatar_Focus_Outline_Offset);
|
|
4116
|
+
left: var(--fdAvatar_Focus_Outline_Offset);
|
|
4117
|
+
right: var(--fdAvatar_Focus_Outline_Offset);
|
|
4113
4118
|
}
|
|
4114
4119
|
.fd-avatar[tabindex="0"] {
|
|
4115
4120
|
cursor: pointer;
|
|
@@ -4129,11 +4134,11 @@
|
|
|
4129
4134
|
-webkit-box-align: center;
|
|
4130
4135
|
-ms-flex-align: center;
|
|
4131
4136
|
align-items: center;
|
|
4137
|
+
border: 0.0625rem solid var(--sapButton_Emphasized_BorderColor);
|
|
4132
4138
|
position: absolute;
|
|
4139
|
+
border-radius: 50%;
|
|
4133
4140
|
color: var(--sapButton_Emphasized_TextColor);
|
|
4134
4141
|
background-color: var(--sapButton_Emphasized_Background);
|
|
4135
|
-
border-radius: 50%;
|
|
4136
|
-
border: 0.0625rem solid var(--sapButton_Emphasized_BorderColor);
|
|
4137
4142
|
}
|
|
4138
4143
|
.fd-avatar__icon [class*=sap-icon], .fd-avatar__icon[class*=sap-icon] {
|
|
4139
4144
|
color: inherit;
|
|
@@ -4156,16 +4161,32 @@
|
|
|
4156
4161
|
.fd-avatar--circle {
|
|
4157
4162
|
border-radius: 50%;
|
|
4158
4163
|
}
|
|
4164
|
+
.fd-avatar--circle:focus, .fd-avatar--circle.is-focus {
|
|
4165
|
+
outline: none;
|
|
4166
|
+
}
|
|
4167
|
+
.fd-avatar--circle:focus::after, .fd-avatar--circle.is-focus::after {
|
|
4168
|
+
border-width: var(--sapContent_FocusWidth);
|
|
4169
|
+
border-color: var(--sapContent_FocusColor);
|
|
4170
|
+
border-style: var(--sapContent_FocusStyle);
|
|
4171
|
+
border-radius: var(--fdAvatar_Focus_Outline_Radius_Circle);
|
|
4172
|
+
content: "";
|
|
4173
|
+
position: absolute;
|
|
4174
|
+
pointer-events: none;
|
|
4175
|
+
top: var(--fdAvatar_Focus_Outline_Offset);
|
|
4176
|
+
bottom: var(--fdAvatar_Focus_Outline_Offset);
|
|
4177
|
+
left: var(--fdAvatar_Focus_Outline_Offset);
|
|
4178
|
+
right: var(--fdAvatar_Focus_Outline_Offset);
|
|
4179
|
+
}
|
|
4159
4180
|
.fd-avatar--circle .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--circle .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4160
|
-
bottom: 0;
|
|
4161
4181
|
right: 0;
|
|
4182
|
+
bottom: 0;
|
|
4162
4183
|
}
|
|
4163
4184
|
[dir=rtl] .fd-avatar--circle .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--circle .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--circle .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--circle .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4164
4185
|
right: auto;
|
|
4165
4186
|
left: 0;
|
|
4166
4187
|
}
|
|
4167
4188
|
.fd-avatar--transparent {
|
|
4168
|
-
background-color: var(--
|
|
4189
|
+
background-color: var(--fdAvatar_Transparent_BackgroundColor);
|
|
4169
4190
|
color: var(--sapContent_IconColor);
|
|
4170
4191
|
}
|
|
4171
4192
|
.fd-avatar--background-contain {
|
|
@@ -4181,84 +4202,115 @@
|
|
|
4181
4202
|
border: 0.0625rem solid var(--sapGroup_ContentBorderColor);
|
|
4182
4203
|
}
|
|
4183
4204
|
.fd-avatar--accent-color-1 {
|
|
4184
|
-
background-color: var(--fdAvatar_Accent_Color_1);
|
|
4185
|
-
color: var(--fdAvatar_Accent_Color_1_Text);
|
|
4186
4205
|
border: var(--fdAvatar_Accent_Color_1_Border);
|
|
4206
|
+
color: var(--fdAvatar_Accent_Color_1_Text);
|
|
4207
|
+
background-color: var(--fdAvatar_Accent_Color_1);
|
|
4208
|
+
}
|
|
4209
|
+
.fd-avatar--accent-color-1.fd-avatar--shell {
|
|
4210
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4187
4211
|
}
|
|
4188
4212
|
.fd-avatar--accent-color-2 {
|
|
4189
|
-
background-color: var(--fdAvatar_Accent_Color_2);
|
|
4190
|
-
color: var(--fdAvatar_Accent_Color_2_Text);
|
|
4191
4213
|
border: var(--fdAvatar_Accent_Color_2_Border);
|
|
4214
|
+
color: var(--fdAvatar_Accent_Color_2_Text);
|
|
4215
|
+
background-color: var(--fdAvatar_Accent_Color_2);
|
|
4216
|
+
}
|
|
4217
|
+
.fd-avatar--accent-color-2.fd-avatar--shell {
|
|
4218
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4192
4219
|
}
|
|
4193
4220
|
.fd-avatar--accent-color-3 {
|
|
4194
|
-
background-color: var(--fdAvatar_Accent_Color_3);
|
|
4195
|
-
color: var(--fdAvatar_Accent_Color_3_Text);
|
|
4196
4221
|
border: var(--fdAvatar_Accent_Color_3_Border);
|
|
4222
|
+
color: var(--fdAvatar_Accent_Color_3_Text);
|
|
4223
|
+
background-color: var(--fdAvatar_Accent_Color_3);
|
|
4224
|
+
}
|
|
4225
|
+
.fd-avatar--accent-color-3.fd-avatar--shell {
|
|
4226
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4197
4227
|
}
|
|
4198
4228
|
.fd-avatar--accent-color-4 {
|
|
4199
|
-
background-color: var(--fdAvatar_Accent_Color_4);
|
|
4200
|
-
color: var(--fdAvatar_Accent_Color_4_Text);
|
|
4201
4229
|
border: var(--fdAvatar_Accent_Color_4_Border);
|
|
4230
|
+
color: var(--fdAvatar_Accent_Color_4_Text);
|
|
4231
|
+
background-color: var(--fdAvatar_Accent_Color_4);
|
|
4232
|
+
}
|
|
4233
|
+
.fd-avatar--accent-color-4.fd-avatar--shell {
|
|
4234
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4202
4235
|
}
|
|
4203
4236
|
.fd-avatar--accent-color-5 {
|
|
4204
|
-
background-color: var(--fdAvatar_Accent_Color_5);
|
|
4205
|
-
color: var(--fdAvatar_Accent_Color_5_Text);
|
|
4206
4237
|
border: var(--fdAvatar_Accent_Color_5_Border);
|
|
4238
|
+
color: var(--fdAvatar_Accent_Color_5_Text);
|
|
4239
|
+
background-color: var(--fdAvatar_Accent_Color_5);
|
|
4240
|
+
}
|
|
4241
|
+
.fd-avatar--accent-color-5.fd-avatar--shell {
|
|
4242
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4207
4243
|
}
|
|
4208
4244
|
.fd-avatar--accent-color-6 {
|
|
4209
|
-
background-color: var(--fdAvatar_Accent_Color_6);
|
|
4210
|
-
color: var(--fdAvatar_Accent_Color_6_Text);
|
|
4211
4245
|
border: var(--fdAvatar_Accent_Color_6_Border);
|
|
4246
|
+
color: var(--fdAvatar_Accent_Color_6_Text);
|
|
4247
|
+
background-color: var(--fdAvatar_Accent_Color_6);
|
|
4248
|
+
}
|
|
4249
|
+
.fd-avatar--accent-color-6.fd-avatar--shell {
|
|
4250
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4212
4251
|
}
|
|
4213
4252
|
.fd-avatar--accent-color-7 {
|
|
4214
|
-
background-color: var(--fdAvatar_Accent_Color_7);
|
|
4215
|
-
color: var(--fdAvatar_Accent_Color_7_Text);
|
|
4216
4253
|
border: var(--fdAvatar_Accent_Color_7_Border);
|
|
4254
|
+
color: var(--fdAvatar_Accent_Color_7_Text);
|
|
4255
|
+
background-color: var(--fdAvatar_Accent_Color_7);
|
|
4256
|
+
}
|
|
4257
|
+
.fd-avatar--accent-color-7.fd-avatar--shell {
|
|
4258
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4217
4259
|
}
|
|
4218
4260
|
.fd-avatar--accent-color-8 {
|
|
4219
|
-
background-color: var(--fdAvatar_Accent_Color_8);
|
|
4220
|
-
color: var(--fdAvatar_Accent_Color_8_Text);
|
|
4221
4261
|
border: var(--fdAvatar_Accent_Color_8_Border);
|
|
4262
|
+
color: var(--fdAvatar_Accent_Color_8_Text);
|
|
4263
|
+
background-color: var(--fdAvatar_Accent_Color_8);
|
|
4264
|
+
}
|
|
4265
|
+
.fd-avatar--accent-color-8.fd-avatar--shell {
|
|
4266
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4222
4267
|
}
|
|
4223
4268
|
.fd-avatar--accent-color-9 {
|
|
4224
|
-
background-color: var(--fdAvatar_Accent_Color_9);
|
|
4225
|
-
color: var(--fdAvatar_Accent_Color_9_Text);
|
|
4226
4269
|
border: var(--fdAvatar_Accent_Color_9_Border);
|
|
4270
|
+
color: var(--fdAvatar_Accent_Color_9_Text);
|
|
4271
|
+
background-color: var(--fdAvatar_Accent_Color_9);
|
|
4272
|
+
}
|
|
4273
|
+
.fd-avatar--accent-color-9.fd-avatar--shell {
|
|
4274
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4227
4275
|
}
|
|
4228
4276
|
.fd-avatar--accent-color-10 {
|
|
4229
|
-
background-color: var(--fdAvatar_Accent_Color_10);
|
|
4230
|
-
color: var(--fdAvatar_Accent_Color_10_Text);
|
|
4231
4277
|
border: var(--fdAvatar_Accent_Color_10_Border);
|
|
4278
|
+
color: var(--fdAvatar_Accent_Color_10_Text);
|
|
4279
|
+
background-color: var(--fdAvatar_Accent_Color_10);
|
|
4280
|
+
}
|
|
4281
|
+
.fd-avatar--accent-color-10.fd-avatar--shell {
|
|
4282
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4232
4283
|
}
|
|
4233
4284
|
.fd-avatar--xs {
|
|
4234
4285
|
padding: 0;
|
|
4235
4286
|
margin: 0;
|
|
4236
|
-
width: 2rem;
|
|
4237
|
-
height: 2rem;
|
|
4238
|
-
max-width: 2rem;
|
|
4239
|
-
max-height: 2rem;
|
|
4240
|
-
min-width: 2rem;
|
|
4241
|
-
min-height: 2rem;
|
|
4242
|
-
font-size: 1rem;
|
|
4243
|
-
font-stretch: condensed;
|
|
4244
4287
|
display: -webkit-inline-box;
|
|
4245
4288
|
display: -ms-inline-flexbox;
|
|
4246
4289
|
display: inline-flex;
|
|
4247
|
-
-webkit-box-align: center;
|
|
4248
|
-
-ms-flex-align: center;
|
|
4249
|
-
align-items: center;
|
|
4250
4290
|
-webkit-box-pack: center;
|
|
4251
4291
|
-ms-flex-pack: center;
|
|
4252
4292
|
justify-content: center;
|
|
4293
|
+
-webkit-box-align: center;
|
|
4294
|
+
-ms-flex-align: center;
|
|
4295
|
+
align-items: center;
|
|
4296
|
+
width: 2rem;
|
|
4297
|
+
min-width: 2rem;
|
|
4298
|
+
max-width: 2rem;
|
|
4299
|
+
height: 2rem;
|
|
4300
|
+
min-height: 2rem;
|
|
4301
|
+
max-height: 2rem;
|
|
4302
|
+
font-size: 1rem;
|
|
4303
|
+
font-stretch: condensed;
|
|
4253
4304
|
}
|
|
4254
4305
|
.fd-avatar--xs .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xs .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4255
|
-
font-size: 0.75rem;
|
|
4256
|
-
width: 1.125rem;
|
|
4257
4306
|
height: 1.125rem;
|
|
4307
|
+
width: 1.125rem;
|
|
4308
|
+
min-width: 1.125rem;
|
|
4309
|
+
font-size: 0.75rem;
|
|
4258
4310
|
}
|
|
4259
4311
|
.fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4260
|
-
bottom: -0.125rem;
|
|
4261
4312
|
right: -0.125rem;
|
|
4313
|
+
bottom: -0.125rem;
|
|
4262
4314
|
}
|
|
4263
4315
|
[dir=rtl] .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4264
4316
|
right: auto;
|
|
@@ -4267,32 +4319,33 @@
|
|
|
4267
4319
|
.fd-avatar--s {
|
|
4268
4320
|
padding: 0;
|
|
4269
4321
|
margin: 0;
|
|
4270
|
-
width: 3rem;
|
|
4271
|
-
height: 3rem;
|
|
4272
|
-
max-width: 3rem;
|
|
4273
|
-
max-height: 3rem;
|
|
4274
|
-
min-width: 3rem;
|
|
4275
|
-
min-height: 3rem;
|
|
4276
|
-
font-size: 1.125rem;
|
|
4277
|
-
font-stretch: condensed;
|
|
4278
4322
|
display: -webkit-inline-box;
|
|
4279
4323
|
display: -ms-inline-flexbox;
|
|
4280
4324
|
display: inline-flex;
|
|
4281
|
-
-webkit-box-align: center;
|
|
4282
|
-
-ms-flex-align: center;
|
|
4283
|
-
align-items: center;
|
|
4284
4325
|
-webkit-box-pack: center;
|
|
4285
4326
|
-ms-flex-pack: center;
|
|
4286
4327
|
justify-content: center;
|
|
4328
|
+
-webkit-box-align: center;
|
|
4329
|
+
-ms-flex-align: center;
|
|
4330
|
+
align-items: center;
|
|
4331
|
+
width: 3rem;
|
|
4332
|
+
min-width: 3rem;
|
|
4333
|
+
max-width: 3rem;
|
|
4334
|
+
height: 3rem;
|
|
4335
|
+
min-height: 3rem;
|
|
4336
|
+
max-height: 3rem;
|
|
4337
|
+
font-size: 1.125rem;
|
|
4338
|
+
font-stretch: condensed;
|
|
4287
4339
|
}
|
|
4288
4340
|
.fd-avatar--s .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--s .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4289
|
-
font-size: 0.75rem;
|
|
4290
|
-
width: 1.125rem;
|
|
4291
4341
|
height: 1.125rem;
|
|
4342
|
+
width: 1.125rem;
|
|
4343
|
+
min-width: 1.125rem;
|
|
4344
|
+
font-size: 0.75rem;
|
|
4292
4345
|
}
|
|
4293
4346
|
.fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4294
|
-
bottom: -0.125rem;
|
|
4295
4347
|
right: -0.125rem;
|
|
4348
|
+
bottom: -0.125rem;
|
|
4296
4349
|
}
|
|
4297
4350
|
[dir=rtl] .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4298
4351
|
right: auto;
|
|
@@ -4301,32 +4354,33 @@
|
|
|
4301
4354
|
.fd-avatar--m {
|
|
4302
4355
|
padding: 0;
|
|
4303
4356
|
margin: 0;
|
|
4304
|
-
width: 4rem;
|
|
4305
|
-
height: 4rem;
|
|
4306
|
-
max-width: 4rem;
|
|
4307
|
-
max-height: 4rem;
|
|
4308
|
-
min-width: 4rem;
|
|
4309
|
-
min-height: 4rem;
|
|
4310
|
-
font-size: 1.5rem;
|
|
4311
|
-
font-stretch: normal;
|
|
4312
4357
|
display: -webkit-inline-box;
|
|
4313
4358
|
display: -ms-inline-flexbox;
|
|
4314
4359
|
display: inline-flex;
|
|
4315
|
-
-webkit-box-align: center;
|
|
4316
|
-
-ms-flex-align: center;
|
|
4317
|
-
align-items: center;
|
|
4318
4360
|
-webkit-box-pack: center;
|
|
4319
4361
|
-ms-flex-pack: center;
|
|
4320
4362
|
justify-content: center;
|
|
4363
|
+
-webkit-box-align: center;
|
|
4364
|
+
-ms-flex-align: center;
|
|
4365
|
+
align-items: center;
|
|
4366
|
+
width: 4rem;
|
|
4367
|
+
min-width: 4rem;
|
|
4368
|
+
max-width: 4rem;
|
|
4369
|
+
height: 4rem;
|
|
4370
|
+
min-height: 4rem;
|
|
4371
|
+
max-height: 4rem;
|
|
4372
|
+
font-size: 1.5rem;
|
|
4373
|
+
font-stretch: normal;
|
|
4321
4374
|
}
|
|
4322
4375
|
.fd-avatar--m .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--m .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4323
|
-
font-size: 0.75rem;
|
|
4324
|
-
width: 1.125rem;
|
|
4325
4376
|
height: 1.125rem;
|
|
4377
|
+
width: 1.125rem;
|
|
4378
|
+
min-width: 1.125rem;
|
|
4379
|
+
font-size: 0.75rem;
|
|
4326
4380
|
}
|
|
4327
4381
|
.fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4328
|
-
bottom: -0.125rem;
|
|
4329
4382
|
right: -0.125rem;
|
|
4383
|
+
bottom: -0.125rem;
|
|
4330
4384
|
}
|
|
4331
4385
|
[dir=rtl] .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4332
4386
|
right: auto;
|
|
@@ -4335,32 +4389,33 @@
|
|
|
4335
4389
|
.fd-avatar--l {
|
|
4336
4390
|
padding: 0;
|
|
4337
4391
|
margin: 0;
|
|
4338
|
-
width: 5rem;
|
|
4339
|
-
height: 5rem;
|
|
4340
|
-
max-width: 5rem;
|
|
4341
|
-
max-height: 5rem;
|
|
4342
|
-
min-width: 5rem;
|
|
4343
|
-
min-height: 5rem;
|
|
4344
|
-
font-size: 2.25rem;
|
|
4345
|
-
font-stretch: normal;
|
|
4346
4392
|
display: -webkit-inline-box;
|
|
4347
4393
|
display: -ms-inline-flexbox;
|
|
4348
4394
|
display: inline-flex;
|
|
4349
|
-
-webkit-box-align: center;
|
|
4350
|
-
-ms-flex-align: center;
|
|
4351
|
-
align-items: center;
|
|
4352
4395
|
-webkit-box-pack: center;
|
|
4353
4396
|
-ms-flex-pack: center;
|
|
4354
4397
|
justify-content: center;
|
|
4398
|
+
-webkit-box-align: center;
|
|
4399
|
+
-ms-flex-align: center;
|
|
4400
|
+
align-items: center;
|
|
4401
|
+
width: 5rem;
|
|
4402
|
+
min-width: 5rem;
|
|
4403
|
+
max-width: 5rem;
|
|
4404
|
+
height: 5rem;
|
|
4405
|
+
min-height: 5rem;
|
|
4406
|
+
max-height: 5rem;
|
|
4407
|
+
font-size: 2.25rem;
|
|
4408
|
+
font-stretch: normal;
|
|
4355
4409
|
}
|
|
4356
4410
|
.fd-avatar--l .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--l .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4357
|
-
font-size: 0.875rem;
|
|
4358
|
-
width: 1.25rem;
|
|
4359
4411
|
height: 1.25rem;
|
|
4412
|
+
width: 1.25rem;
|
|
4413
|
+
min-width: 1.25rem;
|
|
4414
|
+
font-size: 0.875rem;
|
|
4360
4415
|
}
|
|
4361
4416
|
.fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4362
|
-
bottom: -0.1875rem;
|
|
4363
4417
|
right: -0.1875rem;
|
|
4418
|
+
bottom: -0.1875rem;
|
|
4364
4419
|
}
|
|
4365
4420
|
[dir=rtl] .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4366
4421
|
right: auto;
|
|
@@ -4369,32 +4424,33 @@
|
|
|
4369
4424
|
.fd-avatar--xl {
|
|
4370
4425
|
padding: 0;
|
|
4371
4426
|
margin: 0;
|
|
4372
|
-
width: 7rem;
|
|
4373
|
-
height: 7rem;
|
|
4374
|
-
max-width: 7rem;
|
|
4375
|
-
max-height: 7rem;
|
|
4376
|
-
min-width: 7rem;
|
|
4377
|
-
min-height: 7rem;
|
|
4378
|
-
font-size: 3rem;
|
|
4379
|
-
font-stretch: normal;
|
|
4380
4427
|
display: -webkit-inline-box;
|
|
4381
4428
|
display: -ms-inline-flexbox;
|
|
4382
4429
|
display: inline-flex;
|
|
4383
|
-
-webkit-box-align: center;
|
|
4384
|
-
-ms-flex-align: center;
|
|
4385
|
-
align-items: center;
|
|
4386
4430
|
-webkit-box-pack: center;
|
|
4387
4431
|
-ms-flex-pack: center;
|
|
4388
4432
|
justify-content: center;
|
|
4433
|
+
-webkit-box-align: center;
|
|
4434
|
+
-ms-flex-align: center;
|
|
4435
|
+
align-items: center;
|
|
4436
|
+
width: 7rem;
|
|
4437
|
+
min-width: 7rem;
|
|
4438
|
+
max-width: 7rem;
|
|
4439
|
+
height: 7rem;
|
|
4440
|
+
min-height: 7rem;
|
|
4441
|
+
max-height: 7rem;
|
|
4442
|
+
font-size: 3rem;
|
|
4443
|
+
font-stretch: normal;
|
|
4389
4444
|
}
|
|
4390
4445
|
.fd-avatar--xl .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xl .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4391
|
-
font-size: 1rem;
|
|
4392
|
-
width: 1.75rem;
|
|
4393
4446
|
height: 1.75rem;
|
|
4447
|
+
width: 1.75rem;
|
|
4448
|
+
min-width: 1.75rem;
|
|
4449
|
+
font-size: 1rem;
|
|
4394
4450
|
}
|
|
4395
4451
|
.fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4396
|
-
bottom: -0.25rem;
|
|
4397
4452
|
right: -0.25rem;
|
|
4453
|
+
bottom: -0.25rem;
|
|
4398
4454
|
}
|
|
4399
4455
|
[dir=rtl] .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4400
4456
|
right: auto;
|
|
@@ -4418,11 +4474,6 @@
|
|
|
4418
4474
|
/* stylelint-enable */
|
|
4419
4475
|
/* Fully expanded pseudo element. Requires parent to have specified position */
|
|
4420
4476
|
/* Fully expanded pseudo element. Requires parent to have specified position */
|
|
4421
|
-
/*!
|
|
4422
|
-
.fd-avatar+((--circle), (--thumbnail), (--xxs|--xs|--s|--m|--l|--xl|--xxl), (--accent-color-{1-10}))
|
|
4423
|
-
.fd-avatar__icon
|
|
4424
|
-
.fd-avatar__zoom-icon
|
|
4425
|
-
*/
|
|
4426
4477
|
.fd-avatar {
|
|
4427
4478
|
font-size: var(--sapFontSize);
|
|
4428
4479
|
line-height: var(--sapContent_LineHeight);
|
|
@@ -4434,16 +4485,15 @@
|
|
|
4434
4485
|
padding: 0;
|
|
4435
4486
|
margin: 0;
|
|
4436
4487
|
border: 0;
|
|
4437
|
-
border: var(--fdAvatar_Border);
|
|
4438
|
-
color: var(--sapContent_ContrastTextColor);
|
|
4439
|
-
background-color: var(--fdAvatar_BackgroundColor);
|
|
4440
|
-
display: inline-block;
|
|
4441
4488
|
position: relative;
|
|
4442
4489
|
vertical-align: middle;
|
|
4443
|
-
text-align: center;
|
|
4444
|
-
background-repeat: no-repeat;
|
|
4445
4490
|
background-size: cover;
|
|
4446
4491
|
background-position: 50%;
|
|
4492
|
+
background-repeat: no-repeat;
|
|
4493
|
+
border: var(--fdAvatar_Border);
|
|
4494
|
+
text-shadow: var(--fdAvatar_Text_Shadow);
|
|
4495
|
+
color: var(--sapContent_ContrastTextColor);
|
|
4496
|
+
background-color: var(--fdAvatar_BackgroundColor);
|
|
4447
4497
|
border-radius: var(--sapElement_BorderCornerRadius);
|
|
4448
4498
|
}
|
|
4449
4499
|
.fd-avatar::before, .fd-avatar::after {
|
|
@@ -4452,9 +4502,20 @@
|
|
|
4452
4502
|
font-size: inherit;
|
|
4453
4503
|
}
|
|
4454
4504
|
.fd-avatar:focus, .fd-avatar.is-focus {
|
|
4455
|
-
outline
|
|
4456
|
-
|
|
4457
|
-
|
|
4505
|
+
outline: none;
|
|
4506
|
+
}
|
|
4507
|
+
.fd-avatar:focus::after, .fd-avatar.is-focus::after {
|
|
4508
|
+
border-width: var(--sapContent_FocusWidth);
|
|
4509
|
+
border-color: var(--sapContent_FocusColor);
|
|
4510
|
+
border-style: var(--sapContent_FocusStyle);
|
|
4511
|
+
border-radius: var(--fdAvatar_Focus_Outline_Radius);
|
|
4512
|
+
content: "";
|
|
4513
|
+
position: absolute;
|
|
4514
|
+
pointer-events: none;
|
|
4515
|
+
top: var(--fdAvatar_Focus_Outline_Offset);
|
|
4516
|
+
bottom: var(--fdAvatar_Focus_Outline_Offset);
|
|
4517
|
+
left: var(--fdAvatar_Focus_Outline_Offset);
|
|
4518
|
+
right: var(--fdAvatar_Focus_Outline_Offset);
|
|
4458
4519
|
}
|
|
4459
4520
|
.fd-avatar[tabindex="0"] {
|
|
4460
4521
|
cursor: pointer;
|
|
@@ -4474,11 +4535,11 @@
|
|
|
4474
4535
|
-webkit-box-align: center;
|
|
4475
4536
|
-ms-flex-align: center;
|
|
4476
4537
|
align-items: center;
|
|
4538
|
+
border: 0.0625rem solid var(--sapButton_Emphasized_BorderColor);
|
|
4477
4539
|
position: absolute;
|
|
4540
|
+
border-radius: 50%;
|
|
4478
4541
|
color: var(--sapButton_Emphasized_TextColor);
|
|
4479
4542
|
background-color: var(--sapButton_Emphasized_Background);
|
|
4480
|
-
border-radius: 50%;
|
|
4481
|
-
border: 0.0625rem solid var(--sapButton_Emphasized_BorderColor);
|
|
4482
4543
|
}
|
|
4483
4544
|
.fd-avatar__icon [class*=sap-icon], .fd-avatar__icon[class*=sap-icon] {
|
|
4484
4545
|
color: inherit;
|
|
@@ -4501,16 +4562,32 @@
|
|
|
4501
4562
|
.fd-avatar--circle {
|
|
4502
4563
|
border-radius: 50%;
|
|
4503
4564
|
}
|
|
4565
|
+
.fd-avatar--circle:focus, .fd-avatar--circle.is-focus {
|
|
4566
|
+
outline: none;
|
|
4567
|
+
}
|
|
4568
|
+
.fd-avatar--circle:focus::after, .fd-avatar--circle.is-focus::after {
|
|
4569
|
+
border-width: var(--sapContent_FocusWidth);
|
|
4570
|
+
border-color: var(--sapContent_FocusColor);
|
|
4571
|
+
border-style: var(--sapContent_FocusStyle);
|
|
4572
|
+
border-radius: var(--fdAvatar_Focus_Outline_Radius_Circle);
|
|
4573
|
+
content: "";
|
|
4574
|
+
position: absolute;
|
|
4575
|
+
pointer-events: none;
|
|
4576
|
+
top: var(--fdAvatar_Focus_Outline_Offset);
|
|
4577
|
+
bottom: var(--fdAvatar_Focus_Outline_Offset);
|
|
4578
|
+
left: var(--fdAvatar_Focus_Outline_Offset);
|
|
4579
|
+
right: var(--fdAvatar_Focus_Outline_Offset);
|
|
4580
|
+
}
|
|
4504
4581
|
.fd-avatar--circle .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--circle .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4505
|
-
bottom: 0;
|
|
4506
4582
|
right: 0;
|
|
4583
|
+
bottom: 0;
|
|
4507
4584
|
}
|
|
4508
4585
|
[dir=rtl] .fd-avatar--circle .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--circle .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--circle .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--circle .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4509
4586
|
right: auto;
|
|
4510
4587
|
left: 0;
|
|
4511
4588
|
}
|
|
4512
4589
|
.fd-avatar--transparent {
|
|
4513
|
-
background-color: var(--
|
|
4590
|
+
background-color: var(--fdAvatar_Transparent_BackgroundColor);
|
|
4514
4591
|
color: var(--sapContent_IconColor);
|
|
4515
4592
|
}
|
|
4516
4593
|
.fd-avatar--background-contain {
|
|
@@ -4526,84 +4603,115 @@
|
|
|
4526
4603
|
border: 0.0625rem solid var(--sapGroup_ContentBorderColor);
|
|
4527
4604
|
}
|
|
4528
4605
|
.fd-avatar--accent-color-1 {
|
|
4529
|
-
background-color: var(--fdAvatar_Accent_Color_1);
|
|
4530
|
-
color: var(--fdAvatar_Accent_Color_1_Text);
|
|
4531
4606
|
border: var(--fdAvatar_Accent_Color_1_Border);
|
|
4607
|
+
color: var(--fdAvatar_Accent_Color_1_Text);
|
|
4608
|
+
background-color: var(--fdAvatar_Accent_Color_1);
|
|
4609
|
+
}
|
|
4610
|
+
.fd-avatar--accent-color-1.fd-avatar--shell {
|
|
4611
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4532
4612
|
}
|
|
4533
4613
|
.fd-avatar--accent-color-2 {
|
|
4534
|
-
background-color: var(--fdAvatar_Accent_Color_2);
|
|
4535
|
-
color: var(--fdAvatar_Accent_Color_2_Text);
|
|
4536
4614
|
border: var(--fdAvatar_Accent_Color_2_Border);
|
|
4615
|
+
color: var(--fdAvatar_Accent_Color_2_Text);
|
|
4616
|
+
background-color: var(--fdAvatar_Accent_Color_2);
|
|
4617
|
+
}
|
|
4618
|
+
.fd-avatar--accent-color-2.fd-avatar--shell {
|
|
4619
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4537
4620
|
}
|
|
4538
4621
|
.fd-avatar--accent-color-3 {
|
|
4539
|
-
background-color: var(--fdAvatar_Accent_Color_3);
|
|
4540
|
-
color: var(--fdAvatar_Accent_Color_3_Text);
|
|
4541
4622
|
border: var(--fdAvatar_Accent_Color_3_Border);
|
|
4623
|
+
color: var(--fdAvatar_Accent_Color_3_Text);
|
|
4624
|
+
background-color: var(--fdAvatar_Accent_Color_3);
|
|
4625
|
+
}
|
|
4626
|
+
.fd-avatar--accent-color-3.fd-avatar--shell {
|
|
4627
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4542
4628
|
}
|
|
4543
4629
|
.fd-avatar--accent-color-4 {
|
|
4544
|
-
background-color: var(--fdAvatar_Accent_Color_4);
|
|
4545
|
-
color: var(--fdAvatar_Accent_Color_4_Text);
|
|
4546
4630
|
border: var(--fdAvatar_Accent_Color_4_Border);
|
|
4631
|
+
color: var(--fdAvatar_Accent_Color_4_Text);
|
|
4632
|
+
background-color: var(--fdAvatar_Accent_Color_4);
|
|
4633
|
+
}
|
|
4634
|
+
.fd-avatar--accent-color-4.fd-avatar--shell {
|
|
4635
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4547
4636
|
}
|
|
4548
4637
|
.fd-avatar--accent-color-5 {
|
|
4549
|
-
background-color: var(--fdAvatar_Accent_Color_5);
|
|
4550
|
-
color: var(--fdAvatar_Accent_Color_5_Text);
|
|
4551
4638
|
border: var(--fdAvatar_Accent_Color_5_Border);
|
|
4639
|
+
color: var(--fdAvatar_Accent_Color_5_Text);
|
|
4640
|
+
background-color: var(--fdAvatar_Accent_Color_5);
|
|
4641
|
+
}
|
|
4642
|
+
.fd-avatar--accent-color-5.fd-avatar--shell {
|
|
4643
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4552
4644
|
}
|
|
4553
4645
|
.fd-avatar--accent-color-6 {
|
|
4554
|
-
background-color: var(--fdAvatar_Accent_Color_6);
|
|
4555
|
-
color: var(--fdAvatar_Accent_Color_6_Text);
|
|
4556
4646
|
border: var(--fdAvatar_Accent_Color_6_Border);
|
|
4647
|
+
color: var(--fdAvatar_Accent_Color_6_Text);
|
|
4648
|
+
background-color: var(--fdAvatar_Accent_Color_6);
|
|
4649
|
+
}
|
|
4650
|
+
.fd-avatar--accent-color-6.fd-avatar--shell {
|
|
4651
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4557
4652
|
}
|
|
4558
4653
|
.fd-avatar--accent-color-7 {
|
|
4559
|
-
background-color: var(--fdAvatar_Accent_Color_7);
|
|
4560
|
-
color: var(--fdAvatar_Accent_Color_7_Text);
|
|
4561
4654
|
border: var(--fdAvatar_Accent_Color_7_Border);
|
|
4655
|
+
color: var(--fdAvatar_Accent_Color_7_Text);
|
|
4656
|
+
background-color: var(--fdAvatar_Accent_Color_7);
|
|
4657
|
+
}
|
|
4658
|
+
.fd-avatar--accent-color-7.fd-avatar--shell {
|
|
4659
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4562
4660
|
}
|
|
4563
4661
|
.fd-avatar--accent-color-8 {
|
|
4564
|
-
background-color: var(--fdAvatar_Accent_Color_8);
|
|
4565
|
-
color: var(--fdAvatar_Accent_Color_8_Text);
|
|
4566
4662
|
border: var(--fdAvatar_Accent_Color_8_Border);
|
|
4663
|
+
color: var(--fdAvatar_Accent_Color_8_Text);
|
|
4664
|
+
background-color: var(--fdAvatar_Accent_Color_8);
|
|
4665
|
+
}
|
|
4666
|
+
.fd-avatar--accent-color-8.fd-avatar--shell {
|
|
4667
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4567
4668
|
}
|
|
4568
4669
|
.fd-avatar--accent-color-9 {
|
|
4569
|
-
background-color: var(--fdAvatar_Accent_Color_9);
|
|
4570
|
-
color: var(--fdAvatar_Accent_Color_9_Text);
|
|
4571
4670
|
border: var(--fdAvatar_Accent_Color_9_Border);
|
|
4671
|
+
color: var(--fdAvatar_Accent_Color_9_Text);
|
|
4672
|
+
background-color: var(--fdAvatar_Accent_Color_9);
|
|
4673
|
+
}
|
|
4674
|
+
.fd-avatar--accent-color-9.fd-avatar--shell {
|
|
4675
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4572
4676
|
}
|
|
4573
4677
|
.fd-avatar--accent-color-10 {
|
|
4574
|
-
background-color: var(--fdAvatar_Accent_Color_10);
|
|
4575
|
-
color: var(--fdAvatar_Accent_Color_10_Text);
|
|
4576
4678
|
border: var(--fdAvatar_Accent_Color_10_Border);
|
|
4679
|
+
color: var(--fdAvatar_Accent_Color_10_Text);
|
|
4680
|
+
background-color: var(--fdAvatar_Accent_Color_10);
|
|
4681
|
+
}
|
|
4682
|
+
.fd-avatar--accent-color-10.fd-avatar--shell {
|
|
4683
|
+
border: 0.0625rem solid var(--sapShell_InteractiveBorderColor);
|
|
4577
4684
|
}
|
|
4578
4685
|
.fd-avatar--xs {
|
|
4579
4686
|
padding: 0;
|
|
4580
4687
|
margin: 0;
|
|
4581
|
-
width: 2rem;
|
|
4582
|
-
height: 2rem;
|
|
4583
|
-
max-width: 2rem;
|
|
4584
|
-
max-height: 2rem;
|
|
4585
|
-
min-width: 2rem;
|
|
4586
|
-
min-height: 2rem;
|
|
4587
|
-
font-size: 1rem;
|
|
4588
|
-
font-stretch: condensed;
|
|
4589
4688
|
display: -webkit-inline-box;
|
|
4590
4689
|
display: -ms-inline-flexbox;
|
|
4591
4690
|
display: inline-flex;
|
|
4592
|
-
-webkit-box-align: center;
|
|
4593
|
-
-ms-flex-align: center;
|
|
4594
|
-
align-items: center;
|
|
4595
4691
|
-webkit-box-pack: center;
|
|
4596
4692
|
-ms-flex-pack: center;
|
|
4597
4693
|
justify-content: center;
|
|
4694
|
+
-webkit-box-align: center;
|
|
4695
|
+
-ms-flex-align: center;
|
|
4696
|
+
align-items: center;
|
|
4697
|
+
width: 2rem;
|
|
4698
|
+
min-width: 2rem;
|
|
4699
|
+
max-width: 2rem;
|
|
4700
|
+
height: 2rem;
|
|
4701
|
+
min-height: 2rem;
|
|
4702
|
+
max-height: 2rem;
|
|
4703
|
+
font-size: 1rem;
|
|
4704
|
+
font-stretch: condensed;
|
|
4598
4705
|
}
|
|
4599
4706
|
.fd-avatar--xs .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xs .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4600
|
-
font-size: 0.75rem;
|
|
4601
|
-
width: 1.125rem;
|
|
4602
4707
|
height: 1.125rem;
|
|
4708
|
+
width: 1.125rem;
|
|
4709
|
+
min-width: 1.125rem;
|
|
4710
|
+
font-size: 0.75rem;
|
|
4603
4711
|
}
|
|
4604
4712
|
.fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4605
|
-
bottom: -0.125rem;
|
|
4606
4713
|
right: -0.125rem;
|
|
4714
|
+
bottom: -0.125rem;
|
|
4607
4715
|
}
|
|
4608
4716
|
[dir=rtl] .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--xs:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4609
4717
|
right: auto;
|
|
@@ -4612,32 +4720,33 @@
|
|
|
4612
4720
|
.fd-avatar--s {
|
|
4613
4721
|
padding: 0;
|
|
4614
4722
|
margin: 0;
|
|
4615
|
-
width: 3rem;
|
|
4616
|
-
height: 3rem;
|
|
4617
|
-
max-width: 3rem;
|
|
4618
|
-
max-height: 3rem;
|
|
4619
|
-
min-width: 3rem;
|
|
4620
|
-
min-height: 3rem;
|
|
4621
|
-
font-size: 1.125rem;
|
|
4622
|
-
font-stretch: condensed;
|
|
4623
4723
|
display: -webkit-inline-box;
|
|
4624
4724
|
display: -ms-inline-flexbox;
|
|
4625
4725
|
display: inline-flex;
|
|
4626
|
-
-webkit-box-align: center;
|
|
4627
|
-
-ms-flex-align: center;
|
|
4628
|
-
align-items: center;
|
|
4629
4726
|
-webkit-box-pack: center;
|
|
4630
4727
|
-ms-flex-pack: center;
|
|
4631
4728
|
justify-content: center;
|
|
4729
|
+
-webkit-box-align: center;
|
|
4730
|
+
-ms-flex-align: center;
|
|
4731
|
+
align-items: center;
|
|
4732
|
+
width: 3rem;
|
|
4733
|
+
min-width: 3rem;
|
|
4734
|
+
max-width: 3rem;
|
|
4735
|
+
height: 3rem;
|
|
4736
|
+
min-height: 3rem;
|
|
4737
|
+
max-height: 3rem;
|
|
4738
|
+
font-size: 1.125rem;
|
|
4739
|
+
font-stretch: condensed;
|
|
4632
4740
|
}
|
|
4633
4741
|
.fd-avatar--s .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--s .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4634
|
-
font-size: 0.75rem;
|
|
4635
|
-
width: 1.125rem;
|
|
4636
4742
|
height: 1.125rem;
|
|
4743
|
+
width: 1.125rem;
|
|
4744
|
+
min-width: 1.125rem;
|
|
4745
|
+
font-size: 0.75rem;
|
|
4637
4746
|
}
|
|
4638
4747
|
.fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4639
|
-
bottom: -0.125rem;
|
|
4640
4748
|
right: -0.125rem;
|
|
4749
|
+
bottom: -0.125rem;
|
|
4641
4750
|
}
|
|
4642
4751
|
[dir=rtl] .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--s:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4643
4752
|
right: auto;
|
|
@@ -4646,32 +4755,33 @@
|
|
|
4646
4755
|
.fd-avatar--m {
|
|
4647
4756
|
padding: 0;
|
|
4648
4757
|
margin: 0;
|
|
4649
|
-
width: 4rem;
|
|
4650
|
-
height: 4rem;
|
|
4651
|
-
max-width: 4rem;
|
|
4652
|
-
max-height: 4rem;
|
|
4653
|
-
min-width: 4rem;
|
|
4654
|
-
min-height: 4rem;
|
|
4655
|
-
font-size: 1.5rem;
|
|
4656
|
-
font-stretch: normal;
|
|
4657
4758
|
display: -webkit-inline-box;
|
|
4658
4759
|
display: -ms-inline-flexbox;
|
|
4659
4760
|
display: inline-flex;
|
|
4660
|
-
-webkit-box-align: center;
|
|
4661
|
-
-ms-flex-align: center;
|
|
4662
|
-
align-items: center;
|
|
4663
4761
|
-webkit-box-pack: center;
|
|
4664
4762
|
-ms-flex-pack: center;
|
|
4665
4763
|
justify-content: center;
|
|
4764
|
+
-webkit-box-align: center;
|
|
4765
|
+
-ms-flex-align: center;
|
|
4766
|
+
align-items: center;
|
|
4767
|
+
width: 4rem;
|
|
4768
|
+
min-width: 4rem;
|
|
4769
|
+
max-width: 4rem;
|
|
4770
|
+
height: 4rem;
|
|
4771
|
+
min-height: 4rem;
|
|
4772
|
+
max-height: 4rem;
|
|
4773
|
+
font-size: 1.5rem;
|
|
4774
|
+
font-stretch: normal;
|
|
4666
4775
|
}
|
|
4667
4776
|
.fd-avatar--m .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--m .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4668
|
-
font-size: 0.75rem;
|
|
4669
|
-
width: 1.125rem;
|
|
4670
4777
|
height: 1.125rem;
|
|
4778
|
+
width: 1.125rem;
|
|
4779
|
+
min-width: 1.125rem;
|
|
4780
|
+
font-size: 0.75rem;
|
|
4671
4781
|
}
|
|
4672
4782
|
.fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4673
|
-
bottom: -0.125rem;
|
|
4674
4783
|
right: -0.125rem;
|
|
4784
|
+
bottom: -0.125rem;
|
|
4675
4785
|
}
|
|
4676
4786
|
[dir=rtl] .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--m:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4677
4787
|
right: auto;
|
|
@@ -4680,32 +4790,33 @@
|
|
|
4680
4790
|
.fd-avatar--l {
|
|
4681
4791
|
padding: 0;
|
|
4682
4792
|
margin: 0;
|
|
4683
|
-
width: 5rem;
|
|
4684
|
-
height: 5rem;
|
|
4685
|
-
max-width: 5rem;
|
|
4686
|
-
max-height: 5rem;
|
|
4687
|
-
min-width: 5rem;
|
|
4688
|
-
min-height: 5rem;
|
|
4689
|
-
font-size: 2.25rem;
|
|
4690
|
-
font-stretch: normal;
|
|
4691
4793
|
display: -webkit-inline-box;
|
|
4692
4794
|
display: -ms-inline-flexbox;
|
|
4693
4795
|
display: inline-flex;
|
|
4694
|
-
-webkit-box-align: center;
|
|
4695
|
-
-ms-flex-align: center;
|
|
4696
|
-
align-items: center;
|
|
4697
4796
|
-webkit-box-pack: center;
|
|
4698
4797
|
-ms-flex-pack: center;
|
|
4699
4798
|
justify-content: center;
|
|
4799
|
+
-webkit-box-align: center;
|
|
4800
|
+
-ms-flex-align: center;
|
|
4801
|
+
align-items: center;
|
|
4802
|
+
width: 5rem;
|
|
4803
|
+
min-width: 5rem;
|
|
4804
|
+
max-width: 5rem;
|
|
4805
|
+
height: 5rem;
|
|
4806
|
+
min-height: 5rem;
|
|
4807
|
+
max-height: 5rem;
|
|
4808
|
+
font-size: 2.25rem;
|
|
4809
|
+
font-stretch: normal;
|
|
4700
4810
|
}
|
|
4701
4811
|
.fd-avatar--l .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--l .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4702
|
-
font-size: 0.875rem;
|
|
4703
|
-
width: 1.25rem;
|
|
4704
4812
|
height: 1.25rem;
|
|
4813
|
+
width: 1.25rem;
|
|
4814
|
+
min-width: 1.25rem;
|
|
4815
|
+
font-size: 0.875rem;
|
|
4705
4816
|
}
|
|
4706
4817
|
.fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4707
|
-
bottom: -0.1875rem;
|
|
4708
4818
|
right: -0.1875rem;
|
|
4819
|
+
bottom: -0.1875rem;
|
|
4709
4820
|
}
|
|
4710
4821
|
[dir=rtl] .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--l:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4711
4822
|
right: auto;
|
|
@@ -4714,32 +4825,33 @@
|
|
|
4714
4825
|
.fd-avatar--xl {
|
|
4715
4826
|
padding: 0;
|
|
4716
4827
|
margin: 0;
|
|
4717
|
-
width: 7rem;
|
|
4718
|
-
height: 7rem;
|
|
4719
|
-
max-width: 7rem;
|
|
4720
|
-
max-height: 7rem;
|
|
4721
|
-
min-width: 7rem;
|
|
4722
|
-
min-height: 7rem;
|
|
4723
|
-
font-size: 3rem;
|
|
4724
|
-
font-stretch: normal;
|
|
4725
4828
|
display: -webkit-inline-box;
|
|
4726
4829
|
display: -ms-inline-flexbox;
|
|
4727
4830
|
display: inline-flex;
|
|
4728
|
-
-webkit-box-align: center;
|
|
4729
|
-
-ms-flex-align: center;
|
|
4730
|
-
align-items: center;
|
|
4731
4831
|
-webkit-box-pack: center;
|
|
4732
4832
|
-ms-flex-pack: center;
|
|
4733
4833
|
justify-content: center;
|
|
4834
|
+
-webkit-box-align: center;
|
|
4835
|
+
-ms-flex-align: center;
|
|
4836
|
+
align-items: center;
|
|
4837
|
+
width: 7rem;
|
|
4838
|
+
min-width: 7rem;
|
|
4839
|
+
max-width: 7rem;
|
|
4840
|
+
height: 7rem;
|
|
4841
|
+
min-height: 7rem;
|
|
4842
|
+
max-height: 7rem;
|
|
4843
|
+
font-size: 3rem;
|
|
4844
|
+
font-stretch: normal;
|
|
4734
4845
|
}
|
|
4735
4846
|
.fd-avatar--xl .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xl .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4736
|
-
font-size: 1rem;
|
|
4737
|
-
width: 1.75rem;
|
|
4738
4847
|
height: 1.75rem;
|
|
4848
|
+
width: 1.75rem;
|
|
4849
|
+
min-width: 1.75rem;
|
|
4850
|
+
font-size: 1rem;
|
|
4739
4851
|
}
|
|
4740
4852
|
.fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon] {
|
|
4741
|
-
bottom: -0.25rem;
|
|
4742
4853
|
right: -0.25rem;
|
|
4854
|
+
bottom: -0.25rem;
|
|
4743
4855
|
}
|
|
4744
4856
|
[dir=rtl] .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon], .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon [class*=sap-icon][dir=rtl], [dir=rtl] .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon], .fd-avatar--xl:not(.fd-avatar--circle) .fd-avatar__zoom-icon[class*=sap-icon][dir=rtl] {
|
|
4745
4857
|
right: auto;
|
|
@@ -4762,38 +4874,51 @@
|
|
|
4762
4874
|
display: -webkit-box;
|
|
4763
4875
|
display: -ms-flexbox;
|
|
4764
4876
|
display: flex;
|
|
4877
|
+
-webkit-box-orient: horizontal;
|
|
4878
|
+
-webkit-box-direction: normal;
|
|
4879
|
+
-ms-flex-direction: row;
|
|
4880
|
+
flex-direction: row;
|
|
4765
4881
|
}
|
|
4766
4882
|
.fd-avatar-group::before, .fd-avatar-group::after {
|
|
4767
4883
|
-webkit-box-sizing: inherit;
|
|
4768
4884
|
box-sizing: inherit;
|
|
4769
4885
|
font-size: inherit;
|
|
4770
4886
|
}
|
|
4771
|
-
.fd-avatar-group__popover-control, .fd-avatar-
|
|
4887
|
+
.fd-avatar-group__popover-control[tabindex="0"], .fd-avatar-group--group-type[tabindex="0"] {
|
|
4772
4888
|
cursor: pointer;
|
|
4773
4889
|
}
|
|
4774
|
-
.fd-avatar-group__popover-control:focus, .fd-avatar-group__popover-control.is-focus, .fd-avatar-
|
|
4775
|
-
outline
|
|
4776
|
-
outline-width: var(--sapContent_FocusWidth);
|
|
4777
|
-
outline-color: var(--sapContent_FocusColor);
|
|
4778
|
-
outline-style: var(--sapContent_FocusStyle);
|
|
4779
|
-
}
|
|
4780
|
-
.fd-avatar-group--individual-type .fd-avatar-group__item {
|
|
4781
|
-
cursor: pointer;
|
|
4890
|
+
.fd-avatar-group__popover-control[tabindex="0"]:focus, .fd-avatar-group__popover-control[tabindex="0"].is-focus, .fd-avatar-group--group-type[tabindex="0"]:focus, .fd-avatar-group--group-type[tabindex="0"].is-focus {
|
|
4891
|
+
outline: none;
|
|
4782
4892
|
}
|
|
4783
|
-
.fd-avatar-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4893
|
+
.fd-avatar-group__popover-control[tabindex="0"]:focus::after, .fd-avatar-group__popover-control[tabindex="0"].is-focus::after, .fd-avatar-group--group-type[tabindex="0"]:focus::after, .fd-avatar-group--group-type[tabindex="0"].is-focus::after {
|
|
4894
|
+
border-width: var(--sapContent_FocusWidth);
|
|
4895
|
+
border-color: var(--sapContent_FocusColor);
|
|
4896
|
+
border-style: var(--sapContent_FocusStyle);
|
|
4897
|
+
border-radius: var(--fdAvatarGroup_Focus_Outline_Radius);
|
|
4898
|
+
content: "";
|
|
4899
|
+
position: absolute;
|
|
4900
|
+
pointer-events: none;
|
|
4901
|
+
top: var(--fdAvatarGroup_Focus_Outline_Offset);
|
|
4902
|
+
bottom: var(--fdAvatarGroup_Focus_Outline_Offset);
|
|
4903
|
+
left: var(--fdAvatarGroup_Focus_Outline_Offset);
|
|
4904
|
+
right: var(--fdAvatarGroup_Focus_Outline_Offset);
|
|
4788
4905
|
}
|
|
4789
|
-
.fd-avatar-
|
|
4790
|
-
|
|
4906
|
+
.fd-avatar-group__focusable-avatar:focus, .fd-avatar-group__focusable-avatar.is-focus, .fd-avatar-group__item[tabindex="0"]:focus, .fd-avatar-group__item[tabindex="0"].is-focus {
|
|
4907
|
+
z-index: 5;
|
|
4908
|
+
outline: none;
|
|
4791
4909
|
}
|
|
4792
|
-
.fd-avatar-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4910
|
+
.fd-avatar-group__focusable-avatar:focus .fd-avatar::after, .fd-avatar-group__focusable-avatar.is-focus .fd-avatar::after, .fd-avatar-group__item[tabindex="0"]:focus .fd-avatar::after, .fd-avatar-group__item[tabindex="0"].is-focus .fd-avatar::after {
|
|
4911
|
+
border-width: var(--sapContent_FocusWidth);
|
|
4912
|
+
border-color: var(--sapContent_FocusColor);
|
|
4913
|
+
border-style: var(--sapContent_FocusStyle);
|
|
4914
|
+
border-radius: var(--fdAvatar_Focus_Outline_Radius_Circle);
|
|
4915
|
+
content: "";
|
|
4916
|
+
position: absolute;
|
|
4917
|
+
pointer-events: none;
|
|
4918
|
+
top: var(--fdAvatar_Focus_Outline_Offset);
|
|
4919
|
+
bottom: var(--fdAvatar_Focus_Outline_Offset);
|
|
4920
|
+
left: var(--fdAvatar_Focus_Outline_Offset);
|
|
4921
|
+
right: var(--fdAvatar_Focus_Outline_Offset);
|
|
4797
4922
|
}
|
|
4798
4923
|
.fd-avatar-group--group-type .fd-avatar-group__more-button {
|
|
4799
4924
|
pointer-events: none;
|
|
@@ -4809,6 +4934,7 @@
|
|
|
4809
4934
|
padding: 0;
|
|
4810
4935
|
margin: 0;
|
|
4811
4936
|
border: 0;
|
|
4937
|
+
position: relative;
|
|
4812
4938
|
display: inline-block;
|
|
4813
4939
|
}
|
|
4814
4940
|
.fd-avatar-group__item::before, .fd-avatar-group__item::after {
|
|
@@ -4819,33 +4945,25 @@
|
|
|
4819
4945
|
.fd-avatar-group__more-button {
|
|
4820
4946
|
outline: none !important;
|
|
4821
4947
|
}
|
|
4948
|
+
.fd-avatar-group__more-button:focus, .fd-avatar-group__more-button.is-focus {
|
|
4949
|
+
outline: none;
|
|
4950
|
+
}
|
|
4822
4951
|
.fd-avatar-group__more-button:focus::after, .fd-avatar-group__more-button.is-focus::after {
|
|
4823
4952
|
border-width: var(--sapContent_FocusWidth);
|
|
4824
4953
|
border-color: var(--sapContent_FocusColor);
|
|
4825
4954
|
border-style: var(--sapContent_FocusStyle);
|
|
4955
|
+
border-radius: var(--fdAvatar_Focus_Outline_Radius_Circle);
|
|
4826
4956
|
content: "";
|
|
4827
4957
|
position: absolute;
|
|
4828
4958
|
pointer-events: none;
|
|
4829
|
-
top:
|
|
4830
|
-
bottom:
|
|
4831
|
-
left:
|
|
4832
|
-
right:
|
|
4959
|
+
top: var(--fdAvatar_Focus_Outline_Offset);
|
|
4960
|
+
bottom: var(--fdAvatar_Focus_Outline_Offset);
|
|
4961
|
+
left: var(--fdAvatar_Focus_Outline_Offset);
|
|
4962
|
+
right: var(--fdAvatar_Focus_Outline_Offset);
|
|
4833
4963
|
}
|
|
4834
4964
|
.fd-avatar-group__more-button .fd-avatar-group__button-text {
|
|
4835
4965
|
font-size: inherit;
|
|
4836
4966
|
}
|
|
4837
|
-
.fd-avatar-group__more-button .fd-avatar-group__button-text bdi {
|
|
4838
|
-
font-size: inherit;
|
|
4839
|
-
}
|
|
4840
|
-
.fd-avatar-group__more-button:focus, .fd-avatar-group__more-button.is-focus {
|
|
4841
|
-
z-index: 5;
|
|
4842
|
-
}
|
|
4843
|
-
.fd-avatar-group__more-button:focus::after, .fd-avatar-group__more-button.is-focus::after {
|
|
4844
|
-
top: var(--fdAvatarGroup_MoreButton_Vertical_Offset);
|
|
4845
|
-
bottom: var(--fdAvatarGroup_MoreButton_Vertical_Offset);
|
|
4846
|
-
left: -0.25rem;
|
|
4847
|
-
right: -0.25rem;
|
|
4848
|
-
}
|
|
4849
4967
|
.fd-avatar-group__overflow-body {
|
|
4850
4968
|
font-size: var(--sapFontSize);
|
|
4851
4969
|
line-height: var(--sapContent_LineHeight);
|
|
@@ -4877,180 +4995,230 @@
|
|
|
4877
4995
|
.fd-avatar-group__overflow-body .fd-avatar-group__item {
|
|
4878
4996
|
margin: 0.25rem;
|
|
4879
4997
|
}
|
|
4880
|
-
.fd-avatar-group--xs .fd-avatar-
|
|
4998
|
+
.fd-avatar-group--xs .fd-avatar-group__item {
|
|
4999
|
+
width: 2rem;
|
|
5000
|
+
min-width: 2rem;
|
|
5001
|
+
max-width: 2rem;
|
|
4881
5002
|
height: 2rem;
|
|
4882
|
-
max-height: 2rem;
|
|
4883
5003
|
min-height: 2rem;
|
|
5004
|
+
max-height: 2rem;
|
|
5005
|
+
}
|
|
5006
|
+
.fd-avatar-group--xs .fd-avatar-group__more-button {
|
|
5007
|
+
width: 2rem;
|
|
4884
5008
|
min-width: 2rem;
|
|
4885
|
-
|
|
5009
|
+
max-width: 2rem;
|
|
5010
|
+
height: 2rem;
|
|
5011
|
+
min-height: 2rem;
|
|
5012
|
+
max-height: 2rem;
|
|
4886
5013
|
border-radius: 25rem;
|
|
5014
|
+
font-size: 1rem;
|
|
4887
5015
|
border-width: var(--fdAvatarGroup_MoreButton_Border);
|
|
4888
5016
|
}
|
|
4889
|
-
.fd-avatar-group--s .fd-avatar-
|
|
5017
|
+
.fd-avatar-group--s .fd-avatar-group__item {
|
|
5018
|
+
width: 3rem;
|
|
5019
|
+
min-width: 3rem;
|
|
5020
|
+
max-width: 3rem;
|
|
4890
5021
|
height: 3rem;
|
|
4891
|
-
max-height: 3rem;
|
|
4892
5022
|
min-height: 3rem;
|
|
5023
|
+
max-height: 3rem;
|
|
5024
|
+
}
|
|
5025
|
+
.fd-avatar-group--s .fd-avatar-group__more-button {
|
|
5026
|
+
width: 3rem;
|
|
4893
5027
|
min-width: 3rem;
|
|
4894
|
-
|
|
5028
|
+
max-width: 3rem;
|
|
5029
|
+
height: 3rem;
|
|
5030
|
+
min-height: 3rem;
|
|
5031
|
+
max-height: 3rem;
|
|
4895
5032
|
border-radius: 25rem;
|
|
5033
|
+
font-size: 1.125rem;
|
|
4896
5034
|
border-width: var(--fdAvatarGroup_MoreButton_Border);
|
|
4897
5035
|
}
|
|
4898
|
-
.fd-avatar-group--m .fd-avatar-
|
|
5036
|
+
.fd-avatar-group--m .fd-avatar-group__item {
|
|
5037
|
+
width: 4rem;
|
|
5038
|
+
min-width: 4rem;
|
|
5039
|
+
max-width: 4rem;
|
|
4899
5040
|
height: 4rem;
|
|
4900
|
-
max-height: 4rem;
|
|
4901
5041
|
min-height: 4rem;
|
|
5042
|
+
max-height: 4rem;
|
|
5043
|
+
}
|
|
5044
|
+
.fd-avatar-group--m .fd-avatar-group__more-button {
|
|
5045
|
+
width: 4rem;
|
|
4902
5046
|
min-width: 4rem;
|
|
4903
|
-
|
|
5047
|
+
max-width: 4rem;
|
|
5048
|
+
height: 4rem;
|
|
5049
|
+
min-height: 4rem;
|
|
5050
|
+
max-height: 4rem;
|
|
4904
5051
|
border-radius: 25rem;
|
|
5052
|
+
font-size: 1.5rem;
|
|
4905
5053
|
border-width: var(--fdAvatarGroup_MoreButton_Border);
|
|
4906
5054
|
}
|
|
4907
|
-
.fd-avatar-group--l .fd-avatar-
|
|
5055
|
+
.fd-avatar-group--l .fd-avatar-group__item {
|
|
5056
|
+
width: 5rem;
|
|
5057
|
+
min-width: 5rem;
|
|
5058
|
+
max-width: 5rem;
|
|
4908
5059
|
height: 5rem;
|
|
4909
|
-
max-height: 5rem;
|
|
4910
5060
|
min-height: 5rem;
|
|
5061
|
+
max-height: 5rem;
|
|
5062
|
+
}
|
|
5063
|
+
.fd-avatar-group--l .fd-avatar-group__more-button {
|
|
5064
|
+
width: 5rem;
|
|
4911
5065
|
min-width: 5rem;
|
|
4912
|
-
|
|
5066
|
+
max-width: 5rem;
|
|
5067
|
+
height: 5rem;
|
|
5068
|
+
min-height: 5rem;
|
|
5069
|
+
max-height: 5rem;
|
|
4913
5070
|
border-radius: 25rem;
|
|
5071
|
+
font-size: 2.25rem;
|
|
4914
5072
|
border-width: var(--fdAvatarGroup_MoreButton_Border);
|
|
4915
5073
|
}
|
|
4916
|
-
.fd-avatar-group--xl .fd-avatar-
|
|
5074
|
+
.fd-avatar-group--xl .fd-avatar-group__item {
|
|
5075
|
+
width: 7rem;
|
|
5076
|
+
min-width: 7rem;
|
|
5077
|
+
max-width: 7rem;
|
|
4917
5078
|
height: 7rem;
|
|
4918
|
-
max-height: 7rem;
|
|
4919
5079
|
min-height: 7rem;
|
|
5080
|
+
max-height: 7rem;
|
|
5081
|
+
}
|
|
5082
|
+
.fd-avatar-group--xl .fd-avatar-group__more-button {
|
|
5083
|
+
width: 7rem;
|
|
4920
5084
|
min-width: 7rem;
|
|
4921
|
-
|
|
5085
|
+
max-width: 7rem;
|
|
5086
|
+
height: 7rem;
|
|
5087
|
+
min-height: 7rem;
|
|
5088
|
+
max-height: 7rem;
|
|
4922
5089
|
border-radius: 25rem;
|
|
5090
|
+
font-size: 3rem;
|
|
4923
5091
|
border-width: var(--fdAvatarGroup_MoreButton_Border);
|
|
4924
5092
|
}
|
|
4925
5093
|
.fd-avatar-group--individual-type.fd-avatar-group--xs .fd-avatar-group__item {
|
|
4926
|
-
margin-right: 0.0625rem;
|
|
4927
5094
|
margin-left: 0;
|
|
5095
|
+
margin-right: 0.0625rem;
|
|
4928
5096
|
}
|
|
4929
5097
|
[dir=rtl] .fd-avatar-group--individual-type.fd-avatar-group--xs .fd-avatar-group__item, .fd-avatar-group--individual-type.fd-avatar-group--xs .fd-avatar-group__item[dir=rtl] {
|
|
4930
5098
|
margin-right: 0;
|
|
4931
5099
|
margin-left: 0.0625rem;
|
|
4932
5100
|
}
|
|
4933
5101
|
.fd-avatar-group--individual-type.fd-avatar-group--s .fd-avatar-group__item {
|
|
4934
|
-
margin-right: 0.125rem;
|
|
4935
5102
|
margin-left: 0;
|
|
5103
|
+
margin-right: 0.125rem;
|
|
4936
5104
|
}
|
|
4937
5105
|
[dir=rtl] .fd-avatar-group--individual-type.fd-avatar-group--s .fd-avatar-group__item, .fd-avatar-group--individual-type.fd-avatar-group--s .fd-avatar-group__item[dir=rtl] {
|
|
4938
5106
|
margin-right: 0;
|
|
4939
5107
|
margin-left: 0.125rem;
|
|
4940
5108
|
}
|
|
4941
5109
|
.fd-avatar-group--individual-type.fd-avatar-group--m .fd-avatar-group__item {
|
|
4942
|
-
margin-right: 0.125rem;
|
|
4943
5110
|
margin-left: 0;
|
|
5111
|
+
margin-right: 0.125rem;
|
|
4944
5112
|
}
|
|
4945
5113
|
[dir=rtl] .fd-avatar-group--individual-type.fd-avatar-group--m .fd-avatar-group__item, .fd-avatar-group--individual-type.fd-avatar-group--m .fd-avatar-group__item[dir=rtl] {
|
|
4946
5114
|
margin-right: 0;
|
|
4947
5115
|
margin-left: 0.125rem;
|
|
4948
5116
|
}
|
|
4949
5117
|
.fd-avatar-group--individual-type.fd-avatar-group--l .fd-avatar-group__item {
|
|
4950
|
-
margin-right: 0.125rem;
|
|
4951
5118
|
margin-left: 0;
|
|
5119
|
+
margin-right: 0.125rem;
|
|
4952
5120
|
}
|
|
4953
5121
|
[dir=rtl] .fd-avatar-group--individual-type.fd-avatar-group--l .fd-avatar-group__item, .fd-avatar-group--individual-type.fd-avatar-group--l .fd-avatar-group__item[dir=rtl] {
|
|
4954
5122
|
margin-right: 0;
|
|
4955
5123
|
margin-left: 0.125rem;
|
|
4956
5124
|
}
|
|
4957
5125
|
.fd-avatar-group--individual-type.fd-avatar-group--xl .fd-avatar-group__item {
|
|
4958
|
-
margin-right: 0.25rem;
|
|
4959
5126
|
margin-left: 0;
|
|
5127
|
+
margin-right: 0.25rem;
|
|
4960
5128
|
}
|
|
4961
5129
|
[dir=rtl] .fd-avatar-group--individual-type.fd-avatar-group--xl .fd-avatar-group__item, .fd-avatar-group--individual-type.fd-avatar-group--xl .fd-avatar-group__item[dir=rtl] {
|
|
4962
5130
|
margin-right: 0;
|
|
4963
5131
|
margin-left: 0.25rem;
|
|
4964
5132
|
}
|
|
4965
5133
|
.fd-avatar-group--group-type.fd-avatar-group--xs .fd-avatar-group__item {
|
|
4966
|
-
margin-right: -0.75rem;
|
|
4967
5134
|
margin-left: 0;
|
|
5135
|
+
margin-right: -0.75rem;
|
|
4968
5136
|
}
|
|
4969
5137
|
[dir=rtl] .fd-avatar-group--group-type.fd-avatar-group--xs .fd-avatar-group__item, .fd-avatar-group--group-type.fd-avatar-group--xs .fd-avatar-group__item[dir=rtl] {
|
|
4970
5138
|
margin-right: 0;
|
|
4971
5139
|
margin-left: -0.75rem;
|
|
4972
5140
|
}
|
|
4973
5141
|
.fd-avatar-group--group-type.fd-avatar-group--s .fd-avatar-group__item {
|
|
4974
|
-
margin-right: -1.25rem;
|
|
4975
5142
|
margin-left: 0;
|
|
5143
|
+
margin-right: -1.25rem;
|
|
4976
5144
|
}
|
|
4977
5145
|
[dir=rtl] .fd-avatar-group--group-type.fd-avatar-group--s .fd-avatar-group__item, .fd-avatar-group--group-type.fd-avatar-group--s .fd-avatar-group__item[dir=rtl] {
|
|
4978
5146
|
margin-right: 0;
|
|
4979
5147
|
margin-left: -1.25rem;
|
|
4980
5148
|
}
|
|
4981
5149
|
.fd-avatar-group--group-type.fd-avatar-group--m .fd-avatar-group__item {
|
|
4982
|
-
margin-right: -1.625rem;
|
|
4983
5150
|
margin-left: 0;
|
|
5151
|
+
margin-right: -1.625rem;
|
|
4984
5152
|
}
|
|
4985
5153
|
[dir=rtl] .fd-avatar-group--group-type.fd-avatar-group--m .fd-avatar-group__item, .fd-avatar-group--group-type.fd-avatar-group--m .fd-avatar-group__item[dir=rtl] {
|
|
4986
5154
|
margin-right: 0;
|
|
4987
5155
|
margin-left: -1.625rem;
|
|
4988
5156
|
}
|
|
4989
5157
|
.fd-avatar-group--group-type.fd-avatar-group--l .fd-avatar-group__item {
|
|
4990
|
-
margin-right: -2rem;
|
|
4991
5158
|
margin-left: 0;
|
|
5159
|
+
margin-right: -2rem;
|
|
4992
5160
|
}
|
|
4993
5161
|
[dir=rtl] .fd-avatar-group--group-type.fd-avatar-group--l .fd-avatar-group__item, .fd-avatar-group--group-type.fd-avatar-group--l .fd-avatar-group__item[dir=rtl] {
|
|
4994
5162
|
margin-right: 0;
|
|
4995
5163
|
margin-left: -2rem;
|
|
4996
5164
|
}
|
|
4997
5165
|
.fd-avatar-group--group-type.fd-avatar-group--xl .fd-avatar-group__item {
|
|
4998
|
-
margin-right: -2.75rem;
|
|
4999
5166
|
margin-left: 0;
|
|
5167
|
+
margin-right: -2.75rem;
|
|
5000
5168
|
}
|
|
5001
5169
|
[dir=rtl] .fd-avatar-group--group-type.fd-avatar-group--xl .fd-avatar-group__item, .fd-avatar-group--group-type.fd-avatar-group--xl .fd-avatar-group__item[dir=rtl] {
|
|
5002
5170
|
margin-right: 0;
|
|
5003
5171
|
margin-left: -2.75rem;
|
|
5004
5172
|
}
|
|
5005
5173
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-1 {
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
color: var(--
|
|
5174
|
+
border: var(--fdAvatar_Accent_Color_1_Border);
|
|
5175
|
+
color: var(--fdAvatar_Accent_Color_1_Text);
|
|
5176
|
+
background-color: var(--fdAvatar_Accent_Color_1);
|
|
5009
5177
|
}
|
|
5010
5178
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-2 {
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
color: var(--
|
|
5179
|
+
border: var(--fdAvatar_Accent_Color_2_Border);
|
|
5180
|
+
color: var(--fdAvatar_Accent_Color_2_Text);
|
|
5181
|
+
background-color: var(--fdAvatar_Accent_Color_2);
|
|
5014
5182
|
}
|
|
5015
5183
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-3 {
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
color: var(--
|
|
5184
|
+
border: var(--fdAvatar_Accent_Color_3_Border);
|
|
5185
|
+
color: var(--fdAvatar_Accent_Color_3_Text);
|
|
5186
|
+
background-color: var(--fdAvatar_Accent_Color_3);
|
|
5019
5187
|
}
|
|
5020
5188
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-4 {
|
|
5021
|
-
|
|
5022
|
-
|
|
5023
|
-
color: var(--
|
|
5189
|
+
border: var(--fdAvatar_Accent_Color_4_Border);
|
|
5190
|
+
color: var(--fdAvatar_Accent_Color_4_Text);
|
|
5191
|
+
background-color: var(--fdAvatar_Accent_Color_4);
|
|
5024
5192
|
}
|
|
5025
5193
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-5 {
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
color: var(--
|
|
5194
|
+
border: var(--fdAvatar_Accent_Color_5_Border);
|
|
5195
|
+
color: var(--fdAvatar_Accent_Color_5_Text);
|
|
5196
|
+
background-color: var(--fdAvatar_Accent_Color_5);
|
|
5029
5197
|
}
|
|
5030
5198
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-6 {
|
|
5031
|
-
|
|
5032
|
-
|
|
5033
|
-
color: var(--
|
|
5199
|
+
border: var(--fdAvatar_Accent_Color_6_Border);
|
|
5200
|
+
color: var(--fdAvatar_Accent_Color_6_Text);
|
|
5201
|
+
background-color: var(--fdAvatar_Accent_Color_6);
|
|
5034
5202
|
}
|
|
5035
5203
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-7 {
|
|
5036
|
-
|
|
5037
|
-
|
|
5038
|
-
color: var(--
|
|
5204
|
+
border: var(--fdAvatar_Accent_Color_7_Border);
|
|
5205
|
+
color: var(--fdAvatar_Accent_Color_7_Text);
|
|
5206
|
+
background-color: var(--fdAvatar_Accent_Color_7);
|
|
5039
5207
|
}
|
|
5040
5208
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-8 {
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
color: var(--
|
|
5209
|
+
border: var(--fdAvatar_Accent_Color_8_Border);
|
|
5210
|
+
color: var(--fdAvatar_Accent_Color_8_Text);
|
|
5211
|
+
background-color: var(--fdAvatar_Accent_Color_8);
|
|
5044
5212
|
}
|
|
5045
5213
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-9 {
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
color: var(--
|
|
5214
|
+
border: var(--fdAvatar_Accent_Color_9_Border);
|
|
5215
|
+
color: var(--fdAvatar_Accent_Color_9_Text);
|
|
5216
|
+
background-color: var(--fdAvatar_Accent_Color_9);
|
|
5049
5217
|
}
|
|
5050
5218
|
.fd-avatar-group .fd-avatar-group__more-button--accent-color-10 {
|
|
5051
|
-
|
|
5052
|
-
|
|
5053
|
-
color: var(--
|
|
5219
|
+
border: var(--fdAvatar_Accent_Color_10_Border);
|
|
5220
|
+
color: var(--fdAvatar_Accent_Color_10_Text);
|
|
5221
|
+
background-color: var(--fdAvatar_Accent_Color_10);
|
|
5054
5222
|
}
|
|
5055
5223
|
/* Fully expanded pseudo element. Requires parent to have specified position */
|
|
5056
5224
|
/* stylelint-disable */
|
|
@@ -16855,6 +17023,9 @@
|
|
|
16855
17023
|
[dir=rtl] .fd-info-label__icon [class*=sap-icon]:first-child:last-child, .fd-info-label__icon [class*=sap-icon]:first-child:last-child[dir=rtl], [dir=rtl] .fd-info-label__icon[class*=sap-icon]:first-child:last-child, .fd-info-label__icon[class*=sap-icon]:first-child:last-child[dir=rtl] {
|
|
16856
17024
|
margin: 0;
|
|
16857
17025
|
}
|
|
17026
|
+
.fd-info-label__icon::before {
|
|
17027
|
+
vertical-align: middle;
|
|
17028
|
+
}
|
|
16858
17029
|
.fd-info-label__text {
|
|
16859
17030
|
font-size: var(--sapFontSize);
|
|
16860
17031
|
line-height: var(--sapContent_LineHeight);
|
|
@@ -31225,6 +31396,11 @@ places the element far left of the screen. so it is not visible.
|
|
|
31225
31396
|
box-sizing: inherit;
|
|
31226
31397
|
font-size: inherit;
|
|
31227
31398
|
}
|
|
31399
|
+
.fd-shellbar__logo:focus, .fd-shellbar__logo.is-focus {
|
|
31400
|
+
outline-width: var(--sapContent_FocusWidth);
|
|
31401
|
+
outline-color: var(--sapContent_FocusColor);
|
|
31402
|
+
outline-style: var(--sapContent_FocusStyle);
|
|
31403
|
+
}
|
|
31228
31404
|
.fd-shellbar__logo > * {
|
|
31229
31405
|
line-height: 0;
|
|
31230
31406
|
max-height: 2.5rem;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fundamental-styles/theming-preview",
|
|
3
|
-
"version": "0.24.2-rc.
|
|
3
|
+
"version": "0.24.2-rc.6",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"homepage": "https://sap.github.io/fundamental-styles/",
|
|
6
6
|
"description": "Fundamental Library Styles - Theming Package Preview",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"url": "https://github.com/SAP/fundamental-styles"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"fundamental-styles": "0.24.2-rc.
|
|
12
|
+
"fundamental-styles": "0.24.2-rc.6"
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|