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

Bug 278239

Summary: [design] Provide visual feedback when mouse is over views close button
Product: [RT] RAP Reporter: Rüdiger Herrmann <ruediger.herrmann>
Component: WorkbenchAssignee: Project Inbox <rap-inbox>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 1.2   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:
Attachments:
Description Flags
images should be placed in img/business
none
Hover behaviour fpr the view's close icon
none
glow Images none

Description Rüdiger Herrmann CLA 2009-05-28 11:34:02 EDT
If one hovers over the views close button, it would be good to have visual feedback as it is usually the case.
Comment 1 Holger Staudacher CLA 2009-06-15 10:59:48 EDT
Created attachment 139176 [details]
images should be placed in img/business
Comment 2 Holger Staudacher CLA 2009-06-15 11:01:35 EDT
Created attachment 139177 [details]
Hover behaviour fpr the view's close icon

To get this patch working you must add the following lines to the theme/business/business.css file:

Button.viewClose {
  background-color: transparent;
  background-image: url( /img/business/stack_tab_active_close_active.png );
  border: none;
  padding: 2px;
}

Button.viewClose:hover {
  background-image: url( /img/business/stack_tab_active_close_active_hover.png );
}

Button.viewCloseInactive {
  background-color: transparent;
  background-image: url( /img/business/stack_tab_inactive_close_active.png );
  border: none;
  padding: 2px;
}

Button.viewCloseInactive:hover {
  background-image: url( /img/business/stack_tab_inactive_close_active_hover.png );
}
Comment 3 Rüdiger Herrmann CLA 2009-06-15 11:59:25 EDT
I would prefer a lighter color when hovering. If the user is that close the an "action", this should be indicated by a stronger and lighter color than the "normal" state.
How about letting the cross glow on hover? Or is there a another color (ligh-blue?) in the color scheme that we can use here?
Comment 4 Holger Staudacher CLA 2009-06-15 12:26:12 EDT
Created attachment 139186 [details]
glow Images

These images provide a glow around the cross.
Comment 5 Rüdiger Herrmann CLA 2009-06-15 12:52:29 EDT
I like the glow version a lot:)
+1 to commit the changes
Comment 6 Holger Staudacher CLA 2009-06-15 13:02:13 EDT
committed.