[AAE-15239] Making about settings component styles configurable (#8666)

This commit is contained in:
Ehsan Rezaei
2023-06-14 16:01:12 +02:00
committed by GitHub
parent afbf87788f
commit 5c9ff5b36c
5 changed files with 20 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
<div class="adf-github-link-container"> <div class="adf-about-server-settings">
<mat-card class="mat-elevation-z0"> <mat-card class="mat-elevation-z0 adf-about-server-settings__card">
<p data-automation-id="adf-process-service-host"> <p data-automation-id="adf-process-service-host">
{{ 'ABOUT.SERVER_SETTINGS.PROCESS_SERVICE_HOST' | translate: {value: bpmHost} }} {{ 'ABOUT.SERVER_SETTINGS.PROCESS_SERVICE_HOST' | translate: {value: bpmHost} }}
</p> </p>

View File

@@ -1,3 +1,8 @@
.adf-github-link-container { .adf-about-server-settings {
padding: 10px; &__card {
background: var(--adf-about-server-settings-background);
color: var(--adf-about-server-settings-color);
border-radius: var(--adf-about-server-settings-border-radius);
padding: var(--adf-about-server-settings-padding);
}
} }

View File

@@ -15,13 +15,13 @@
* limitations under the License. * limitations under the License.
*/ */
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { AppConfigService, AppConfigValues } from '../../app-config/app-config.service'; import { AppConfigService, AppConfigValues } from '../../app-config/app-config.service';
@Component({ @Component({
selector: 'adf-about-server-settings', selector: 'adf-about-server-settings',
templateUrl: './about-server-settings.component.html', templateUrl: './about-server-settings.component.html',
encapsulation: ViewEncapsulation.None styleUrls: ['./about-server-settings.component.scss']
}) })
export class AboutServerSettingsComponent implements OnInit { export class AboutServerSettingsComponent implements OnInit {
ecmHost = ''; ecmHost = '';

View File

@@ -5,7 +5,7 @@
--adf-card-view-background: $adf-ref-card-background, --adf-card-view-background: $adf-ref-card-background,
--adf-card-view-border: $adf-ref-card-border, --adf-card-view-border: $adf-ref-card-border,
--adf-card-view-border-color: $adf-ref-card-border-color, --adf-card-view-border-color: $adf-ref-card-border-color,
--adf-card-view-border-radius: $adf-ref-card-border-radius, --adf-card-view-border-radius: $adf-ref-card-border-radius-0,
--adf-edit-task-and-service-filter-header-title-color: $adf-ref-title-color, --adf-edit-task-and-service-filter-header-title-color: $adf-ref-title-color,
--adf-edit-task-and-service-filter-header-description-color: $adf-ref-description-color, --adf-edit-task-and-service-filter-header-description-color: $adf-ref-description-color,
--adf-edit-task-and-service-filter-content-text-label-color: $adf-ref-text-field-label-color, --adf-edit-task-and-service-filter-content-text-label-color: $adf-ref-text-field-label-color,
@@ -18,6 +18,10 @@
--adf-edit-process-filter-header-description-color: $adf-ref-description-color, --adf-edit-process-filter-header-description-color: $adf-ref-description-color,
--adf-edit-process-filter-content-text-label-color: $adf-ref-text-field-label-color, --adf-edit-process-filter-content-text-label-color: $adf-ref-text-field-label-color,
--adf-edit-process-filter-content-select-label-color: $adf-ref-select-field-label-color, --adf-edit-process-filter-content-select-label-color: $adf-ref-select-field-label-color,
--adf-about-server-settings-background: $adf-ref-card-background,
--adf-about-server-settings-color: $adf-ref-card-color,
--adf-about-server-settings-border-radius: $adf-ref-card-border-radius-4,
--adf-about-server-settings-padding: $adf-ref-card-padding-16,
); );
// propagates SCSS variables into the CSS variables scope // propagates SCSS variables into the CSS variables scope

View File

@@ -1,9 +1,12 @@
$adf-ref-card-background: white; $adf-ref-card-background: white;
$adf-ref-card-border: unset; $adf-ref-card-border: unset;
$adf-ref-card-border-color: unset; $adf-ref-card-border-color: unset;
$adf-ref-card-border-radius: 0; $adf-ref-card-border-radius-0: 0;
$adf-ref-height-48: 48px; $adf-ref-height-48: 48px;
$adf-ref-title-color: rgba(0, 0, 0, 0.87); $adf-ref-title-color: rgba(0, 0, 0, 0.87);
$adf-ref-description-color: rgba(0, 0, 0, 0.54); $adf-ref-description-color: rgba(0, 0, 0, 0.54);
$adf-ref-text-field-label-color: rgba(0, 0, 0, 0.54); $adf-ref-text-field-label-color: rgba(0, 0, 0, 0.54);
$adf-ref-select-field-label-color: rgba(0, 0, 0, 0.54); $adf-ref-select-field-label-color: rgba(0, 0, 0, 0.54);
$adf-ref-card-color: rgba(0, 0, 0, 0.87);
$adf-ref-card-padding-16: 16px;
$adf-ref-card-border-radius-4: 4px;