Bug 1040615

Summary: Package URL on build page forces the page to go wider than the body of the html page
Product: [Community] Copr Reporter: Ryan Lerch <rlerch>
Component: frontendAssignee: Miroslav Suchý <msuchy>
Status: CLOSED CURRENTRELEASE QA Contact:
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: unspecified   
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-02-06 08:32:06 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Ryan Lerch 2013-12-11 17:25:26 UTC
Description of problem:
The package URL pre is set to not wrap, so longer URLs force the page to go wider than the set body of the html.

this is an easy fix in the CSS,

just change the following rule in copr.css "div.pkg-url-list{}"
from:

"white-space:pre;"

to 

"whitespace:pre-wrap;"

Comment 1 Ryan Lerch 2013-12-11 17:30:06 UTC
sorry, typo.

it should be from:

"white-space:pre;"

to 

"white-space:pre-wrap;"

Comment 2 Miroslav Suchý 2013-12-11 17:43:00 UTC
Hmm, the difference is just subtle as Firefox wraps is only on "/" which makes the last line long anyway.
But yes, it is improvement.
Committed as a3ce565

Thanks for reporting.