mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
[ACS-7452] - Small screen notification banner [ACS-7418] About page (#9507)
This commit is contained in:
parent
7b047ccfc9
commit
8ef326a756
@ -2,10 +2,6 @@
|
|||||||
background: var(--adf-package-list-table-background);
|
background: var(--adf-package-list-table-background);
|
||||||
|
|
||||||
&__header-row {
|
&__header-row {
|
||||||
border-bottom-color: var(--adf-package-list-table-header-border-bottom-color);
|
|
||||||
border-style: var(--adf-package-list-table-header-border-style);
|
|
||||||
border-width: var(--adf-package-list-table-header-border-width);
|
|
||||||
border-bottom-width: var(--adf-package-list-table-header-border-bottom-width);
|
|
||||||
min-height: var(--adf-package-list-table-header-min-height);
|
min-height: var(--adf-package-list-table-header-min-height);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -14,10 +10,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__row {
|
&__row {
|
||||||
border-bottom-color: var(--adf-package-list-table-row-border-bottom-color);
|
|
||||||
border-style: var(--adf-package-list-table-row-border-style);
|
|
||||||
border-width: var(--adf-package-list-table-row-border-width);
|
|
||||||
border-bottom-width: var(--adf-package-list-table-row-border-bottom-width);
|
|
||||||
min-height: var(--adf-package-list-table-row-min-height);
|
min-height: var(--adf-package-list-table-row-min-height);
|
||||||
|
|
||||||
&-cell {
|
&-cell {
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
article {
|
||||||
|
margin-top: 16px;
|
||||||
|
}
|
@ -28,6 +28,7 @@ import { AboutStatusListComponent } from '../about-status-list/about-status-list
|
|||||||
@Component({
|
@Component({
|
||||||
selector: 'adf-about-repository-info',
|
selector: 'adf-about-repository-info',
|
||||||
templateUrl: './about-repository-info.component.html',
|
templateUrl: './about-repository-info.component.html',
|
||||||
|
styleUrls: ['./about-repository-info.component.scss'],
|
||||||
encapsulation: ViewEncapsulation.None,
|
encapsulation: ViewEncapsulation.None,
|
||||||
standalone: true,
|
standalone: true,
|
||||||
imports: [CommonModule, TranslateModule, AboutLicenseListComponent, ModuleListComponent, AboutStatusListComponent]
|
imports: [CommonModule, TranslateModule, AboutLicenseListComponent, ModuleListComponent, AboutStatusListComponent]
|
||||||
|
@ -4,5 +4,17 @@
|
|||||||
color: var(--adf-about-server-settings-color);
|
color: var(--adf-about-server-settings-color);
|
||||||
border-radius: var(--adf-about-server-settings-border-radius);
|
border-radius: var(--adf-about-server-settings-border-radius);
|
||||||
padding: var(--adf-about-server-settings-padding);
|
padding: var(--adf-about-server-settings-padding);
|
||||||
|
|
||||||
|
&:has(p) {
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0 0 10px 0;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -36,16 +36,8 @@
|
|||||||
--adf-about-server-settings-border-radius: $adf-ref-card-border-radius-normal,
|
--adf-about-server-settings-border-radius: $adf-ref-card-border-radius-normal,
|
||||||
--adf-about-server-settings-padding: $adf-ref-card-padding,
|
--adf-about-server-settings-padding: $adf-ref-card-padding,
|
||||||
--adf-package-list-table-background: mat.get-color-from-palette($background, card),
|
--adf-package-list-table-background: mat.get-color-from-palette($background, card),
|
||||||
--adf-package-list-table-header-border-bottom-color: mat.get-color-from-palette($foreground, divider),
|
|
||||||
--adf-package-list-table-header-border-style: $adf-ref-table-header-border-style,
|
|
||||||
--adf-package-list-table-header-border-bottom-width: $adf-ref-table-header-border-bottom-width,
|
|
||||||
--adf-package-list-table-header-border-width: $adf-ref-table-header-border-width,
|
|
||||||
--adf-package-list-table-header-min-height: $adf-ref-table-header-min-height,
|
--adf-package-list-table-header-min-height: $adf-ref-table-header-min-height,
|
||||||
--adf-package-list-table-header-cell-color: mat.get-color-from-palette($foreground, secondary-text),
|
--adf-package-list-table-header-cell-color: mat.get-color-from-palette($foreground, secondary-text),
|
||||||
--adf-package-list-table-row-border-bottom-color: mat.get-color-from-palette($foreground, dividers),
|
|
||||||
--adf-package-list-table-row-border-style: $adf-ref-table-row-border-style,
|
|
||||||
--adf-package-list-table-row-border-bottom-width: $adf-ref-table-row-border-bottom-width,
|
|
||||||
--adf-package-list-table-row-border-width: $adf-ref-table-row-border-width,
|
|
||||||
--adf-package-list-table-row-min-height: $adf-ref-table-row-min-height,
|
--adf-package-list-table-row-min-height: $adf-ref-table-row-min-height,
|
||||||
--adf-package-list-table-row-cell-color: mat.get-color-from-palette($foreground, text),
|
--adf-package-list-table-row-cell-color: mat.get-color-from-palette($foreground, text),
|
||||||
--adf-identity-user-info-background: var(--adf-theme-primary-300),
|
--adf-identity-user-info-background: var(--adf-theme-primary-300),
|
||||||
@ -72,7 +64,6 @@
|
|||||||
--adf-people-cloud-autosuggest-result-active-color: mat.get-color-from-palette($foreground, text),
|
--adf-people-cloud-autosuggest-result-active-color: mat.get-color-from-palette($foreground, text),
|
||||||
--adf-people-cloud-autosuggest-result-disabled-color: mat.get-color-from-palette($foreground, secondary-text),
|
--adf-people-cloud-autosuggest-result-disabled-color: mat.get-color-from-palette($foreground, secondary-text),
|
||||||
--adf-people-cloud-input-caption-error-color: mat.get-color-from-palette($warn),
|
--adf-people-cloud-input-caption-error-color: mat.get-color-from-palette($warn),
|
||||||
|
|
||||||
--adf-metadata-property-panel-border-color: $adf-ref-metadata-property-panel-border-color,
|
--adf-metadata-property-panel-border-color: $adf-ref-metadata-property-panel-border-color,
|
||||||
--adf-metadata-buttons-background-color: $adf-ref-metadata-buttons-background-color,
|
--adf-metadata-buttons-background-color: $adf-ref-metadata-buttons-background-color,
|
||||||
--adf-metadata-action-button-clear-color: $adf-ref-metadata-action-button-clear-color,
|
--adf-metadata-action-button-clear-color: $adf-ref-metadata-action-button-clear-color,
|
||||||
@ -85,12 +76,10 @@
|
|||||||
--adf-group-cloud-autosuggest-result-active-color: mat.get-color-from-palette($foreground, text),
|
--adf-group-cloud-autosuggest-result-active-color: mat.get-color-from-palette($foreground, text),
|
||||||
--adf-group-cloud-autosuggest-result-disabled-color: mat.get-color-from-palette($foreground, secondary-text),
|
--adf-group-cloud-autosuggest-result-disabled-color: mat.get-color-from-palette($foreground, secondary-text),
|
||||||
--adf-group-cloud-input-caption-error-color: mat.get-color-from-palette($warn),
|
--adf-group-cloud-input-caption-error-color: mat.get-color-from-palette($warn),
|
||||||
|
|
||||||
--adf-task-assignment-filter-option-default-color: mat.get-color-from-palette($foreground, text),
|
--adf-task-assignment-filter-option-default-color: mat.get-color-from-palette($foreground, text),
|
||||||
--adf-task-assignment-filter-option-selected-color: mat.get-color-from-palette($primary),
|
--adf-task-assignment-filter-option-selected-color: mat.get-color-from-palette($primary),
|
||||||
--adf-task-assignment-filter-label-default-color: mat.get-color-from-palette($foreground, secondary-text),
|
--adf-task-assignment-filter-label-default-color: mat.get-color-from-palette($foreground, secondary-text),
|
||||||
--adf-task-assignment-filter-label-focus-color: mat.get-color-from-palette($primary),
|
--adf-task-assignment-filter-label-focus-color: mat.get-color-from-palette($primary),
|
||||||
|
|
||||||
--adf-process-header-cloud-card-background: mat.get-color-from-palette($background, card),
|
--adf-process-header-cloud-card-background: mat.get-color-from-palette($background, card),
|
||||||
--adf-header-icon-button-default-color: $adf-ref-header-icon-color,
|
--adf-header-icon-button-default-color: $adf-ref-header-icon-color,
|
||||||
--adf-header-icon-button-default-border-radius: $adf-ref-header-icon-border-radius,
|
--adf-header-icon-button-default-border-radius: $adf-ref-header-icon-border-radius,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user