mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* chore: adding instructions to the calendar for use * chore: updating lockfile * chore: fixing package * chore: updated html for test * chore: adding instructions to the calendar for use * chore: updating lockfile * chore: fixing package * Wchore: updated html for test * chore: removed unnused random string gen * chore: synced lockfile; removed unnused prop
70 lines
1.6 KiB
SCSS
70 lines
1.6 KiB
SCSS
@mixin adf-card-view-dateitem-theme($theme) {
|
|
|
|
.adf {
|
|
&-invisible-date-input {
|
|
height: 2px;
|
|
width: 0;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
float: right;
|
|
}
|
|
|
|
&-dateitem-editable {
|
|
cursor: pointer;
|
|
|
|
&-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
button.mat-icon-button {
|
|
line-height: 20px;
|
|
height: 20px;
|
|
width: 20px;
|
|
}
|
|
|
|
mat-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
&:hover mat-icon {
|
|
opacity: 1;
|
|
}
|
|
|
|
.adf-datepicker-toggle {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
mat-icon.adf-date-reset-icon {
|
|
line-height: 10px;
|
|
font-size: 16px;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 4px;
|
|
padding-left: 8px;
|
|
opacity: 0.3;
|
|
}
|
|
&:hover mat-icon.adf-date-reset-icon {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.adf-sr-only {
|
|
display: block;
|
|
height: 1px;
|
|
width: 1px;
|
|
clip: rect(1 1 1 1);
|
|
clip: rect(1px 1px 1px 1px);
|
|
overflow: hidden;
|
|
}
|
|
|
|
}
|