AAE-22858 Fix date button style (#9892)

This commit is contained in:
Diogo Bastos
2024-07-01 13:17:18 +01:00
committed by VitoAlbano
parent 37b5d48540
commit 5e3db29da9

View File

@@ -12,6 +12,7 @@
&.adf-property-value-editable { &.adf-property-value-editable {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-end;
border-radius: 6px; border-radius: 6px;
border-bottom: inherit; border-bottom: inherit;
margin-bottom: 18px; margin-bottom: 18px;
@@ -41,24 +42,16 @@
.adf-dateitem-editable { .adf-dateitem-editable {
cursor: pointer; cursor: pointer;
padding: 0 12px; width: 100%;
padding: 0 5px;
/* stylelint-disable-next-line no-descending-specificity */ /* stylelint-disable-next-line no-descending-specificity */
&-controls { &-controls {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
padding-bottom: 6px;
button#{$mat-icon-button} {
line-height: 20px;
height: 20px;
width: 20px;
}
#{$mat-icon} { #{$mat-icon} {
width: 16px;
height: 16px;
opacity: 0.5; opacity: 0.5;
&:hover { &:hover {
@@ -66,15 +59,17 @@
} }
} }
mat-datetimepicker-toggle {
transform: scale(0.8);
}
.adf-datepicker-toggle { .adf-datepicker-toggle {
flex: 1 0 auto; flex: 1 0 auto;
font-size: 14px;
} }
.adf-date-reset-icon { .adf-date-reset-icon {
line-height: 10px;
position: relative; position: relative;
top: 4px;
padding: 0 8px;
} }
} }
} }