-
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-6565] Should use declaration-no-important rule in the stylelint-…
…config.json file to avoid use of !imporatnt in ADF
- Loading branch information
1 parent
81c17da
commit 802d54a
Showing
32 changed files
with
214 additions
and
214 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.app-container { | ||
margin: 10px !important; | ||
.app-container.app-container { | ||
margin: 10px; | ||
} | ||
|
||
.app-error-message { | ||
|
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 |
---|---|---|
|
@@ -148,7 +148,7 @@ | |
} | ||
|
||
&-hide-tab .mat-tab-label-active { | ||
display: none !important; | ||
display: none; | ||
} | ||
} | ||
|
||
|
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
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
120 changes: 61 additions & 59 deletions
120
lib/core/src/lib/comments/comment-list/comment-list.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,68 +1,70 @@ | ||
.adf { | ||
&-comment-img-container { | ||
width: 40px; | ||
height: 100%; | ||
display: flex; | ||
align-self: flex-start; | ||
padding-top: 18px; | ||
} | ||
.adf-comment-list { | ||
.adf { | ||
&-comment-img-container { | ||
width: 40px; | ||
height: 100%; | ||
display: flex; | ||
align-self: flex-start; | ||
padding-top: 18px; | ||
} | ||
|
||
&-comment-list-item { | ||
white-space: initial; | ||
display: table-row-group; | ||
padding-top: 12px; | ||
overflow: hidden; | ||
height: 100% !important; | ||
background-position: center; | ||
} | ||
&-comment-list-item.mat-list-item { | ||
white-space: initial; | ||
display: table-row-group; | ||
padding-top: 12px; | ||
overflow: hidden; | ||
height: 100%; | ||
background-position: center; | ||
} | ||
|
||
&-comment-user-icon { | ||
padding: 10px 5px; | ||
width: 30px; | ||
background-color: var(--theme-primary-color); | ||
color: var(--theme-primary-color-default-contrast); | ||
border-radius: 50%; | ||
font-size: var(--theme-subheading-2-font-size); | ||
text-align: center; | ||
height: 20px; | ||
background-size: cover; | ||
} | ||
&-comment-user-icon { | ||
padding: 10px 5px; | ||
width: 30px; | ||
background-color: var(--theme-primary-color); | ||
color: var(--theme-primary-color-default-contrast); | ||
border-radius: 50%; | ||
font-size: var(--theme-subheading-2-font-size); | ||
text-align: center; | ||
height: 20px; | ||
background-size: cover; | ||
} | ||
|
||
&-comment-user-name { | ||
width: 100%; | ||
padding: 2px 10px; | ||
font-weight: 600; | ||
font-size: var(--theme-body-1-font-size); | ||
} | ||
&-comment-user-name { | ||
width: 100%; | ||
padding: 2px 10px; | ||
font-weight: 600; | ||
font-size: var(--theme-body-1-font-size); | ||
} | ||
|
||
&-comment-message { | ||
width: 100%; | ||
padding: 2px 10px; | ||
white-space: pre-line !important; | ||
font-size: var(--theme-body-1-font-size); | ||
letter-spacing: -0.2px; | ||
line-height: 1.43; | ||
color: var(--adf-theme-foreground-text-color); | ||
} | ||
&-comment-message.mat-line { | ||
width: 100%; | ||
padding: 2px 10px; | ||
white-space: pre-line; | ||
font-size: var(--theme-body-1-font-size); | ||
letter-spacing: -0.2px; | ||
line-height: 1.43; | ||
color: var(--adf-theme-foreground-text-color); | ||
} | ||
|
||
&-comment-message-time { | ||
margin-top: 5px; | ||
width: 100%; | ||
padding: 2px 10px; | ||
font-size: var(--theme-caption-font-size); | ||
color: var(--adf-theme-foreground-text-color); | ||
} | ||
&-comment-message-time { | ||
margin-top: 5px; | ||
width: 100%; | ||
padding: 2px 10px; | ||
font-size: var(--theme-caption-font-size); | ||
color: var(--adf-theme-foreground-text-color); | ||
} | ||
|
||
&-comment-contents { | ||
width: 100%; | ||
padding-top: 12px; | ||
padding-left: 5px; | ||
} | ||
&-comment-contents { | ||
width: 100%; | ||
padding-top: 12px; | ||
padding-left: 5px; | ||
} | ||
|
||
&-people-img { | ||
border-radius: 90%; | ||
width: 40px; | ||
height: 40px; | ||
vertical-align: middle; | ||
&-people-img { | ||
border-radius: 90%; | ||
width: 40px; | ||
height: 40px; | ||
vertical-align: middle; | ||
} | ||
} | ||
} |
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.