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

Bug 405433

Summary: [DateTime][Calendar] CSS-Attributes are partially applied
Product: [RT] RAP Reporter: Heiner Napp <h.napp>
Component: RWTAssignee: Project Inbox <rap-inbox>
Status: RESOLVED INVALID QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:
Attachments:
Description Flags
Screenshot none

Description Heiner Napp CLA 2013-04-11 03:44:36 EDT
Created attachment 229592 [details]
Screenshot

When setting the following Attributes: 

DateTime.pflicht{
   background-color: #FFFECE;
}

The Calendar-Dates of the month before and after the current month are drawn with the background-color FFFECE.
Comment 1 Ivan Furnadjiev CLA 2013-04-16 04:40:52 EDT
There is a specific CSS element to style the current month day:
DateTime-Calendar-Day {
  background-color: #FFFECE;
}
I will close it as INVALID. Please reopen if you disagree.
Comment 2 Ivan Furnadjiev CLA 2013-04-16 05:46:08 EDT
Just a note: setting background-color of DateTime-Calendar-Day to transparent should work too:
DateTime.pflicht{
  background-color: #FFFECE;
}
DateTime-Calendar-Day {
  background-color: transparent;
}