Use icinga-blue like background colors for active and hovered table rows
This commit is contained in:
parent
707b954534
commit
8800decc69
|
@ -189,12 +189,11 @@
|
|||
.transition(background 0.2s ease);
|
||||
|
||||
&.active {
|
||||
background-color: @gray-lighter;
|
||||
transition: none;
|
||||
background-color: @tr-active-color;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: @gray-lightest;
|
||||
background-color: @tr-hover-color;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,6 +31,9 @@
|
|||
// Text color on <a>
|
||||
@link-color: @text-color;
|
||||
|
||||
@tr-active-color: #E5F9FF;
|
||||
@tr-hover-color: #F5FDFF;
|
||||
|
||||
// Font families
|
||||
@font-family: Calibri, Helvetica, sans-serif;
|
||||
@font-family-fixed: "Liberation Mono", "Lucida Console", Courier, monospace;
|
||||
|
|
|
@ -171,13 +171,13 @@ a:hover > .icon-cancel {
|
|||
.transition(background 0.2s ease);
|
||||
|
||||
&.active {
|
||||
background-color: @gray-lighter;
|
||||
background-color: @tr-active-color;
|
||||
border-left-color: @icinga-blue;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: @gray-lightest;
|
||||
background-color: @tr-hover-color;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue