From 0571b66de0b20af71b6cf5489b49914ac98560e1 Mon Sep 17 00:00:00 2001 From: Adam Maras Date: Wed, 2 Jul 2014 16:22:15 -0700 Subject: [PATCH] Replace menu inverted active colors (fixes #720) This fix changes the background-color of the :after element for inverted pointing menu items to match the rendered active overlay color of the item. --- src/collections/menu.less | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/collections/menu.less b/src/collections/menu.less index f83a90d71..dd556affa 100755 --- a/src/collections/menu.less +++ b/src/collections/menu.less @@ -1487,42 +1487,42 @@ background-color: #A1CF64; } .ui.inverted.green.pointing.menu .active.item:after { - background-color: #A1CF64; + background-color: #B3D782; } .ui.inverted.red.menu { background-color: #D95C5C; } .ui.inverted.red.pointing.menu .active.item:after { - background-color: #F16883; + background-color: #DF7C7C; } .ui.inverted.blue.menu { background-color: #6ECFF5; } .ui.inverted.blue.pointing.menu .active.item:after { - background-color: #6ECFF5; + background-color: #8AD7F6; } .ui.inverted.purple.menu { background-color: #564F8A; } .ui.inverted.purple.pointing.menu .active.item:after { - background-color: #564F8A; + background-color: #7771A0; } .ui.inverted.orange.menu { background-color: #F05940; } .ui.inverted.orange.pointing.menu .active.item:after { - background-color: #F05940; + background-color: #F27966; } .ui.inverted.teal.menu { background-color: #00B5AD; } .ui.inverted.teal.pointing.menu .active.item:after { - background-color: #00B5AD; + background-color: #33C3BC; }