Skip to main content
Topic: [1.1.5] /me (Read 2866 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

[1.1.5] /me

Look at the Link.  ;)

Re: [1.1.5] /me

Reply #1

Stop using IE or Edge! xD
What browser BTW?
Bugs creator.
Features destroyer.
Template killer.

Re: [1.1.5] /me

Reply #2

Chrome Version 71.0.3578.98 64-Bit  :P  :D

Re: [1.1.5] /me

Reply #3

I don't think this one is tracked yet for 1.1.6.

Re: [1.1.5] /me

Reply #4

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