Skip to content

Commit

Permalink
HV-892 Adding css fix for misaligned tabs
Browse files Browse the repository at this point in the history
Adding jboss-logging-annotations as dependecy to avoid javadoc generation errors
  • Loading branch information
hferentschik committed Mar 17, 2015
1 parent ab29d16 commit 850eb92
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
4 changes: 4 additions & 0 deletions distribution/pom.xml
Expand Up @@ -40,6 +40,10 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator-annotation-processor</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-annotations</artifactId>
</dependency>

<dependency>
<groupId>javax.el</groupId>
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Expand Up @@ -133,6 +133,11 @@
<artifactId>jboss-logging-processor</artifactId>
<version>1.2.0.Final</version>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-annotations</artifactId>
<version>1.2.0.Final</version>
</dependency>
<!-- Not going to upgrade to org.glassfish:javax.el:3.0.0 for now, since it is only Java 7 compatible -->
<dependency>
<groupId>javax.el</groupId>
Expand Down
12 changes: 12 additions & 0 deletions src/main/javadoc/stylesheet.css
Expand Up @@ -530,3 +530,15 @@ a:link, td.colFirst strong a:active, td.colFirst strong a:visited, td.colFirst s
td.colLast strong a:active, td.colLast strong a:visited, td.colLast strong a:hover {
font-weight: bold;
}

/*Method Summary style fix (HV-892)*/
.contentContainer ul.blockList li.blockList .memberSummary caption span{
padding:0;
height: 25px;
}

.memberSummary caption span:first-child:nth-last-child(2),
.memberSummary caption span:first-child:nth-last-child(2) ~ span {
padding: 6px 0 0 9px !important;
height: 18px !important;
}

0 comments on commit 850eb92

Please sign in to comment.