[ACA-4712] changes required to disallow using important for styles in aca (#8785)

* ACA-4712 Changed floating labels

* ACA-4712 Fixed cut off icon
This commit is contained in:
AleksanderSklorz 2023-07-25 23:02:39 +02:00 committed by GitHub
parent 80a6dadbfa
commit fee60cd4ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 6 deletions

View File

@ -31,7 +31,7 @@
[style.display]="isExpiryDateToggleChecked ? 'block' : 'none'"
data-automation-id="adf-slide-toggle-checked"
class="adf-share-link__date-time-container">
<mat-form-field class="adf-full-width adf-float-label" floatLabel='always'>
<mat-form-field class="adf-full-width adf-float-label" floatLabel='never'>
<mat-label>{{ 'SHARE.EXPIRATION-PLACEHOLDER' | translate }}</mat-label>
<mat-datepicker-toggle
[disabled]="time.disabled"
@ -69,7 +69,7 @@
</div>
<mat-form-field
class="adf-full-width adf-float-label"
floatLabel='always'
floatLabel='never'
[ngClass]="isLinkWithExpiryDate? 'adf-share-link__border-color' : ''">
<input
#sharedLinkInput

View File

@ -20,10 +20,14 @@
}
.adf-datatable-list {
.adf-datatable-selected > svg {
fill: var(--theme-accent-color);
width: 30px;
height: 30px;
.adf-datatable-selected {
overflow: unset;
& > svg {
fill: var(--theme-accent-color);
width: 30px;
height: 30px;
}
}
}