css: no shadows on Dashboard, use blue bg/border

This commit is contained in:
Thomas Gelf 2017-07-20 22:52:35 +02:00
parent 5b97e477b4
commit bf65f668a7
1 changed files with 4 additions and 12 deletions

View File

@ -578,7 +578,7 @@ ul.main-actions {
color: @color-pending;
}
border: 1px solid transparent;
border-left: 0.5em solid transparent;
padding: 1em;
color: #666;
font-weight: bold;
@ -590,27 +590,19 @@ ul.main-actions {
&.active {
color: inherit;
background-color: @gray-lightest;
-webkit-box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,0.25);
-moz-box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,0.25);
box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,0.25);
border-color: @icinga-blue;
background-color: @tr-active-color;
}
&:hover {
background-color: #666;
color: white;
text-decoration: none;
-webkit-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.35);
-moz-box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.35);
box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.35);
}
&:active, &:focus {
background-color: inherit;
color: inherit;
-webkit-box-shadow: inset 1px 1px 2px 1px rgba(0,0,0,0.25);
-moz-box-shadow: inset 1px 1px 2px 1px rgba(0,0,0,0.25);
box-shadow: inset 1px 1px 2px 1px rgba(0,0,0,0.25);
background-color: @tr-hover-color;
outline: none;
}
}