Skip to content

Commit

Permalink
Remove firefox specific fade text overflow (#3549)
Browse files Browse the repository at this point in the history
* Remove firefox specific fade text overflow

* Added comment
  • Loading branch information
KlapTrap authored and nwmac committed Apr 30, 2019
1 parent e136d5d commit 98ec379
Showing 1 changed file with 16 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,19 @@
// Firefox does not support multi-line text ellipsis
// So fade out the end of the last line in the div
// Firefox only
@media screen and (min--moz-device-pixel-ratio:0) {
.app-multiline-title {
// Fade
&::after {
bottom: 0;
content: '';
height: 1.2em;
position: absolute;
right: 0;
text-align: right;
width: 24px;
}
}
}
// Removed via https://github.com/cloudfoundry-incubator/stratos/issues/3544
// This is no longer fit for purpose.
// @media screen and (min--moz-device-pixel-ratio:0) {
// .app-multiline-title {
// // Fade
// &::after {
// bottom: 0;
// content: '';
// height: 1.2em;
// position: absolute;
// right: 0;
// text-align: right;
// width: 24px;
// }
// }
// }

0 comments on commit 98ec379

Please sign in to comment.