Bug 1044851

Summary: Visual problems in Hardware Sample notice
Product: Red Hat Certification Program Reporter: Damian Jansen <djansen>
Component: Certification Workflow EngineAssignee: Kun Yan <kyan>
Status: CLOSED NEXTRELEASE QA Contact: Suprith Gangawar <sgangawa>
Severity: medium Docs Contact:
Priority: unspecified    
Version: 1.0CC: hwcert-catalog, kyan, pmao
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: 2015-07-22 09:30:33 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 Damian Jansen 2013-12-19 05:55:31 UTC
Description of problem:
- The text is broken in the middle of words
- Extra <td /> to the right of the notice

The style.css has a td entry with word-break:break-all, which is not appropriate for blocks of text.
It appears in code that a <td/> was used instead of a </td>, so another table cell is created.

Version-Release number of selected component (if applicable):
dev

Steps to Reproduce:
1. Click Create, fill in data, click Continue
2. Find the Hardware Sample section

Actual results:
There's an extra <td/> to the right of the notice, and the text is broken in the middle of words

Expected results:
Properly formatted text

Additional info:
Use something like

.txt--nobreak{word-break:normal;word-wrap:break-word}
and
<td class=".txt--nobreak">Red Hat requires a representative sample...</td>