mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-06-02 17:35:08 +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>
100 lines
2.2 KiB
SCSS
100 lines
2.2 KiB
SCSS
.app-no-form-container {
|
|
text-align: center;
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.app-grid {
|
|
.app-grid-item {
|
|
margin: 4px;
|
|
box-shadow:
|
|
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
padding: 10px;
|
|
}
|
|
|
|
.app-list-buttons {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.app-tasks-list.app-small-pagination,
|
|
.app-processes-list.app-small-pagination {
|
|
.app-pagination {
|
|
flex-wrap: wrap;
|
|
padding-bottom: 24px;
|
|
padding-top: 8px;
|
|
|
|
&__range-block.app-pagination__block:first-child {
|
|
order: 1;
|
|
width: 60%;
|
|
flex: 0 0 auto;
|
|
box-sizing: border-box;
|
|
padding-left: 2px;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
&__perpage-block {
|
|
order: 3;
|
|
width: 60%;
|
|
box-sizing: border-box;
|
|
padding-left: 2px;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
&__actualinfo-block {
|
|
order: 2;
|
|
width: 40%;
|
|
box-sizing: border-box;
|
|
padding-right: 2px;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
&__controls-block {
|
|
order: 4;
|
|
width: 40%;
|
|
box-sizing: border-box;
|
|
padding-right: 2px;
|
|
justify-content: flex-end;
|
|
}
|
|
}
|
|
}
|
|
|
|
.app-list {
|
|
.app-datatable-list {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
mat-slide-toggle {
|
|
margin: 10px;
|
|
}
|
|
|
|
@media screen and (max-width: 959px) {
|
|
container-widget .app-grid-list {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
}
|
|
|
|
.app-accordion-panel {
|
|
.mat-expansion-panel {
|
|
background: inherit;
|
|
}
|
|
|
|
.mat-expansion-panel-header-title,
|
|
.mat-expansion-panel-header-description {
|
|
flex-basis: 0;
|
|
align-items: center;
|
|
}
|
|
|
|
.mat-expansion-panel-header-description {
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.app-accordion-title-padding {
|
|
padding-left: 20px;
|
|
}
|
|
}
|