-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
[Sort] Array is ugly with opacity #11340
Comments
crisbeto
added a commit
to crisbeto/material2
that referenced
this issue
May 27, 2018
Currently we use an rgba color for the table's sorting arrow which ends up looking weird, because the arrow is made up of multiple stacked elements. These changes add some logic that convert the arrow's color into a solid one so the individual pieces can blend into each other. Fixes angular#11340.
josephperrott
pushed a commit
that referenced
this issue
May 30, 2018
Currently we use an rgba color for the table's sorting arrow which ends up looking weird, because the arrow is made up of multiple stacked elements. These changes add some logic that convert the arrow's color into a solid one so the individual pieces can blend into each other. Fixes #11340.
andrewseguin
pushed a commit
that referenced
this issue
Jun 5, 2018
Currently we use an rgba color for the table's sorting arrow which ends up looking weird, because the arrow is made up of multiple stacked elements. These changes add some logic that convert the arrow's color into a solid one so the individual pieces can blend into each other. Fixes #11340.
andrewseguin
pushed a commit
that referenced
this issue
Jun 7, 2018
Currently we use an rgba color for the table's sorting arrow which ends up looking weird, because the arrow is made up of multiple stacked elements. These changes add some logic that convert the arrow's color into a solid one so the individual pieces can blend into each other. Fixes #11340.
tinayuangao
pushed a commit
that referenced
this issue
Jun 20, 2018
Currently we use an rgba color for the table's sorting arrow which ends up looking weird, because the arrow is made up of multiple stacked elements. These changes add some logic that convert the arrow's color into a solid one so the individual pieces can blend into each other. Fixes #11340.
tinayuangao
pushed a commit
that referenced
this issue
Jun 20, 2018
Currently we use an rgba color for the table's sorting arrow which ends up looking weird, because the arrow is made up of multiple stacked elements. These changes add some logic that convert the arrow's color into a solid one so the individual pieces can blend into each other. Fixes #11340.
victoriaaa234
pushed a commit
that referenced
this issue
Jul 25, 2018
Currently we use an rgba color for the table's sorting arrow which ends up looking weird, because the arrow is made up of multiple stacked elements. These changes add some logic that convert the arrow's color into a solid one so the individual pieces can blend into each other. Fixes #11340.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The sort header's color is set as an RGBA value:
rgba(0,0,0,.54)
This causes the arrow's parts to have a transparency applied. Would be better in this case to have a color applied with an opaque value.
https://stackblitz.com/edit/angular-ac6kex?file=app/table-sorting-example.css
The text was updated successfully, but these errors were encountered: