Rename listing-table to common-table and remove action-table

Further, style for the common-table has been changed. (WIP)

refs #5543
This commit is contained in:
Bernd Erk 2015-11-04 15:12:35 +01:00
parent a613a683c5
commit 0b46f9317e
2 changed files with 25 additions and 11 deletions

View File

@ -97,10 +97,21 @@ table {
border-collapse: separate;
border-spacing: 0 1px;
width: 100%;
line-height: 2em;
margin-top: 2em;
}
thead {
line-height: 2.5em;
}
th {
padding: @vertical-padding / 2 @horizontal-padding / 2;
}
td {
padding: @vertical-padding / 2 @horizontal-padding / 2;
padding: @vertical-padding / 2 @horizontal-padding / 2;
}
[class^="icon-"], [class*=" icon-"] {

View File

@ -125,14 +125,19 @@ dl.name-value-list {
}
}
table.action-table {
tbody tr {
.transition(background-color 0.3s ease);
table.common-table {
border-collapse: collapse;
tr {
border-left: 5px solid rgba(0,0,0,0.5);
border-opacity:0.7;
}
tr[href] {
&.active {
background-color: @gray-lighter;
// Auto-refresh must not start transition
transition: none;
border-left: 5px solid @icinga-blue;
}
&:hover {
@ -140,19 +145,17 @@ table.action-table {
cursor: pointer;
}
}
}
table.listing-table {
border-collapse: collapse;
tbody th {
text-align: left;
}
thead {
color: @text-color-light;
border-bottom: 1px solid @gray-light;
// Reset default font-weight
font-weight: normal;
text-align: left;
}
tr {