| Summary: | [design][business][fancy] Text widget has a default rounded border if no BORDER style is specified | ||
|---|---|---|---|
| Product: | [RT] RAP | Reporter: | Ivan Furnadjiev <ivan> |
| Component: | RWT | Assignee: | Project Inbox <rap-inbox> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 1.3 | ||
| Target Milestone: | 1.3 M3 | ||
| Hardware: | PC | ||
| OS: | All | ||
| Whiteboard: | |||
| Bug Depends on: | |||
| Bug Blocks: | 292852 | ||
Fixed with solution for bug 292852. |
In business.css a rounded border is specified for the Text widget: Text { border: 1px solid #a4a4a4; border-radius: 2px 2px 2px 2px; color: #464a4e; } This makes wizards (title) and Section (description) that use Text to look strange. The solution is to specify this border if BORDER style is set only. Text { color: #464a4e; } Text[BORDER] { border: 1px solid #a4a4a4; border-radius: 2px 2px 2px 2px; }