Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
}

.psdk-alert-error {
color: var(--app-alert-error-color);
border: 1px solid var(--app-alert-error-border-color);
color: var(--mat-sys-error);
border: 1px solid var(--mat-sys-error);
.mat-icon {
color: var(--app-alert-error-border-color);
color: var(--mat-sys-error);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

.background-style {
background-color: transparent;
color: var(--app-inverse-form-color);
width: 100%;
height: 100%;
text-align: center;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<dd class="psdk-csf-primary-field-data" [ngSwitch]="field.type.toLowerCase()">
<span *ngSwitchCase="'textinput'" class="psdk-csf-text-style">{{ field.config.value }}</span>
<span *ngSwitchCase="'status'" class="psdk-csf-status-style">{{ field.config.value }}</span>
<a *ngSwitchCase="'phone'" as="a" href="tel: {{ field.config.value }}">{{ field.config.value }}</a>
<a *ngSwitchCase="'email'" href="mailto: {{ field.config.value }}">{{ field.config.value }}</a>
<a *ngSwitchCase="'phone'" class="psdk-primary-color" as="a" href="tel: {{ field.config.value }}">{{ field.config.value }}</a>
<a *ngSwitchCase="'email'" class="psdk-primary-color" href="mailto: {{ field.config.value }}">{{ field.config.value }}</a>
<span *ngSwitchCase="'date'" class="psdk-csf-text-style">{{ field.config.value }}</span>
<label *ngSwitchCase="'caseoperator'">operator</label>
<span *ngSwitchDefault class="psdk-csf-text-style">{{ field.config.value }}</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,36 +18,6 @@
margin-bottom: 0.75rem;
}

.psdk-case-summary-status-data {
display: block;
background-color: var(--app-primary-lightest-color);
color: var(--app-primary-color);
padding: 0rem 0.625rem;
display: inline;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
line-height: 1.5rem;
}

.psdk-case-summary-primary .label {
font-weight: 600;
}

.psdk-case-summary-primary .data {
font-weight: 600;
font-size: 1.625rem;
}

.psdk-case-summary-secondary .label {
font-weight: 600;
}
.psdk-case-summary-secondary .data {
font-weight: 600;
// color: $app-primary-color;
padding-left: 1.25rem;
}

.psdk-case-summary-fields {
// padding: calc(2 * 0.5rem);
display: grid;
Expand All @@ -74,7 +44,6 @@
max-width: max-content;
font-size: 0.8125rem;
font-weight: 400;
color: var(--app-field-header-color);
}

.psdk-csf-primary-field-data {
Expand Down Expand Up @@ -106,7 +75,6 @@
max-width: max-content;
font-size: 0.8125rem;
font-weight: 400;
color: var(--app-field-header-color);
align-items: center;
display: flex;
}
Expand All @@ -124,9 +92,8 @@ span.psdk-csf-text-style {
}

span.psdk-csf-status-style {
background-color: var(--app-details-status-background);
background-color: var(--mat-sys-surface-container-highest);
border-radius: calc(0.25 * 0.5rem);
color: var(--app-details-status-color);
display: inline-block;
font-size: 0.75rem;
font-weight: bold;
Expand All @@ -139,3 +106,7 @@ span.psdk-csf-status-style {
.psdk-secondary-value {
font-size: 1rem;
}

.psdk-primary-color {
color: var(--mat-sys-primary);
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<div [ngSwitch]="field.type.toLowerCase()" class="psdk-csf-primary-field-value">
<span *ngSwitchCase="'textinput'" class="psdk-details-text-style">{{ _getValue(field.config.value) }}</span>
<span *ngSwitchCase="'status'" class="psdk-details-status-style">{{ _getValue(field.config.value) }}</span>
<a *ngSwitchCase="'phone'" as="a" href="tel: {{ field.config.value }}">{{ _getValue(field.config.value) }}</a>
<a *ngSwitchCase="'email'" href="mailto: {{ field.config.value }}">{{ _getValue(field.config.value) }}</a>
<a *ngSwitchCase="'phone'" class="psdk-primary-color" as="a" href="tel: {{ field.config.value }}">{{ _getValue(field.config.value) }}</a>
<a *ngSwitchCase="'email'" class="psdk-primary-color" href="mailto: {{ field.config.value }}">{{ _getValue(field.config.value) }}</a>
<span *ngSwitchCase="'date'" class="psdk-details-text-style">{{ _formatDate(field.config.value, field.type) }}</span>
<span *ngSwitchCase="'caseoperator'"></span>
<span *ngSwitchDefault>{{ _getValue(field.config.value, field) }}</span>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.psdk-details-fields-label {
color: var(--app-label-color);
margin: 8px 0px;
}

Expand All @@ -8,9 +7,7 @@ span.psdk-details-text-style-hf {
}

span.psdk-details-status-style-hf {
background-color: var(--app-details-status-background);
border-radius: calc(0.25 * 0.5rem);
color: var(--app-details-status-color);
display: inline-block;
font-size: 0.75rem;
font-weight: bold;
Expand All @@ -31,3 +28,7 @@ span.psdk-details-status-style-hf {
.psdk-csf-primary-field-value {
margin: 8px 0;
}

.psdk-primary-color {
color: var(--mat-sys-primary);
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
}

.psdk-details-fields-label {
color: var(--app-label-color);
margin: 8px 0px;
}

Expand All @@ -43,9 +42,7 @@ span.psdk-details-text-style {
}

span.psdk-details-status-style {
background-color: var(--app-details-status-background);
border-radius: calc(0.25 * 0.5rem);
color: var(--app-details-status-color);
display: inline-block;
font-size: 0.75rem;
font-weight: bold;
Expand All @@ -68,9 +65,7 @@ span.psdk-details-status-style {
}

span.psdk-details-status-style-hf {
background-color: var(--app-details-status-background);
border-radius: calc(0.25 * 0.5rem);
color: var(--app-details-status-color);
display: inline-block;
font-size: 1.25rem;
font-weight: 500;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

.psdk-utility-divider {
border-bottom: 0.0625rem solid var(--app-neutral-light-color);
border-bottom: 0.0625rem solid var(--mat-sys-outline-variant);
}

.psdk-utility-view-all {
Expand All @@ -13,20 +13,6 @@
justify-content: center;
}

.psdk-utility-count {
background: var(--app-primary-light-color);
border-radius: calc(1.125 * 0.5rem);
color: var(--app-inverse-form-color);
display: inline-block;
font-size: 0.75rem;
font-weight: bold;
text-align: center;
width: 1.125rem;

vertical-align: top;
margin: 0 0 0.313rem 1rem;
}

.psdk-utility .header-text {
font-size: 1rem;
font-weight: bold;
Expand All @@ -43,7 +29,6 @@
width: 100%;
padding: 0.625rem 0rem;
text-align: left;
background-color: var(--app-form-color);
border-radius: 0.6125rem;
margin: 0.3125rem 0rem;
}
Expand Down Expand Up @@ -90,7 +75,6 @@
}

.psdk-utility-card-main-primary-url {
color: var(--app-primary-color);
}

.psdk-utility-card-main-primary-url .mat-mdc-button.mat-primary {
Expand All @@ -109,6 +93,7 @@
.psdk-utility-card-action-svg-icon {
width: 1.4rem;
display: inline-block;
filter: var(--app-primary-color-filter);
}

.psdk-utility-card-actions-svg-icon {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

.psdk-case-view-divider {
border-bottom: 0.0625rem solid var(--app-neutral-light-color);
border-bottom: 0.0625rem solid var(--mat-sys-outline-variant);
}

.psdk-utility .header-text {
Expand All @@ -24,7 +24,6 @@
height: 6.25rem;
padding: 0.625rem 0rem;
text-align: left;
background-color: var(--app-form-color);
border-radius: 0.6125rem;
margin: 0.3125rem 0rem;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mat-button-toggle-group ::ng-deep .mat-button-toggle-appearance-standard {

mat-button-toggle-group ::ng-deep .mat-button-toggle.mat-button-toggle-checked.mat-button-toggle-appearance-standard {
background-color: transparent;
border-right: 0.1875rem solid var(--app-primary-color);
border-right: 0.1875rem solid var(--mat-sys-primary);
}

mat-button-toggle-group ::ng-deep .mat-button-toggle.mat-focus-indicator.mat-button-toggle-appearance-standard {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div *ngIf="bShowPopover$" class="psdk-operator-popover">
<dl>
<div *ngFor="let field of fields$; let i = index">
<dt class="psdk-operator-name">{{ field.name }}</dt>
<dt>{{ field.name }}</dt>
<dd class="psdk-operator-value">{{ field.value }}</dd>
</div>
</dl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
display: flex;
flex-direction: column;
font-size: 0.8rem;
color: var(--app-neutral-color);
padding-left: 0.625rem;
margin: 16px 0 8px 0;
}
Expand All @@ -19,22 +18,17 @@
display: table;
margin: auto;
min-width: 100px;
background-color: var(--app-form-color);
border: 1px solid var(--app-inverse-form-color);
background-color: var(--mat-sys-surface);
border: 1px solid var(--mat-sys-outline-variant);
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px 3px var(--app-box-shadow-color);
box-shadow: 0 0 10px 3px var(--mat-sys-level3);
position: absolute;
z-index: 99;
}

.psdk-operator-name {
color: var(--app-neutral-color);
}

.psdk-operator-value {
padding-left: 5px;
color: var(--app-neutral-dark-color);
margin: 0px;
}

Expand Down Expand Up @@ -85,5 +79,4 @@ dd {
word-break: break-word;
grid-column-start: 1;
max-width: max-content;
color: var(--app-field-header-color);
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
margin: 1rem;
border-radius: 0.6125rem;
border-left: 6px solid;
border-left-color: var(--app-primary-color);
background-color: var(--app-form-color);
border-left-color: var(--mat-sys-primary);
background-color: var(--mat-sys-surface-container);
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
display: inline;
content: ' *';
vertical-align: top;
color: var(--app-neutral-dark-color);
}

.text-editor-error {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
}

.quick-link-list {
background-color: var(--app-primary-color);
color: var(--app-form-color);
border-radius: 8px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
align-items: center;
height: 100%;
width: 100%;
background-color: var(--app-dialog-background-color);
position: fixed;
z-index: 9999;
top: 0px;
Expand All @@ -16,7 +15,6 @@
display: table;
margin: auto;
min-width: 550px;
background-color: var(--app-form-color);
border: 1px solid var(--app-inverse-form-color);
border-radius: 10px;
padding: 20px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
}

.psdk-label {
color: var(--app-label-color);
margin: 8px 0px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@
}

.psdk-details-fields-label {
color: var(--app-label-color);
margin: 8px 0px;
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.psdk-user-reference {
font-size: 0.8rem;
color: var(--app-neutral-color);
}
.psdk-single {
flex: 1;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
<mat-grid-list *ngIf="arMainButtons$ && arSecondaryButtons$" cols="2" rowHeight="6.25rem">
<mat-grid-tile>
<button *ngFor="let aButton of arSecondaryButtons$" mat-raised-button color="secondary" (click)="buttonClick(aButton.jsAction, 'secondary')">
<button
*ngFor="let aButton of arSecondaryButtons$"
mat-stroked-button
class="secondary-button"
(click)="buttonClick(aButton.jsAction, 'secondary')"
>
{{ localizedVal(aButton.name, localeCategory) }}
</button>
</mat-grid-tile>
<mat-grid-tile>
<button *ngFor="let aButton of arMainButtons$" mat-raised-button color="primary" (click)="buttonClick(aButton.jsAction, 'primary')">
<button *ngFor="let aButton of arMainButtons$" mat-flat-button (click)="buttonClick(aButton.jsAction, 'primary')">
{{ localizedVal(aButton.name, localeCategory) }}
</button>
</mat-grid-tile>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.secondary-button {
background-color: var(--app-sys-secondary-button-background);
border-color: var(--app-sys-secondary-button-border);
margin: 0 5px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
</form>

<div>
<br />
<div class="psdk-case-view-divider"></div>

<component-mapper
Expand Down
Loading