Revert "buttons: Update focus state"
authorPrtksxna <psaxena@wikimedia.org>
Fri, 3 Oct 2014 21:18:56 +0000 (21:18 +0000)
committerKrinkle <krinklemail@gmail.com>
Fri, 3 Oct 2014 22:12:00 +0000 (22:12 +0000)
This reverts commit 3f4c39e6a945d95c6b47aa1f81dad73d1aad0fc6.

The implementation of the new design specification
is imperfect. Zooming into the element shows that
the borders aren't equal on all sides and there is
a different colored border on the top and bottom.

Change-Id: Ib2428490efa9d7b1d3c3c9ae3a674dcae6317e13

resources/src/mediawiki.less/mediawiki.ui/mixins.less

index d3220cc..ec9888f 100644 (file)
 .button-colors(@bgColor) {
        background: @bgColor;
 
-       &:hover {
+       &:hover,
+       &:focus {
                // 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 {
-               box-shadow:inset 0px 0px 0px 3px rgba(0, 0, 0, 20%);
-//             box-shadow: 0 1px rgba(0, 0, 0, 10%), inset 0 -3px rgba(0, 0, 0, 20%);
                outline: none;
                // remove outline in Firefox
                &::-moz-focus-inner {
                        border-color: transparent;
                }
-
        }
 
        &:active,