-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Zebra look on list view and moving _mixins to src/app (#243)
* fix: move _mixins to src/app * fix: update dependencies * fix: tuning list view layout
- Loading branch information
Showing
12 changed files
with
82 additions
and
60 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
src/app/product-store/product-detail/product-apps/product-apps.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
2 changes: 1 addition & 1 deletion
2
src/app/product-store/product-detail/product-detail.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
2 changes: 1 addition & 1 deletion
2
src/app/product-store/product-detail/product-props/product-props.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 @@ | ||
@import '/src/_ps_mixins.scss'; | ||
@import '/src/app/_ps-mixins.scss'; | ||
|
||
@include readable-disabled-form-controls; | ||
@include prepare-inputgroup; |
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
26 changes: 25 additions & 1 deletion
26
src/app/product-store/product-search/product-search.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,8 +1,32 @@ | ||
@import '/src/_ps_mixins.scss'; | ||
@import '/src/app/_ps-mixins.scss'; | ||
|
||
@include correct-data-view-control; | ||
@include correct-search-criteria; | ||
@include correct-select-button; | ||
@include displaying-text-responsive; | ||
@include card-badges; | ||
@include danger-action; | ||
|
||
@media screen and (min-width: 768px) { | ||
:host ::ng-deep { | ||
.p-dataview-list .p-dataview-content .p-grid > div { | ||
&:nth-child(4n + 1), | ||
&:nth-child(4n + 2) { | ||
background-color: #f8f9fa; | ||
} | ||
&:nth-child(4n + 1), | ||
&:nth-child(4n + 3) { | ||
border-right: var(--data-view-list-item-border); | ||
} | ||
} | ||
} | ||
} | ||
@media screen and (max-width: 768px) { | ||
:host ::ng-deep { | ||
.p-dataview-list .p-dataview-content .p-grid > div { | ||
&:nth-child(odd) { | ||
background-color: #f8f9fa; | ||
} | ||
} | ||
} | ||
} |
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,3 +1,3 @@ | ||
@import '/src/_ps_mixins.scss'; | ||
@import '/src/app/_ps-mixins.scss'; | ||
|
||
@include dialog-footer-buttons; |
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