Merge "mw.ui: button: Update focus state"

This commit is contained in:
jenkins-bot 2015-03-10 18:25:42 +00:00 committed by Gerrit Code Review
commit ca3ac3dfb8

View file

@ -36,11 +36,16 @@
.button-colors(@bgColor) {
background: @bgColor;
&:hover,
&:focus {
&:hover {
// The inner bottom bevel should match the active background color.
box-shadow: 0 1px rgba(0, 0, 0, 10%), inset 0 -3px rgba(0, 0, 0, 20%);
border-bottom-color: mix(#000, @bgColor, 20%);
}
&:focus {
border-color: rgba(0,0,0,0.2);
box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
outline: none;
// remove outline in Firefox
&::-moz-focus-inner {