@rolster/styles-foundations 2.2.4 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/rolster-styles.css +153 -153
- package/dist/rolster-styles.min.css +1 -1
- package/dist/rolster-styles.rtl.css +153 -153
- package/dist/rolster-styles.rtl.min.css +1 -1
- package/package.json +1 -1
- package/scss/_rolster-components.scss +9 -9
- package/scss/components/_data-table.scss +3 -3
- package/scss/components/{_box-field.scss → _field-box.scss} +17 -17
- package/scss/components/{_list-field.scss → _field-list.scss} +10 -10
- package/scss/utilities/_normalize.utility.scss +1 -1
package/dist/rolster-styles.css
CHANGED
|
@@ -1716,7 +1716,7 @@ body {
|
|
|
1716
1716
|
-webkit-tap-highlight-color: transparent;
|
|
1717
1717
|
}
|
|
1718
1718
|
body.rls-app-body {
|
|
1719
|
-
--rlc-
|
|
1719
|
+
--rlc-fieldbox-body-background: rgba(248, 248, 248, 1);
|
|
1720
1720
|
--rlc-app-body-background: var(--rls-app-background-300);
|
|
1721
1721
|
}
|
|
1722
1722
|
|
|
@@ -4085,11 +4085,11 @@ button {
|
|
|
4085
4085
|
--rlc-ballot-subtitle-overflow: initial;
|
|
4086
4086
|
--rlc-ballot-subtitle-text-overflow: initial;
|
|
4087
4087
|
--rlc-ballot-subtitle-white-space: initial;
|
|
4088
|
-
--rlc-
|
|
4089
|
-
--rlc-
|
|
4090
|
-
--rlc-
|
|
4091
|
-
--rlc-
|
|
4092
|
-
--rlc-
|
|
4088
|
+
--rlc-fieldbox-body-padding: 0rem;
|
|
4089
|
+
--rlc-fieldbox-body-background: rgba(255, 255, 255, 1);
|
|
4090
|
+
--rlc-fieldbox-body-border: var(--rls-app-border-1-100);
|
|
4091
|
+
--rlc-fieldbox-body-shadow: none;
|
|
4092
|
+
--rlc-fieldbox-label-font-color: var(--rls-app-color-300);
|
|
4093
4093
|
--rlc-breadcrumb-height: var(--rls-sizing-x18);
|
|
4094
4094
|
--rlc-button-label-text-transform: uppercase;
|
|
4095
4095
|
--rlc-button-content-padding: 0rem var(--rls-sizing-x4);
|
|
@@ -4219,83 +4219,6 @@ button {
|
|
|
4219
4219
|
background-repeat: repeat-x;
|
|
4220
4220
|
}
|
|
4221
4221
|
|
|
4222
|
-
.rls-box-field {
|
|
4223
|
-
--pvt-label-opacity: 1;
|
|
4224
|
-
--pvt-body-opacity: 1;
|
|
4225
|
-
position: relative;
|
|
4226
|
-
display: flex;
|
|
4227
|
-
flex-direction: column;
|
|
4228
|
-
row-gap: var(--rls-sizing-x2);
|
|
4229
|
-
width: 100%;
|
|
4230
|
-
box-sizing: border-box;
|
|
4231
|
-
transition: height 160ms 0ms var(--rls-standard-curve);
|
|
4232
|
-
}
|
|
4233
|
-
.rls-box-field--focused {
|
|
4234
|
-
--rlc-boxfield-body-background: var(--rls-app-background-500);
|
|
4235
|
-
--rlc-boxfield-body-border: var(--rls-theme-border-1-500);
|
|
4236
|
-
--rlc-boxfield-body-shadow: 0px 0px 0px 3px var(--rls-theme-shadow-500);
|
|
4237
|
-
--rlc-boxfield-label-font-color: var(--rls-theme-color-500);
|
|
4238
|
-
}
|
|
4239
|
-
.rls-box-field--error {
|
|
4240
|
-
--rlc-boxfield-body-border: var(--rls-border-1) solid
|
|
4241
|
-
var(--rls-danger-color-500);
|
|
4242
|
-
--rlc-boxfield-body-shadow: 0px 0px 0px 3px var(--box-shadow-danger-500);
|
|
4243
|
-
--rlc-boxfield-label-font-color: var(--rls-danger-color-500);
|
|
4244
|
-
}
|
|
4245
|
-
.rls-box-field--disabled {
|
|
4246
|
-
--rlc-boxfield-body-background: var(--rls-app-background-500);
|
|
4247
|
-
--pvt-body-opacity: 0.75;
|
|
4248
|
-
--pvt-label-opacity: 0.5;
|
|
4249
|
-
}
|
|
4250
|
-
.rls-box-field__label {
|
|
4251
|
-
position: relative;
|
|
4252
|
-
width: 100%;
|
|
4253
|
-
padding: 0rem 5rem;
|
|
4254
|
-
box-sizing: border-box;
|
|
4255
|
-
color: var(--rlc-boxfield-label-font-color);
|
|
4256
|
-
opacity: var(--pvt-label-opacity);
|
|
4257
|
-
overflow: hidden;
|
|
4258
|
-
white-space: nowrap;
|
|
4259
|
-
text-overflow: ellipsis;
|
|
4260
|
-
font-weight: var(--rls-font-weight-medium);
|
|
4261
|
-
font-size: var(--rls-smalltext-font-size);
|
|
4262
|
-
letter-spacing: var(--rls-smalltext-letter-spacing);
|
|
4263
|
-
min-height: var(--rls-smalltext-line-height);
|
|
4264
|
-
line-height: var(--rls-smalltext-line-height);
|
|
4265
|
-
}
|
|
4266
|
-
.rls-box-field__label span {
|
|
4267
|
-
color: var(--rls-danger-color-500);
|
|
4268
|
-
}
|
|
4269
|
-
.rls-box-field__body {
|
|
4270
|
-
display: flex;
|
|
4271
|
-
box-sizing: border-box;
|
|
4272
|
-
overflow: hidden;
|
|
4273
|
-
opacity: var(--pvt-body-opacity);
|
|
4274
|
-
border-radius: var(--rls-sizing-x2);
|
|
4275
|
-
background: var(--rlc-boxfield-body-background);
|
|
4276
|
-
padding: var(--rlc-boxfield-body-padding);
|
|
4277
|
-
border: var(--rlc-boxfield-body-border);
|
|
4278
|
-
box-shadow: var(--rlc-boxfield-body-shadow);
|
|
4279
|
-
}
|
|
4280
|
-
.rls-box-field__helper {
|
|
4281
|
-
color: var(--rls-app-color-100);
|
|
4282
|
-
padding: 0rem 5rem;
|
|
4283
|
-
box-sizing: border-box;
|
|
4284
|
-
font-weight: var(--rls-font-weight-medium);
|
|
4285
|
-
font-size: var(--rls-overline-font-size);
|
|
4286
|
-
letter-spacing: var(--rls-overline-letter-spacing);
|
|
4287
|
-
min-height: var(--rls-overline-line-height);
|
|
4288
|
-
line-height: var(--rls-overline-line-height);
|
|
4289
|
-
overflow: hidden;
|
|
4290
|
-
text-overflow: ellipsis;
|
|
4291
|
-
white-space: nowrap;
|
|
4292
|
-
}
|
|
4293
|
-
.rls-box-field__error {
|
|
4294
|
-
padding: 0rem var(--rls-sizing-x4);
|
|
4295
|
-
box-sizing: border-box;
|
|
4296
|
-
margin-top: var(--rls-sizing-x1);
|
|
4297
|
-
}
|
|
4298
|
-
|
|
4299
4222
|
.rls-datatable {
|
|
4300
4223
|
--pvt-header-padding-right: var(--rlc-datatable-padding-scroll);
|
|
4301
4224
|
--rlc-input-font-size: var(--rlc-datatable-font-size);
|
|
@@ -4446,59 +4369,59 @@ button {
|
|
|
4446
4369
|
text-overflow: ellipsis;
|
|
4447
4370
|
overflow: hidden;
|
|
4448
4371
|
}
|
|
4449
|
-
.rls-datatable__cell .rls-box
|
|
4450
|
-
.rls-datatable__info .rls-box
|
|
4372
|
+
.rls-datatable__cell .rls-field-box,
|
|
4373
|
+
.rls-datatable__info .rls-field-box {
|
|
4451
4374
|
width: 100%;
|
|
4452
4375
|
padding: 0rem;
|
|
4453
4376
|
}
|
|
4454
|
-
.rls-datatable__cell .rls-
|
|
4455
|
-
.rls-datatable__info .rls-
|
|
4377
|
+
.rls-datatable__cell .rls-field-box__label,
|
|
4378
|
+
.rls-datatable__info .rls-field-box__label {
|
|
4456
4379
|
display: none;
|
|
4457
4380
|
}
|
|
4458
|
-
.rls-datatable__cell .rls-
|
|
4459
|
-
.rls-datatable__info .rls-
|
|
4381
|
+
.rls-datatable__cell .rls-field-box__body,
|
|
4382
|
+
.rls-datatable__info .rls-field-box__body {
|
|
4460
4383
|
background: transparent;
|
|
4461
4384
|
border: none;
|
|
4462
4385
|
padding: 0rem;
|
|
4463
4386
|
box-shadow: none;
|
|
4464
4387
|
}
|
|
4465
|
-
.rls-datatable__cell .rls-
|
|
4466
|
-
.rls-datatable__info .rls-
|
|
4388
|
+
.rls-datatable__cell .rls-field-box__icon,
|
|
4389
|
+
.rls-datatable__info .rls-field-box__icon {
|
|
4467
4390
|
padding: 0rem;
|
|
4468
4391
|
}
|
|
4469
|
-
.rls-datatable__cell .rls-
|
|
4470
|
-
.rls-datatable__info .rls-
|
|
4392
|
+
.rls-datatable__cell .rls-field-box__error,
|
|
4393
|
+
.rls-datatable__info .rls-field-box__error {
|
|
4471
4394
|
display: none;
|
|
4472
4395
|
}
|
|
4473
|
-
.rls-datatable__cell .rls-box
|
|
4474
|
-
.rls-datatable__cell .rls-box
|
|
4475
|
-
.rls-datatable__info .rls-box
|
|
4476
|
-
.rls-datatable__info .rls-box
|
|
4396
|
+
.rls-datatable__cell .rls-field-box .rls-input-number,
|
|
4397
|
+
.rls-datatable__cell .rls-field-box .rls-input-text,
|
|
4398
|
+
.rls-datatable__info .rls-field-box .rls-input-number,
|
|
4399
|
+
.rls-datatable__info .rls-field-box .rls-input-text {
|
|
4477
4400
|
--rlc-input-parent-padding: 0rem;
|
|
4478
4401
|
}
|
|
4479
|
-
.rls-datatable__cell .rls-list
|
|
4480
|
-
.rls-datatable__info .rls-list
|
|
4402
|
+
.rls-datatable__cell .rls-field-list .rls-field-box__body,
|
|
4403
|
+
.rls-datatable__info .rls-field-list .rls-field-box__body {
|
|
4481
4404
|
padding: var(--rls-sizing-x4) 0rem;
|
|
4482
4405
|
border: none;
|
|
4483
4406
|
box-shadow: none;
|
|
4484
4407
|
}
|
|
4485
|
-
.rls-datatable__cell .rls-
|
|
4486
|
-
.rls-datatable__info .rls-
|
|
4408
|
+
.rls-datatable__cell .rls-field-list__control,
|
|
4409
|
+
.rls-datatable__info .rls-field-list__control {
|
|
4487
4410
|
font-size: var(--rlc-datatable-font-size);
|
|
4488
4411
|
font-weight: var(--rls-font-weight-medium);
|
|
4489
4412
|
letter-spacing: var(--rls-body-letter-spacing);
|
|
4490
4413
|
}
|
|
4491
|
-
.rls-datatable__cell .rls-
|
|
4492
|
-
.rls-datatable__info .rls-
|
|
4414
|
+
.rls-datatable__cell .rls-field-list__suggestions,
|
|
4415
|
+
.rls-datatable__info .rls-field-list__suggestions {
|
|
4493
4416
|
top: var(--rls-sizing-x24);
|
|
4494
4417
|
}
|
|
4495
|
-
.rls-datatable__cell .rls-
|
|
4496
|
-
.rls-datatable__info .rls-
|
|
4418
|
+
.rls-datatable__cell .rls-field-list__suggestions--higher,
|
|
4419
|
+
.rls-datatable__info .rls-field-list__suggestions--higher {
|
|
4497
4420
|
top: initial;
|
|
4498
4421
|
bottom: var(--rls-sizing-x24);
|
|
4499
4422
|
}
|
|
4500
|
-
.rls-datatable__cell .rls-
|
|
4501
|
-
.rls-datatable__info .rls-
|
|
4423
|
+
.rls-datatable__cell .rls-field-list__action .rls-icon,
|
|
4424
|
+
.rls-datatable__info .rls-field-list__action .rls-icon {
|
|
4502
4425
|
font-size: var(--rls-sizing-x10);
|
|
4503
4426
|
}
|
|
4504
4427
|
.rls-datatable__cell .rls-input,
|
|
@@ -4561,26 +4484,84 @@ button {
|
|
|
4561
4484
|
border-radius: 0rem 0rem var(--rls-sizing-x4) var(--rls-sizing-x4);
|
|
4562
4485
|
}
|
|
4563
4486
|
|
|
4564
|
-
.rls-
|
|
4487
|
+
.rls-field-box {
|
|
4488
|
+
--pvt-label-opacity: 1;
|
|
4489
|
+
--pvt-body-opacity: 1;
|
|
4490
|
+
position: relative;
|
|
4565
4491
|
display: flex;
|
|
4566
4492
|
flex-direction: column;
|
|
4567
|
-
row-gap: var(--rls-sizing-
|
|
4493
|
+
row-gap: var(--rls-sizing-x2);
|
|
4494
|
+
width: 100%;
|
|
4495
|
+
box-sizing: border-box;
|
|
4496
|
+
transition: height 160ms 0ms var(--rls-standard-curve);
|
|
4568
4497
|
}
|
|
4569
|
-
.rls-
|
|
4498
|
+
.rls-field-box--focused {
|
|
4499
|
+
--rlc-fieldbox-body-background: var(--rls-app-background-500);
|
|
4500
|
+
--rlc-fieldbox-body-border: var(--rls-theme-border-1-500);
|
|
4501
|
+
--rlc-fieldbox-body-shadow: 0px 0px 0px 3px var(--rls-theme-shadow-500);
|
|
4502
|
+
--rlc-fieldbox-label-font-color: var(--rls-theme-color-500);
|
|
4503
|
+
}
|
|
4504
|
+
.rls-field-box--error {
|
|
4505
|
+
--rlc-fieldbox-body-border: var(--rls-border-1) solid
|
|
4506
|
+
var(--rls-danger-color-500);
|
|
4507
|
+
--rlc-fieldbox-body-shadow: 0px 0px 0px 3px var(--rls-danger-shadow-500);
|
|
4508
|
+
--rlc-fieldbox-label-font-color: var(--rls-danger-color-500);
|
|
4509
|
+
}
|
|
4510
|
+
.rls-field-box--disabled {
|
|
4511
|
+
--rlc-fieldbox-body-background: var(--rls-app-background-500);
|
|
4512
|
+
--pvt-body-opacity: 0.75;
|
|
4513
|
+
--pvt-label-opacity: 0.5;
|
|
4514
|
+
}
|
|
4515
|
+
.rls-field-box__label {
|
|
4570
4516
|
position: relative;
|
|
4571
|
-
|
|
4517
|
+
width: 100%;
|
|
4518
|
+
padding: 0rem 5rem;
|
|
4572
4519
|
box-sizing: border-box;
|
|
4520
|
+
color: var(--rlc-fieldbox-label-font-color);
|
|
4521
|
+
opacity: var(--pvt-label-opacity);
|
|
4522
|
+
overflow: hidden;
|
|
4523
|
+
white-space: nowrap;
|
|
4524
|
+
text-overflow: ellipsis;
|
|
4525
|
+
font-weight: var(--rls-font-weight-medium);
|
|
4526
|
+
font-size: var(--rls-smalltext-font-size);
|
|
4527
|
+
letter-spacing: var(--rls-smalltext-letter-spacing);
|
|
4528
|
+
min-height: var(--rls-smalltext-line-height);
|
|
4529
|
+
line-height: var(--rls-smalltext-line-height);
|
|
4573
4530
|
}
|
|
4574
|
-
.rls-
|
|
4575
|
-
|
|
4531
|
+
.rls-field-box__label span {
|
|
4532
|
+
color: var(--rls-danger-color-500);
|
|
4533
|
+
}
|
|
4534
|
+
.rls-field-box__body {
|
|
4576
4535
|
display: flex;
|
|
4577
|
-
justify-content: var(--rlc-form-footer-justify-content);
|
|
4578
|
-
column-gap: var(--rls-sizing-x8);
|
|
4579
|
-
padding: 0rem var(--rls-sizing-x8);
|
|
4580
4536
|
box-sizing: border-box;
|
|
4537
|
+
overflow: hidden;
|
|
4538
|
+
opacity: var(--pvt-body-opacity);
|
|
4539
|
+
border-radius: var(--rls-sizing-x2);
|
|
4540
|
+
background: var(--rlc-fieldbox-body-background);
|
|
4541
|
+
padding: var(--rlc-fieldbox-body-padding);
|
|
4542
|
+
border: var(--rlc-fieldbox-body-border);
|
|
4543
|
+
box-shadow: var(--rlc-fieldbox-body-shadow);
|
|
4544
|
+
}
|
|
4545
|
+
.rls-field-box__helper {
|
|
4546
|
+
color: var(--rls-app-color-100);
|
|
4547
|
+
padding: 0rem 5rem;
|
|
4548
|
+
box-sizing: border-box;
|
|
4549
|
+
font-weight: var(--rls-font-weight-medium);
|
|
4550
|
+
font-size: var(--rls-overline-font-size);
|
|
4551
|
+
letter-spacing: var(--rls-overline-letter-spacing);
|
|
4552
|
+
min-height: var(--rls-overline-line-height);
|
|
4553
|
+
line-height: var(--rls-overline-line-height);
|
|
4554
|
+
overflow: hidden;
|
|
4555
|
+
text-overflow: ellipsis;
|
|
4556
|
+
white-space: nowrap;
|
|
4557
|
+
}
|
|
4558
|
+
.rls-field-box__error {
|
|
4559
|
+
padding: 0rem var(--rls-sizing-x4);
|
|
4560
|
+
box-sizing: border-box;
|
|
4561
|
+
margin-top: var(--rls-sizing-x1);
|
|
4581
4562
|
}
|
|
4582
4563
|
|
|
4583
|
-
.rls-list
|
|
4564
|
+
.rls-field-list {
|
|
4584
4565
|
--pvt-action-font-color: var(--rls-app-color-300);
|
|
4585
4566
|
--pvt-list-height: 0rem;
|
|
4586
4567
|
--pvt-list-max-height: 160rem;
|
|
@@ -4589,19 +4570,19 @@ button {
|
|
|
4589
4570
|
--pvt-list-transform-origin: 0% 0%;
|
|
4590
4571
|
--pvt-backdrop-opacity: 0;
|
|
4591
4572
|
--pvt-backdrop-bottom: initial;
|
|
4592
|
-
--rlc-
|
|
4573
|
+
--rlc-fieldbox-body-padding: var(--rls-sizing-x3) var(--rls-sizing-x4);
|
|
4593
4574
|
position: relative;
|
|
4594
4575
|
box-sizing: border-box;
|
|
4595
4576
|
}
|
|
4596
|
-
.rls-list
|
|
4597
|
-
--rlc-
|
|
4598
|
-
--rlc-
|
|
4599
|
-
--rlc-
|
|
4577
|
+
.rls-field-list.rls-field-box--active {
|
|
4578
|
+
--rlc-fieldbox-body-shadow: 0px 0px 0px 3px var(--box-shadow-theme-100);
|
|
4579
|
+
--rlc-fieldbox-body-border: var(--rls-theme-border-1-300);
|
|
4580
|
+
--rlc-fieldbox-label-font-color: var(--rls-app-color-300);
|
|
4600
4581
|
}
|
|
4601
|
-
.rls-list
|
|
4582
|
+
.rls-field-list.rls-field-box--disabled {
|
|
4602
4583
|
--pvt-action-font-color: var(--rls-app-color-100);
|
|
4603
4584
|
}
|
|
4604
|
-
.rls-
|
|
4585
|
+
.rls-field-list__control {
|
|
4605
4586
|
position: relative;
|
|
4606
4587
|
width: calc(100% - var(--rls-sizing-x14));
|
|
4607
4588
|
height: var(--rls-sizing-x12);
|
|
@@ -4616,21 +4597,21 @@ button {
|
|
|
4616
4597
|
font-weight: var(--rls-font-weight-medium);
|
|
4617
4598
|
letter-spacing: var(--rlc-input-letter-spacing);
|
|
4618
4599
|
}
|
|
4619
|
-
.rls-
|
|
4600
|
+
.rls-field-list__control::placeholder {
|
|
4620
4601
|
color: var(--rls-app-color-100);
|
|
4621
4602
|
}
|
|
4622
|
-
.rls-
|
|
4603
|
+
.rls-field-list__control::selection {
|
|
4623
4604
|
background: var(--rls-theme-color-700);
|
|
4624
4605
|
color: var(--rls-light-color-500);
|
|
4625
4606
|
}
|
|
4626
|
-
.rls-
|
|
4607
|
+
.rls-field-list__control:disabled {
|
|
4627
4608
|
opacity: 0.5;
|
|
4628
4609
|
}
|
|
4629
|
-
.rls-
|
|
4610
|
+
.rls-field-list__control__placeholder {
|
|
4630
4611
|
position: relative;
|
|
4631
4612
|
color: var(--rls-app-color-100);
|
|
4632
4613
|
}
|
|
4633
|
-
.rls-
|
|
4614
|
+
.rls-field-list__action {
|
|
4634
4615
|
color: var(--pvt-action-font-color);
|
|
4635
4616
|
width: var(--rls-sizing-x12);
|
|
4636
4617
|
height: var(--rls-sizing-x12);
|
|
@@ -4639,7 +4620,7 @@ button {
|
|
|
4639
4620
|
outline: none;
|
|
4640
4621
|
background: transparent;
|
|
4641
4622
|
}
|
|
4642
|
-
.rls-
|
|
4623
|
+
.rls-field-list__suggestions {
|
|
4643
4624
|
position: absolute;
|
|
4644
4625
|
top: calc(100% + var(--rls-sizing-x4));
|
|
4645
4626
|
left: 0rem;
|
|
@@ -4650,7 +4631,7 @@ button {
|
|
|
4650
4631
|
z-index: var(--rls-z-index-2);
|
|
4651
4632
|
padding-bottom: var(--rls-sizing-x6);
|
|
4652
4633
|
}
|
|
4653
|
-
.rls-
|
|
4634
|
+
.rls-field-list__suggestions--visible {
|
|
4654
4635
|
--pvt-list-height: auto;
|
|
4655
4636
|
--pvt-list-opacity: 1;
|
|
4656
4637
|
--pvt-list-transform: scale(1, 1);
|
|
@@ -4659,12 +4640,12 @@ button {
|
|
|
4659
4640
|
height: auto;
|
|
4660
4641
|
z-index: var(--rls-z-index-4);
|
|
4661
4642
|
}
|
|
4662
|
-
.rls-
|
|
4643
|
+
.rls-field-list__suggestions--higher {
|
|
4663
4644
|
--pvt-list-transform-origin: 0% 100%;
|
|
4664
4645
|
top: initial;
|
|
4665
4646
|
bottom: 100%;
|
|
4666
4647
|
}
|
|
4667
|
-
.rls-
|
|
4648
|
+
.rls-field-list__suggestions__body {
|
|
4668
4649
|
display: flex;
|
|
4669
4650
|
flex-direction: column;
|
|
4670
4651
|
width: 100%;
|
|
@@ -4686,7 +4667,7 @@ button {
|
|
|
4686
4667
|
opacity 240ms 0ms var(--rls-standard-curve),
|
|
4687
4668
|
transform 240ms 0ms var(--rls-standard-curve);
|
|
4688
4669
|
}
|
|
4689
|
-
.rls-
|
|
4670
|
+
.rls-field-list__ul {
|
|
4690
4671
|
display: flex;
|
|
4691
4672
|
flex-direction: column;
|
|
4692
4673
|
width: 100%;
|
|
@@ -4695,7 +4676,7 @@ button {
|
|
|
4695
4676
|
padding: 0rem var(--rls-sizing-x4);
|
|
4696
4677
|
box-sizing: border-box;
|
|
4697
4678
|
}
|
|
4698
|
-
.rls-
|
|
4679
|
+
.rls-field-list__element {
|
|
4699
4680
|
--rlc-ballot-subtitle-overflow: hidden;
|
|
4700
4681
|
--rlc-ballot-subtitle-text-overflow: ellipsis;
|
|
4701
4682
|
--rlc-ballot-subtitle-white-space: nowrap;
|
|
@@ -4705,40 +4686,40 @@ button {
|
|
|
4705
4686
|
padding: var(--rls-sizing-x2);
|
|
4706
4687
|
box-sizing: border-box;
|
|
4707
4688
|
}
|
|
4708
|
-
.rls-
|
|
4689
|
+
.rls-field-list__element:hover {
|
|
4709
4690
|
background: var(--rls-app-background-300);
|
|
4710
4691
|
}
|
|
4711
|
-
.rls-
|
|
4692
|
+
.rls-field-list__element:not(:hover):focus {
|
|
4712
4693
|
background: var(--rls-theme-color-100);
|
|
4713
4694
|
}
|
|
4714
|
-
.rls-
|
|
4695
|
+
.rls-field-list__empty {
|
|
4715
4696
|
display: flex;
|
|
4716
4697
|
padding: 0rem var(--rls-sizing-x4);
|
|
4717
4698
|
box-sizing: border-box;
|
|
4718
4699
|
}
|
|
4719
|
-
.rls-
|
|
4700
|
+
.rls-field-list__empty__avatar {
|
|
4720
4701
|
width: var(--rls-sizing-x20);
|
|
4721
4702
|
height: var(--rls-sizing-x20);
|
|
4722
4703
|
}
|
|
4723
|
-
.rls-
|
|
4704
|
+
.rls-field-list__empty__avatar img {
|
|
4724
4705
|
width: 100%;
|
|
4725
4706
|
}
|
|
4726
|
-
.rls-
|
|
4707
|
+
.rls-field-list__empty__description {
|
|
4727
4708
|
display: flex;
|
|
4728
4709
|
flex-direction: column;
|
|
4729
4710
|
row-gap: var(--rls-sizing-x2);
|
|
4730
4711
|
overflow: hidden;
|
|
4731
4712
|
}
|
|
4732
|
-
.rls-
|
|
4713
|
+
.rls-field-list__empty__description label {
|
|
4733
4714
|
display: block;
|
|
4734
4715
|
width: 100%;
|
|
4735
4716
|
color: var(--rls-app-color-300);
|
|
4736
4717
|
}
|
|
4737
|
-
.rls-
|
|
4718
|
+
.rls-field-list__empty__description p {
|
|
4738
4719
|
white-space: initial;
|
|
4739
4720
|
color: var(--rls-app-color-300);
|
|
4740
4721
|
}
|
|
4741
|
-
.rls-
|
|
4722
|
+
.rls-field-list__backdrop {
|
|
4742
4723
|
position: absolute;
|
|
4743
4724
|
display: block;
|
|
4744
4725
|
top: 0rem;
|
|
@@ -4756,12 +4737,12 @@ button {
|
|
|
4756
4737
|
}
|
|
4757
4738
|
|
|
4758
4739
|
@media screen and (max-width: 480px) {
|
|
4759
|
-
.rls-list
|
|
4740
|
+
.rls-field-list {
|
|
4760
4741
|
--pvt-list-transform: translateY(100%);
|
|
4761
4742
|
--pvt-list-transform-origin: initial;
|
|
4762
4743
|
--pvt-list-max-height: initial;
|
|
4763
4744
|
}
|
|
4764
|
-
.rls-
|
|
4745
|
+
.rls-field-list__suggestions {
|
|
4765
4746
|
position: fixed;
|
|
4766
4747
|
display: flex;
|
|
4767
4748
|
justify-content: center;
|
|
@@ -4769,19 +4750,19 @@ button {
|
|
|
4769
4750
|
left: 0rem;
|
|
4770
4751
|
z-index: var(--rls-z-index-32);
|
|
4771
4752
|
}
|
|
4772
|
-
.rls-
|
|
4753
|
+
.rls-field-list__suggestions--visible {
|
|
4773
4754
|
--pvt-list-transform: translateY(0%);
|
|
4774
4755
|
--pvt-backdrop-opacity: 1;
|
|
4775
4756
|
--pvt-backdrop-bottom: 0rem;
|
|
4776
4757
|
height: 100%;
|
|
4777
4758
|
}
|
|
4778
|
-
.rls-
|
|
4759
|
+
.rls-field-list__suggestions__body {
|
|
4779
4760
|
position: absolute;
|
|
4780
4761
|
bottom: 0px;
|
|
4781
4762
|
border: none;
|
|
4782
4763
|
z-index: var(--rls-z-index-4);
|
|
4783
4764
|
}
|
|
4784
|
-
.rls-
|
|
4765
|
+
.rls-field-list__ul {
|
|
4785
4766
|
max-width: 200rem;
|
|
4786
4767
|
max-height: 75%;
|
|
4787
4768
|
padding: var(--rls-sizing-x8) var(--rls-sizing-x2);
|
|
@@ -4789,23 +4770,42 @@ button {
|
|
|
4789
4770
|
border: none;
|
|
4790
4771
|
box-shadow: none;
|
|
4791
4772
|
}
|
|
4792
|
-
.rls-
|
|
4773
|
+
.rls-field-list__empty {
|
|
4793
4774
|
flex-direction: column;
|
|
4794
4775
|
padding: var(--rls-sizing-x12) var(--rls-sizing-x2);
|
|
4795
4776
|
}
|
|
4796
|
-
.rls-
|
|
4777
|
+
.rls-field-list__empty__avatar {
|
|
4797
4778
|
width: 100%;
|
|
4798
4779
|
height: auto;
|
|
4799
4780
|
max-width: var(--rls-sizing-x8);
|
|
4800
4781
|
margin: auto;
|
|
4801
4782
|
padding-bottom: var(--rls-sizing-x6);
|
|
4802
4783
|
}
|
|
4803
|
-
.rls-
|
|
4804
|
-
.rls-
|
|
4784
|
+
.rls-field-list__empty__description label,
|
|
4785
|
+
.rls-field-list__empty__description p {
|
|
4805
4786
|
text-align: center;
|
|
4806
4787
|
}
|
|
4807
4788
|
}
|
|
4808
4789
|
|
|
4790
|
+
.rls-form {
|
|
4791
|
+
display: flex;
|
|
4792
|
+
flex-direction: column;
|
|
4793
|
+
row-gap: var(--rls-sizing-x8);
|
|
4794
|
+
}
|
|
4795
|
+
.rls-form__content {
|
|
4796
|
+
position: relative;
|
|
4797
|
+
padding: 0rem var(--rls-sizing-x8);
|
|
4798
|
+
box-sizing: border-box;
|
|
4799
|
+
}
|
|
4800
|
+
.rls-form__footer {
|
|
4801
|
+
position: relative;
|
|
4802
|
+
display: flex;
|
|
4803
|
+
justify-content: var(--rlc-form-footer-justify-content);
|
|
4804
|
+
column-gap: var(--rls-sizing-x8);
|
|
4805
|
+
padding: 0rem var(--rls-sizing-x8);
|
|
4806
|
+
box-sizing: border-box;
|
|
4807
|
+
}
|
|
4808
|
+
|
|
4809
4809
|
.rls-aspect-ratio {
|
|
4810
4810
|
--rls-app-font-size-1360: 2.5px;
|
|
4811
4811
|
--rls-app-font-size-1820: 2.925px;
|