Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#61872 - {bugtracker} Move the links back inside title bar
Attached to Project:
Arch Linux
Opened by Franklin Yu (FranklinYu) - Wednesday, 27 February 2019, 02:01 GMT
Last edited by Jelle van der Waa (jelly) - Wednesday, 24 April 2019, 21:01 GMT
Opened by Franklin Yu (FranklinYu) - Wednesday, 27 February 2019, 02:01 GMT
Last edited by Jelle van der Waa (jelly) - Wednesday, 24 April 2019, 21:01 GMT
|
DetailsIn “task view” page such as https://bugs.archlinux.org/task/24999, the link “Tasklist” link (sometimes 3 links) in title bar extends out of its parent element. Affected element: `#navigation` but I think `#taskdetails` is the one to fix.
https://git.archlinux.org/vhosts/bugs.archlinux.org.git/tree/themes/ArchLinux/theme.css#n592 https://git.archlinux.org/vhosts/bugs.archlinux.org.git/tree/themes/ArchLinux/arch.css#n73 After I disable these two rules, the link looks better. Can provide patch if anyone can confirm. |
This task depends upon
So just add
div#taskdetails { position:relative; }
and change the right: of span#navigation to a value you find ok.
For smaller screen sizes add to arch.css:
@media screen and (max-width:600px) {
span#navigation {position:static;display:block;text-align:right;}
}
so that nav does not overlap with task title text.
peterdd