Skip to content

Commit

Permalink
CSS: Add :hover and .active style for tr on action-table
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 24, 2015
1 parent 21c6886 commit 7fa9310
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions public/css/icinga/main.less
Expand Up @@ -5,8 +5,19 @@
}

.action-table {
tr:hover {
cursor: pointer;
td {
padding: @vertical-padding @horizontal-padding;
}

tr {
&.active {
background-color: @gray-lighter;
}

&:hover {
background-color: @gray-lightest;
cursor: pointer;
}
}
}

Expand All @@ -19,6 +30,6 @@
}

.text-small {
font-size: @font-size-small;
color: @text-color-light;
font-size: @font-size-small;
}

0 comments on commit 7fa9310

Please sign in to comment.