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

       Web browser: ---
            Bug ID: 57327
           Summary: Avoidable line break in the "All notifications" link
                    in the footer
           Product: MediaWiki extensions
           Version: master
          Hardware: All
                OS: All
            Status: NEW
          Severity: minor
          Priority: Unprioritized
         Component: Echo
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected]
    Classification: Unclassified
   Mobile Platform: ---

Created attachment 13855
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=13855&action=edit
Line break in German "All notifications"

The Echo overlay contains a footer with two links: "All notifications" and
"Preferences". In German these links are a little bit longer: "Alle
Benachrichtigungen" and "Einstellungen". Since the footer uses fixed pixel
widths there is an unnecessary line break (see the screenshot).

The solution is very simple. Simply remove these two fixed widths and let the
browser decide how to split the little table (it uses "display: table;" and
therefor is a table) in the footer.

#mw-echo-overlay-footer { 
    width: 100%;  /* add this */
}
#mw-echo-overlay-link { 
    width: 149px; /* remove this */
}
#mw-echo-overlay-pref-link { 
    width: 174px; /* remove this */
}

-- 
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