Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 292865

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

Description Ivan Furnadjiev CLA 2009-10-21 04:35:43 EDT
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;
}
Comment 1 Holger Staudacher CLA 2009-10-21 09:18:07 EDT
Fixed with solution for bug 292852.