Merge pull request #2270 from thelounge/xpaw/mask-image

Replace pseudo element gradient fade with mask-image
This commit is contained in:
Pavel Djundik 2018-03-29 21:29:54 +03:00 committed by GitHub
commit 2e964d0a7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 43 deletions

View file

@ -644,14 +644,10 @@ kbd {
margin-right: 5px;
}
#sidebar .chan .name::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 20px;
background: linear-gradient(to right, rgba(69, 81, 100, 0) 0%, rgba(69, 81, 100, 1) 100%);
content: " ";
#windows .header .topic,
#sidebar .chan .name {
-webkit-mask-image: linear-gradient(to left, transparent, black 20px);
mask-image: linear-gradient(to left, transparent, black 20px);
}
#sidebar .badge,
@ -916,9 +912,7 @@ kbd {
margin-left: 8px;
word-break: break-all;
flex-grow: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 14px;
}
@ -2216,22 +2210,11 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */
@media (min-width: 480px) {
/* Fade out for long usernames */
#chat .from {
padding-left: 10px;
-webkit-mask-image: linear-gradient(to left, transparent, black 10px);
mask-image: linear-gradient(to left, transparent, black 10px);
}
#chat .from::after {
position: absolute;
right: 0;
bottom: 0;
width: 10px;
height: 100%;
background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
content: " ";
}
/* End fade out for long usernames */
}
@media (max-width: 768px) {
@ -2515,6 +2498,7 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */
/* Correctly handle multiple successive whitespace characters.
For example: user has quit ( ===> L O L <=== ) */
#windows .header .topic,
#chat .message .text,
#chat .motd .text,
#chat .notice .text,

View file

@ -68,10 +68,6 @@ a:hover,
color: #00ff0e;
}
#sidebar .chan .name::after {
background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
#sidebar button,
#sidebar .chan,
#chat .time,

View file

@ -250,9 +250,3 @@ kbd {
}
/* End form elements */
@media (min-width: 480px) {
#chat .from::after {
background: linear-gradient(to right, rgba(51, 60, 74, 0.5) 0%, rgba(51, 60, 74, 1) 100%);
}
}

View file

@ -54,10 +54,6 @@ body {
background: #2b2b2b;
}
#sidebar .chan .name::after {
background: linear-gradient(to right, rgba(43, 43, 43, 0) 0%, rgba(43, 43, 43, 1) 100%);
}
#footer {
background: #333;
border-top: 1px solid #000;
@ -277,9 +273,3 @@ kbd {
}
/* End form elements */
@media (min-width: 480px) {
#chat .from::after {
background: linear-gradient(to right, rgba(63, 63, 63, 0.5) 0%, rgba(63, 63, 63, 1) 100%);
}
}