hover: bg-color for hover
This commit is contained in:
parent
1b08ab7c47
commit
52b93d12e9
3 changed files with 6 additions and 3 deletions
|
@ -109,7 +109,7 @@
|
||||||
} // li
|
} // li
|
||||||
|
|
||||||
a {
|
a {
|
||||||
transition: @transition color, @transition border-color;
|
transition: @transition color, @transition background-color, @transition border-color;
|
||||||
|
|
||||||
&[aria-expanded="false"] + #plugin__qc__wrapper {
|
&[aria-expanded="false"] + #plugin__qc__wrapper {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -118,6 +118,7 @@
|
||||||
&:hover,
|
&:hover,
|
||||||
&:active,
|
&:active,
|
||||||
&:focus {
|
&:focus {
|
||||||
|
background-color: @button_color;
|
||||||
border-color: @button_background;
|
border-color: @button_background;
|
||||||
color: @button_background;
|
color: @button_background;
|
||||||
|
|
||||||
|
|
|
@ -105,11 +105,12 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: @transition color, @transition border-color;
|
transition: @transition color, @transition background-color, @transition border-color;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:active,
|
&:active,
|
||||||
&:focus {
|
&:focus {
|
||||||
|
background-color: @button_color;
|
||||||
border-color: @button_background;
|
border-color: @button_background;
|
||||||
//-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
|
//-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
|
||||||
//box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
|
//box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
|
||||||
|
|
|
@ -41,11 +41,12 @@
|
||||||
color: @color-nav;
|
color: @color-nav;
|
||||||
margin-left: -(@icon-size);
|
margin-left: -(@icon-size);
|
||||||
padding: 0;
|
padding: 0;
|
||||||
transition: @transition color, @transition border-color;
|
transition: @transition color, @transition background-color, @transition border-color;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:active {
|
&:active {
|
||||||
|
background-color: @button_color;
|
||||||
border: solid 1px @button_background;
|
border: solid 1px @button_background;
|
||||||
color: @button_background;
|
color: @button_background;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue