I am using the following css to change background color of navbar dropdown active link.
.navbar .nav > li.dropdown.ope
You should fint the exact class of the dropdown menu. It could be in your nav or not. I changed the active class color of the pagination property of the Bootstrap Theme like this:
ul.dropdown-menu>li.active>a:hover{
background: #419641 !important;
}
ul.dropdown-menu>li.active>a{
background: #51AB51 !important;
}