Merge "Collection of CSS fixes"

This commit is contained in:
Jenkins
2016-04-15 18:52:54 +00:00
committed by Gerrit Code Review

View File

@@ -54,4 +54,28 @@ div.document {
.operation-grp {
padding-top: 0.5em;
padding-bottom: 1em;
}
}
/* Ensure the method buttons and their links don't split lines when
the page is narrower */
.operation {
/* this moves the link icon into the gutter */
margin-left: -1.25em;
margin-right: 1.25em;
white-space: nowrap;
}
/* These make the links only show up on hover */
a.operation-anchor {
visibility: hidden;
}
.operation-grp:hover a.operation-anchor {
visibility: visible;
}
/* All tables for requests should be full width */
.api-detail table.docutils {
width: 100%;
}