Caused the logo (which is a link to the main page) to become unclickable.
This reverts commit 909aed33cb.
Bug: T171195
Change-Id: I3e215ef493568222bd4c2e0dbffc0da74241673a
Follows-up (r2881, b52a2a1567). Logical backport of Vector
patch Ifb99ff36e3a (T170053).
The logo was given a higher z-index than the content, presumably
with the intent to avoid user-generated content from being able
to obscure the logo. However, setting z-index here is redundant
given #p-logo (in #column-one) is after #column (in #column-content)
which already has `position: relative` and z-index set to give it its
own stacking context that can never exceed its stack (except for
weird things - T40848).
If this z-index was needed, then it would indeed only work if
position is set to relative or absolute. Picking "absolute" in
that case would cause the logo to be taken out of the layout flow,
hence the padding on #column-one.
Remove it all, in favour of natural flow. Keep the 5px distance
by using margin-bottom (160-155=5).
Commit is a visual no-op (pixel-for-pixel identical).
Bug: T170053
Change-Id: I156c54e1dd08a1c848d1c5ec9a5a9c9f85d8680a
There are many valid use cases of the error suppression functions, but
this isn't one of those. If there are some undefined indexes somewhere,
that's a problem that should be fixed properly instead of warnings being
suppressed in one skin.
Change-Id: I88dfd3b9d94774686c168766a56afb5186684a61
After I074688562e4da8c7c32d9f2bae67cd601e9b5f65 in core we no longer
need a custom style here.
Bug: T134515
Change-Id: I923ca72be187497c254132bb73a35d2548981d9d
Show "Not logged in" message left (or right depending on language) of an anon
user's personal tools in case general edit permission is given.
The display of the message was previously done in MW core
(SkinTemplate::buildPersonalUrls, introduced by I6f44e3e5d), which needs to be
reverted first (done in I5cfa9b4e).
Bug: T127758
Depends-on: I5cfa9b4e
Change-Id: I7001e311a8d5ed70129500ab1a3e99369d4a1d9d
Zopfli is the most efficient DEFLATE compression algorithm, trading run-time
performance for file sizes that are typically 3-8% smaller than those produced
by zlib with the maximum compression setting. Its output is Deflate-compatible,
so no specialized decoder is needed.
This change was created by running zopflipng against all the PNG files in this
repository. The exact invocation was:
git ls-files --exclude-per-directory=.gitignore -- '*.png' \|
parallel zopflipng -m -y --iterations=500 --filters=01234mepb {} {} \;
Files which zopflipng was not able to compress more efficiently were left unmodified.
Bug: T127608
Change-Id: I51b959b9d5e18bbc274c876f7e688de12bb2988f
This text no longer shows IPv6 addresses, so no need to override the
text-transform. Also put this text in a WCAG AA-compliant gray colour.
Change-Id: Ic337bfad2c2a818947fc1cbc7b4de5f245dd5a1d