From e1a5c20d26e170de94e5070f0aaf2770079545ab Mon Sep 17 00:00:00 2001 From: afc163 Date: Tue, 1 Mar 2016 16:43:16 +0800 Subject: [PATCH] Fix tab nav button disabled style --- style/components/tabs.less | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/style/components/tabs.less b/style/components/tabs.less index 5b9dbdee07..fd16c54d47 100644 --- a/style/components/tabs.less +++ b/style/components/tabs.less @@ -65,6 +65,12 @@ background-color: transparent; position: absolute; text-align: center; + color: #999; + transition: color 0.3s ease; + + &:hover { + color: #666; + } &-icon { position: relative; @@ -87,9 +93,11 @@ } &-tab-btn-disabled { - cursor: default; - color: #ccc; - pointer-events: none; + cursor: not-allowed; + &, + &:hover { + color: #ccc; + } } &-tab-next {