css: style links and pre in tables

This commit is contained in:
Thomas Gelf 2016-03-18 20:44:20 +01:00
parent 813d930166
commit b96b0470b0
1 changed files with 22 additions and 5 deletions

View File

@ -1,15 +1,32 @@
/* normalize 2.0 bs */
.content a { .content a {
font-weight: normal; color: @icinga-blue;
text-decoration: dotted underline; &:hover {
text-decoration: underline;
}
} }
h1 { h1 {
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
table.common-table a { table.common-table {
a {
color: inherit;
text-decoration: none; text-decoration: none;
}
td {
vertical-align: top;
}
pre {
margin: 0;
padding: 0.2em;
overflow: hidden;
max-height: 12em;
background: @gray-lightest;
display: inline-block;
}
} }
span.disabled { span.disabled {