-
Notifications
You must be signed in to change notification settings - Fork 13.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(item): flip forward icon when rtl #11247
Conversation
@@ -203,13 +206,26 @@ $item-ios-sliding-content-background: $list-ios-background-color !default; | |||
button.item-ios:not([detail-none]) .item-inner, | |||
a.item-ios:not([detail-none]) .item-inner { | |||
@include svg-background-image($item-ios-detail-push-svg); | |||
|
|||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you remove the whitespaces?
|
||
background-repeat: no-repeat; | ||
background-position: right ($item-ios-padding-right - 2) center; | ||
background-size: 14px 14px; | ||
} | ||
[dir="rtl"] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there should be an empty line after 216
|
||
background-repeat: no-repeat; | ||
background-position: right ($item-md-padding-right - 2) center; | ||
background-size: 14px 14px; | ||
} | ||
[dir="rtl"] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Empty line after 141
|
||
background-repeat: no-repeat; | ||
background-position: right ($item-wp-padding-right - 2) center; | ||
background-size: 14px 14px; | ||
} | ||
[dir="rtl"] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Empty line after 146
padding-right: 0; | ||
padding-left: 32px; | ||
|
||
background-position: left ($item-wp-padding-left -2) center; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space after minus
Short description of what this resolves:
flip the forward icon on item when the direction is rtl
Ionic Version: 1.x / 2.x / 3.x
Fixes partially: #11115