-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ACS-5575] Should use declaration-no-important rule in the stylelint-…
…config.json file to avoid use of !important in ADF
- Loading branch information
1 parent
f7d8319
commit 1a6fa9c
Showing
79 changed files
with
543 additions
and
561 deletions.
There are no files selected for viewing
8 changes: 4 additions & 4 deletions
8
demo-shell/src/app/components/app-layout/user-info/user-info.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
<ng-container> | ||
<adf-content-user-info | ||
<adf-content-user-info | ||
*ngIf="mode === userInfoMode.CONTENT || mode === userInfoMode.CONTENT_SSO" | ||
[ecmUser]="ecmUser$ | async" | ||
[identityUser]="identityUser$ | async" | ||
[isLoggedIn]="isLoggedIn" | ||
[mode]="mode" | ||
></adf-content-user-info> | ||
<adf-identity-user-info | ||
<adf-identity-user-info | ||
*ngIf="mode === userInfoMode.SSO" | ||
[identityUser]="identityUser$ | async" | ||
[isLoggedIn]="isLoggedIn" | ||
></adf-identity-user-info> | ||
<adf-process-user-info | ||
<adf-process-user-info | ||
*ngIf="mode === userInfoMode.PROCESS || mode === userInfoMode.ALL" | ||
[bpmUser]="bpmUser$ | async" | ||
[ecmUser]="ecmUser$ | async" | ||
[isLoggedIn]="isLoggedIn" | ||
[mode]="mode" | ||
></adf-process-user-info> | ||
</ng-container> | ||
</ng-container> |
2 changes: 1 addition & 1 deletion
2
demo-shell/src/app/components/cloud/cloud-filters-demo.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
app-cloud-task-filters .app-filters__entry, | ||
app-cloud-process-filters .app-filters__entry { | ||
padding-left: 0 !important; | ||
padding-left: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 16 additions & 16 deletions
32
...es/src/lib/permission-manager/components/user-icon-column/user-icon-column.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
.adf { | ||
&-people-initial { | ||
.adf-cell-value { | ||
.adf-people-initial { | ||
background: var(--theme-primary-color); | ||
border-radius: 50%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 40px; | ||
height: 40px; | ||
color: var(--theme-primary-color-default-contrast) !important; | ||
color: var(--theme-primary-color-default-contrast); | ||
font-weight: bolder; | ||
font-size: var(--theme-adf-picture-1-font-size); | ||
text-transform: uppercase; | ||
} | ||
|
||
&-group-icon { | ||
height: 20px !important; | ||
width: 20px !important; | ||
.adf-group-icon { | ||
height: 20px; | ||
width: 20px; | ||
background: var(--theme-primary-color); | ||
border-radius: 50%; | ||
padding: 10px; | ||
color: var(--theme-primary-color-default-contrast) !important; | ||
color: var(--theme-primary-color-default-contrast); | ||
font-weight: bolder; | ||
font-size: var(--theme-title-font-size); | ||
} | ||
|
||
&-people-select-icon { | ||
margin: 0 !important; | ||
.adf-datatable-selected { | ||
height: 100%; | ||
width: 100%; | ||
margin-left: -2px; | ||
margin-top: 2px; | ||
} | ||
|
||
.adf-people-select-icon { | ||
margin: 0; | ||
|
||
svg { | ||
fill: var(--theme-accent-color); | ||
width: 40px; | ||
height: 40px; | ||
} | ||
} | ||
|
||
&-datatable-selected { | ||
height: 100%; | ||
width: 100%; | ||
margin-left: -2px; | ||
margin-top: 2px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
lib/content-services/src/lib/upload/components/upload-drag-area.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.