===Description
I have encountered the issue on both Android (Chrome) and on my desktop computer (Chrome). Since the particular footnote where I encountered it is formatted using a widespread reference template on dewiki, there may also be something wrong with the underlying template.
Steps to reproduce:
1. Go to https://de.m.wikipedia.org/w/index.php?title=Axel_Krau%C3%9Fe&oldid=185986567&mobileaction=toggle_view_mobile
2. Click on footnote [11].
3. Compare the footnote tooltip (not sure how you call it) to the actual footnote 11 at the bottom of the page. Notice that, in the footnote tooltip, the link is in the wrong position entirely. It should actually be at the very beginning of the footnote.
Screenshot (Chrome 72.0.3626.105, Android 8.0.0):
{F28275615}
===Proposed solution
The `<a>` element in the footnote is picking up styling from the drawer header/title element `.drawer.references .cite .text`. If we add the following rules to `.drawer.references .cite .text a` (note there are styles defined at `.drawer.references a` but they are getting overridden), then we achieve the desired result:
```
text-transform: none;
letter-spacing: initial;
font-size: inherit;
color: #6699FF;
float: none;
```
Note, we use #6699FF for links on dark backgrounds, as defined in T169153. Result:
{F28325617}