https://bugzilla.wikimedia.org/show_bug.cgi?id=23902

[email protected] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |[email protected]
         Resolution|FIXED                       |

--- Comment #2 from [email protected] 2010-07-07 01:41:32 UTC ---
I'm sorry to say that Guandalug is not entirely right. The bug was indeed made
worse by stuff in [[de:MediaWiki:Common.css]] (in that it became visible even
without https), but is present on any wiki that is on a https server.

What's going on is really weird. The links inside the buttons initially have
href attributes with a relative URL (e.g.
href="/wikipedia/de/w/index.php?title=Spezial:Suche&fulltext=Suche&ns0=1&redirs=0").
When they are clicked, they become absolute (e.g.
href="https://secure.wikimedia.org/wikipedia/de/w/index.php?title=Spezial:Suche&fulltext=Suche&ns0=1&redirs=0&search=";).
And now the skins try to add neat icons next to them and mess around with the
padding, because the href attributes suddenly match rules like (from vector):

#content a[href ^="https://";],
.link-https {
    background: url(images/lock-icon.png?2) center right no-repeat;
    padding: 0 13px 0 0;
}

The easy CSS fix is to not let them do this (I'll implement this in
[[de:MediaWiki:Common.css]] and attach a patch). But I wonder why the URLs have
to become absolute at all.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to