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

Bug 458756

Summary: [css][hover] Provide 'font' hover
Product: [ECD] Orion Reporter: Michael Rennie <Michael_Rennie>
Component: ClientAssignee: Michael Rennie <Michael_Rennie>
Status: RESOLVED FIXED QA Contact:
Severity: enhancement    
Priority: P3    
Version: 8.0   
Target Milestone: 8.0   
Hardware: All   
OS: All   
Whiteboard:

Description Michael Rennie CLA 2015-01-29 11:32:45 EST
While trying to customize fonts, I had a need to simply see what a chosen font would look like:

.pilcrow {
  font: 12px Arial;
  text-decoration: none;
  color: #454545;
  position: absolute;
  top: 3px; left: -20px;
  <snip>
}

A hover would be ideal for this (much like we do for font-family).
Comment 1 Michael Rennie CLA 2015-02-06 10:53:27 EST
It might be nice to also see:

font-size
font-size-adjust
font-stretch
font-style
font-variant
font-weight
Comment 2 Michael Rennie CLA 2015-02-06 10:54:52 EST
And some of the text-* properties would also be nice:

text-decoration
text-decoration-color
text-decoration-line
text-decoration-style
text-indent
text-justify
text-overflow
text-shadow
text-transform
Comment 3 Michael Rennie CLA 2015-02-06 16:13:44 EST
This was fixed as part of the commit: http://git.eclipse.org/c/orion/org.eclipse.orion.client.git/commit/?id=fffbf6d0b60556003388c6823c240ac05f2940fe

The only font-like names I ended up providing hovers for were:

'font', 
'font-size', 
'font-size-adjust', 
'font-stretch', 
'font-style', 
'font-variant', 
'font-weight', 
'text-decoration', 
'text-shadow', 
'text-transform'

I dropped most of the text-* properties because, after checking the official spec, they were not officially supported, even as of CSS3.