mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-4323] add style fix for adf-search-sorting-picker - moved from ACA * [ADF-4323] use Flex Layout's media query mixin * [ADF-4323] add style fix for adf-pagination - moved from ACA * [ADF-4323] add style fix for adf-version-manager - which fixed issue [ACA-1750] * [ADF-4323] remove not used property * [ADF-4323] remove extra bottom-border * [ADF-4323] upload-drag-area refactor to scss * [ADF-4323] add style fix for adf file upload - from ACA * [ADF-4323] add style fix for adf-info-drawer - from ACA * [ADF-4323] add style fix for adf-toolbar - from ACA * [ADF-4323] add style fix for adf-sidenav-layout - from ACA * [ADF-4323] add style fix for adf-search-filter - from ACA * [ADF-4323] add style fix for adf-upload-drag-area - from ACA * [ADF-4323] add style fix for adf-info-drawer - from ACA * [ADF-4323] move style fix for adf-manage-versions from demo-shell * [ADF-4323] use Flex Layout's media query mixin * [ADF-4323] small fix to remove scrolling * [ADF-4323] add adf-sidenav-layout host element class * [ADF-4323] change 'inline' class name to 'adf-toolbar--inline' - css lint was failing because of old naming * [ADF-4323] set pagination empty state styling * [ADF-4323] set pagination border to none
48 lines
2.3 KiB
SCSS
48 lines
2.3 KiB
SCSS
@import '../breadcrumb/breadcrumb.component';
|
|
@import '../breadcrumb/dropdown-breadcrumb.component';
|
|
@import '../content-node-selector/content-node-selector-panel.component';
|
|
@import '../content-node-selector/name-location-cell/name-location-cell.component';
|
|
@import '../document-list/components/document-list.component';
|
|
|
|
@import '../upload/components/file-uploading-list-row.component';
|
|
@import '../upload/components/file-uploading-dialog.component';
|
|
@import '../upload/components/upload-drag-area.component';
|
|
|
|
@import '../search/components/search.component';
|
|
@import '../search/components/search-control.component';
|
|
@import '../search/components/search-sorting-picker/search-sorting-picker.component';
|
|
@import '../search/components/search-filter/search-filter.component';
|
|
|
|
@import '../dialogs/folder.dialog';
|
|
|
|
@import '../content-node-selector/content-node-selector.component';
|
|
@import '../content-metadata/content-metadata.module';
|
|
@import '../permission-manager/components/permission-list/permission-list.component';
|
|
@import '../permission-manager/components/add-permission/add-permission.component';
|
|
@import '../permission-manager/components/add-permission/add-permission-dialog.component';
|
|
@import '../permission-manager/components/add-permission/add-permission-panel.component';
|
|
@import '../tree-view/components/tree-view.component';
|
|
|
|
@mixin adf-content-services-theme($theme) {
|
|
@include adf-breadcrumb-theme($theme);
|
|
@include adf-breadcrumb-dropdown-theme($theme);
|
|
@include adf-content-node-selector-theme($theme) ;
|
|
@include adf-name-location-cell-theme($theme);
|
|
@include adf-document-list-theme($theme) ;
|
|
@include adf-file-uploading-row-theme($theme);
|
|
@include adf-upload-dialog-theme($theme);
|
|
@include adf-upload-drag-area-theme($theme);
|
|
@include adf-search-control-theme($theme);
|
|
@include adf-search-autocomplete-theme($theme);
|
|
@include adf-search-sorting-picker-theme($theme);
|
|
@include adf-dialog-theme($theme);
|
|
@include adf-content-node-selector-dialog-theme($theme) ;
|
|
@include adf-content-metadata-module-theme($theme);
|
|
@include adf-permission-list-theme($theme);
|
|
@include adf-add-permission-theme($theme);
|
|
@include adf-add-permission-dialog-theme($theme);
|
|
@include adf-add-permission-panel-theme($theme);
|
|
@include adf-tree-view-theme($theme);
|
|
@include adf-search-filter-theme($theme);
|
|
}
|