mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* Bump stylelint from 13.13.1 to 14.2.0 Bumps [stylelint](https://github.com/stylelint/stylelint) from 13.13.1 to 14.2.0. - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/13.13.1...14.2.0) --- updated-dependencies: - dependency-name: stylelint dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * upgrade to newest stylelint * fix style issues * fix color function rules to match old Angular * rollback modern color func Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Denys Vuika <denys.vuika@gmail.com>
77 lines
1.7 KiB
SCSS
77 lines
1.7 KiB
SCSS
/* stylelint-disable no-descending-specificity */
|
|
.adf {
|
|
&-invisible-date-input {
|
|
height: 2px;
|
|
width: 0;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
float: right;
|
|
}
|
|
|
|
&-dateitem-chip-list-container.adf-property-field {
|
|
margin-bottom: -7px !important;
|
|
border-bottom: 0;
|
|
cursor: pointer;
|
|
|
|
.adf-dateitem-editable-controls {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.mat-datetimepicker-toggle {
|
|
position: absolute;
|
|
right: 0;
|
|
top: -20px;
|
|
}
|
|
}
|
|
|
|
&-dateitem-editable {
|
|
cursor: pointer;
|
|
border-bottom: 1px solid var(--adf-card-view-datetime-border-color);
|
|
padding-bottom: 6px;
|
|
|
|
&-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;
|
|
}
|
|
}
|
|
}
|
|
}
|