Skip to content

Commit

Permalink
[ACA-4712] changes required to disallow using important for styles in…
Browse files Browse the repository at this point in the history
… aca (#8785)

* ACA-4712 Changed floating labels

* ACA-4712 Fixed cut off icon
  • Loading branch information
AleksanderSklorz committed Jul 25, 2023
1 parent 80a6dad commit fee60cd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}

Expand Down

0 comments on commit fee60cd

Please sign in to comment.