Which class contains bootstraps menu style boot

Sorry to ask this simple question, but I can't figure it out.

What css class is responsible for the folded menu item (not ordinary)?

For a regular menu, I use this style to display a colored frame:

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover,    .navbar-default .navbar-nav>.active>a:focus {
background-color: #232932;  
color:white;
height:80px;
border-top:5px solid #77d757;
padding-top:25px;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
background-color: #232932;  
color:white;
height:80px;
border-top:5px solid #e20017;
padding-top:25px;
}

But I do not want to display this frame on a minimized menu item ...

+4
source share
1 answer

Maybe I'm wrong, but I believe that you are looking for a class inwith a selector navbar-default navbar-collapse.in.

in , , . , : collapsing navbar-collapse.collapsing, . , , .

Bootstrap (in collapsing, ), , , , CSS.

, !

+1

All Articles