CSS: Add dl.name-value-list

refs #5543
This commit is contained in:
Eric Lippmann 2015-10-01 00:56:38 +02:00
parent b137c4f5b8
commit b6ac7f0dee

View File

@ -4,19 +4,6 @@
color: @icinga-blue; color: @icinga-blue;
} }
.action-table {
tbody tr {
&.active {
background-color: @gray-lighter;
}
&:hover {
background-color: @gray-lightest;
cursor: pointer;
}
}
}
.big-icon { .big-icon {
font-size: 28px; font-size: 28px;
} }
@ -43,19 +30,6 @@
width: 28px; width: 28px;
} }
.name-value-table {
border-spacing: @vertical-padding 0;
line-height: @line-height;
th {
.text-left();
.text-small();
// Reset default font-weight
font-weight: normal;
width: 120px;
}
}
.primary-nav { .primary-nav {
a { a {
font-weight: normal; font-weight: normal;
@ -132,6 +106,30 @@ dl.feed-list {
} }
} }
dl.name-value-list {
dd {
// Reset default margin
margin: 0;
}
dt {
.text-small();
}
}
table.action-table {
tbody tr {
&.active {
background-color: @gray-lighter;
}
&:hover {
background-color: @gray-lightest;
cursor: pointer;
}
}
}
table.listing-table { table.listing-table {
border-collapse: collapse; border-collapse: collapse;
@ -153,3 +151,16 @@ table.listing-table {
} }
} }
} }
.name-value-table {
border-spacing: @vertical-padding 0;
line-height: @line-height;
th {
.text-left();
.text-small();
// Reset default font-weight
font-weight: normal;
width: 120px;
}
}