diff --git a/src/dropdown/index.less b/src/dropdown/index.less index 8e9eb746..78e8c901 100644 --- a/src/dropdown/index.less +++ b/src/dropdown/index.less @@ -226,11 +226,11 @@ } &-disabled { - color: @disabled-color; + color: @disabled-text-color; cursor: not-allowed; &:hover { - color: @disabled-color; + color: @disabled-text-color; background-color: @dropdown-menu-submenu-disabled-bg; cursor: not-allowed; } diff --git a/src/menu/index.less b/src/menu/index.less index b080791e..6f91f74d 100644 --- a/src/menu/index.less +++ b/src/menu/index.less @@ -704,7 +704,7 @@ // Disabled state sets text to gray and nukes hover/tab effects &-item-disabled, &-submenu-disabled { - color: @disabled-color !important; + color: @disabled-text-color !important; background: none; cursor: not-allowed; @@ -713,16 +713,16 @@ } a { - color: @disabled-color !important; + color: @disabled-text-color !important; pointer-events: none; } > .@{menu-prefix-cls}-submenu-title { - color: @disabled-color !important; + color: @disabled-text-color !important; cursor: not-allowed; > .@{menu-prefix-cls}-submenu-arrow { &::before, &::after { - background: @disabled-color !important; + background: @disabled-text-color !important; } } }