ElkArte Community

Elk Development => Bug Reports => Exterminated Bugs => Topic started by: Jorin on January 10, 2019, 03:51:11 am

Title: [1.1.5] /me
Post by: Jorin on January 10, 2019, 03:51:11 am
Look at the Link.  ;)
Title: Re: [1.1.5] /me
Post by: emanuele on January 10, 2019, 03:17:32 pm
Stop using IE or Edge! xD
What browser BTW?
Title: Re: [1.1.5] /me
Post by: Jorin on January 11, 2019, 01:18:26 am
Chrome Version 71.0.3578.98 64-Bit  :P  :D
Title: Re: [1.1.5] /me
Post by: ahrasis on March 27, 2019, 10:01:09 am
I don't think this one is tracked yet for 1.1.6.
Title: Re: [1.1.5] /me
Post by: Spuds on April 01, 2019, 03:23:46 pm
I believe this can be fixed (links inside of a me) without messing up other things by change the a.bbc_link from vertical-align: top to bottom.

So in index.css find:
Code: (find) [Select]
/* Shorten url's inside posts. */
a.bbc_link {
display: inline-block;
overflow: hidden;
max-width: 100%;
vertical-align: top;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}
and replace with
Code: (replace) [Select]
/* Shorten url's inside posts. */
a.bbc_link {
display: inline-block;
overflow: hidden;
max-width: 100%;
vertical-align: bottom;
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
}

tracked https://github.com/elkarte/Elkarte/issues/3295