mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
48 lines
930 B
SCSS
48 lines
930 B
SCSS
@use '../../styles/mat-selectors' as ms;
|
|
|
|
/* stylelint-disable selector-class-pattern */
|
|
.aca-rule-action-list {
|
|
.aca-rule-action-list__item .aca-rule-action .mat-mdc-form-field-flex .mat-mdc-form-field-infix {
|
|
padding-top: 24px;
|
|
}
|
|
|
|
.mat-mdc-form-field-subscript-wrapper {
|
|
display: none;
|
|
}
|
|
|
|
.aca-rule-action-list-add-action-button {
|
|
margin: 4px 0 20px;
|
|
|
|
.aca-rule-action-list-add-action-button-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
font-size: 24px;
|
|
margin-right: 0;
|
|
margin-left: 1px;
|
|
}
|
|
}
|
|
|
|
&__item {
|
|
border-radius: 8px;
|
|
display: flex;
|
|
margin: 10px;
|
|
padding: 10px;
|
|
|
|
& > .aca-rule-action {
|
|
flex: 1;
|
|
}
|
|
|
|
#{ms.$mat-text-field-disabled}#{ms.$mat-text-field-filled} {
|
|
background: transparent;
|
|
}
|
|
|
|
&:nth-child(2n) {
|
|
background-color: hsl(0deg, 0%, 95%);
|
|
|
|
&:last-of-type {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|