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
50 lines
1.2 KiB
SCSS
50 lines
1.2 KiB
SCSS
@mixin adf-toolbar-theme($theme) {
|
|
$foreground: map-get($theme, foreground);
|
|
$adf-toolbar-height: 48px !default;
|
|
$adf-toolbar-single-row-height: 64px !default;
|
|
$adf-toolbar-font-size: 14px !default;
|
|
$adf-toolbar-padding: 16px !default;
|
|
|
|
.adf-toolbar {
|
|
&--spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
&-title {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mat-toolbar {
|
|
min-height: $adf-toolbar-height;
|
|
border: 1px solid mat-color($foreground, text, 0.07);
|
|
}
|
|
|
|
.mat-toolbar-row {
|
|
height: $adf-toolbar-height;
|
|
font-size: $adf-toolbar-font-size;
|
|
white-space: normal;
|
|
}
|
|
|
|
.mat-toolbar-single-row {
|
|
padding: 0 $adf-toolbar-padding;
|
|
height: $adf-toolbar-single-row-height;
|
|
}
|
|
|
|
&.adf-toolbar--inline {
|
|
.mat-toolbar {
|
|
background-color: inherit;
|
|
border: none !important;
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.adf-viewer {
|
|
.adf-toolbar {
|
|
.mat-toolbar {
|
|
color: mat-color($foreground, text, 0.54);
|
|
}
|
|
}
|
|
}
|
|
}
|