Merge "Fix for non-empty a[name] tags in openJdk based javadocs."

This commit is contained in:
Przemyslaw Szczepaniak
2016-10-04 11:35:58 +00:00
committed by Gerrit Code Review
4 changed files with 10 additions and 11 deletions

View File

@@ -4217,7 +4217,7 @@ EndColorStr='#ececec');
}
/* offset the <a name=""> tags to account for sticky nav */
body.reference a[name] {
body.reference a[name]:empty {
visibility: hidden;
display: block;
position: relative;

View File

@@ -3209,7 +3209,7 @@ table.jd-tagtable th {
}
/* offset the <a name=""> tags to account for sticky nav */
body.reference a[name] {
body.reference a[name]:empty {
visibility: hidden;
display: block;
position: relative;

View File

@@ -3822,8 +3822,8 @@ td.gsc-search-button {
display: none;
}
/* offset the <a name=""> tags to account for sticky nav */
body.reference a[name] {
/* offset the empty <a name=""> tags to account for sticky nav */
body.reference a[name]:empty {
visibility: hidden;
display: block;
position: relative;

View File

@@ -3822,15 +3822,14 @@ td.gsc-search-button {
display: none;
}
/* offset the <a name=""> tags to account for sticky nav */
body.reference a[name] {
/* offset the empty <a name=""> tags to account for sticky nav */
body.reference a[name]:empty {
visibility: hidden;
display: block;
position: relative;
top: -56px;
}
/* Quicknav */
.btn-quicknav {
width:20px;