-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* ACA-4712 Added rule to prevent using important for styles * ACA-4712 Removed important from some global styles and from manage rule component * ACA-4712 Removed important from rest global and theme styles * ACA-4712 Removed usages of important from styles for components
- Loading branch information
1 parent
4019508
commit 5508ff1
Showing
18 changed files
with
139 additions
and
125 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
{ | ||
"resolveNestedSelectors": true | ||
} | ||
] | ||
], | ||
"declaration-no-important": true | ||
} | ||
} |
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
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
84 changes: 43 additions & 41 deletions
84
projects/aca-content/src/lib/ui/overrides/adf-pagination.theme.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,45 +1,47 @@ | ||
@mixin adf-pagination-theme($theme) { | ||
.adf-pagination__block { | ||
flex: none !important; | ||
padding: 0 !important; | ||
font-weight: 400; | ||
font-size: 14px; | ||
line-height: 24px; | ||
letter-spacing: 0.25px; | ||
} | ||
|
||
.adf-pagination { | ||
height: 32px !important; | ||
line-height: 24px !important; | ||
padding: 16px 0; | ||
} | ||
|
||
.adf-pagination__range-block { | ||
padding: 0 24px !important; | ||
} | ||
|
||
.adf-pagination__perpage-block { | ||
flex: auto !important; | ||
padding-right: 24px !important; | ||
} | ||
|
||
.adf-pagination__actualinfo-block { | ||
padding-right: 12px !important; | ||
|
||
.mat-menu-trigger { | ||
display: none !important; | ||
adf-pagination { | ||
&.adf-pagination { | ||
height: 32px; | ||
line-height: 24px; | ||
padding: 16px 0; | ||
|
||
.adf-pagination__block { | ||
flex: none; | ||
padding: 0; | ||
font-weight: 400; | ||
font-size: 14px; | ||
line-height: 24px; | ||
letter-spacing: 0.25px; | ||
|
||
&.adf-pagination__range-block { | ||
padding: 0 24px; | ||
} | ||
} | ||
|
||
.adf-pagination__perpage-block { | ||
flex: auto; | ||
padding-right: 24px; | ||
} | ||
|
||
.adf-pagination__actualinfo-block { | ||
padding-right: 12px; | ||
|
||
.mat-menu-trigger { | ||
display: none; | ||
} | ||
} | ||
|
||
.adf-pagination__previous-button { | ||
margin: 0 12px 0 0; | ||
} | ||
|
||
.adf-pagination__next-button { | ||
margin: 0; | ||
} | ||
|
||
.adf-pagination__controls-block { | ||
padding-right: 24px; | ||
} | ||
} | ||
} | ||
|
||
.adf-pagination__previous-button { | ||
margin: 0 12px 0 0 !important; | ||
} | ||
|
||
.adf-pagination__next-button { | ||
margin: 0 !important; | ||
} | ||
|
||
.adf-pagination__controls-block { | ||
padding-right: 24px !important; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -11,8 +11,4 @@ | |
display: none; | ||
} | ||
} | ||
|
||
adf-share-dialog .mat-form-field-label-wrapper label { | ||
display: none !important; | ||
} | ||
} |
Oops, something went wrong.