From 291acd27f320de140085347a6c9af0436c36f7f4 Mon Sep 17 00:00:00 2001 From: Graham Fairweather Date: Tue, 16 Jan 2018 10:50:53 +0100 Subject: [PATCH 1/3] Feature: Button tab navigation https://github.com/iview/iview/issues/1647 --- src/styles/mixins/button.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/mixins/button.less b/src/styles/mixins/button.less index b99e852b..e34a1982 100644 --- a/src/styles/mixins/button.less +++ b/src/styles/mixins/button.less @@ -27,8 +27,8 @@ .button-variant(@color; @background; @border) { .button-color(@color; @background; @border); - &:hover - //&:focus + &:hover, + &:focus { .button-color(tint(@color, 20%); tint(@background, 20%); tint(@border, 20%)); } From 8cc60d2249cc43ebf6ef083f0e18145ca8947e29 Mon Sep 17 00:00:00 2001 From: Graham Fairweather Date: Tue, 16 Jan 2018 16:04:16 +0100 Subject: [PATCH 2/3] Use an added style and shadow for the focused element. --- src/components/button/button.vue | 20 +++++++++++++++++--- src/styles/components/button.less | 5 +++++ src/styles/mixins/button.less | 5 +++-- 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/src/components/button/button.vue b/src/components/button/button.vue index 21a0d031..ff859f0d 100644 --- a/src/components/button/button.vue +++ b/src/components/button/button.vue @@ -1,5 +1,11 @@