Bug 1116799

Summary: Patternfly theme: create child resource popup step 3 has a subtitle shown over the parameters table
Product: [Other] RHQ Project Reporter: Thomas Segismont <tsegismo>
Component: Core UIAssignee: Nobody <nobody>
Status: ON_QA --- QA Contact:
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 4.12CC: hrupp
Target Milestone: ---   
Target Release: RHQ 4.13   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
Screenshot
none
JON3.2 Screenshot none

Description Thomas Segismont 2014-07-07 10:36:38 UTC
Created attachment 916033 [details]
Screenshot

Description of problem:
Create child resource popup step 3 has a subtitle shown over the parameters table

Version-Release number of selected component (if applicable):
4.12-SNAPSHOT

How reproducible:
Always

Steps to Reproduce:
1.Inventory a standalone server
2.Create a new child deployment
3.Follow the wizard to step 3

Actual results:
Subtitle shown over the parameters table

Expected results:
Subtitle shown before the parameters table

Comment 1 Alan Santos 2014-07-08 12:17:45 UTC
Do you have a screenshot of this in a previous version? 

Looking at the code, "Deployment Options" is a translatable message, used as the wizard step name.  That's the first instance of the text in the wizard. 

Below that is the Group Name specified in the plugin xml file.  

If this wasn't present earlier then either the step name or the group name was hidden.  I'm not sure which.

Comment 2 Thomas Segismont 2014-07-08 13:10:30 UTC
Created attachment 916375 [details]
JON3.2 Screenshot

Comment 3 Jirka Kremser 2014-07-08 17:17:58 UTC
branch:  master
link:    https://github.com/rhq-project/rhq/commit/2eb88800a
time:    2014-07-08 19:14:49 +0200
commit:  2eb88800a391e2d4681fc7a747223e4ce0039582
author:  Jirka Kremser - jkremser
message: Patternfly Theme (SmartGWT skin): Colors for buttons that were not part
         of Table component -> moving the ButtonColor enum from Table to
         EnhancedIButton -> auto-organizing imports; fixing BZ 1116799;
         buttons that contained menu don't bounce on FF (on hover)


in particular, this part of commit:

--- a/modules/enterprise/gui/coregui/src/main/webapp/org.rhq.coregui.CoreGUI/sc/skins/CoreGUI/skin_styles.css
+++ b/modules/enterprise/gui/coregui/src/main/webapp/org.rhq.coregui.CoreGUI/sc/skins/CoreGUI/skin_styles.css
@@ -55,6 +55,10 @@ border-color:rgb(207, 207, 207);
     padding-left:0;
 }
 
+.groupLabel {
+    background-color: transparent !important;
+}
+


(I am doing big commits in order to be easily "revertable" if anything goes wrong)