I am currently developing a navigation bar for a website using Bootstrap. There is a main navigation panel, and the second is directly below the first, see Image:

I managed to round the corners of the bottom of the button with simple CSS, but for the top corners, I would like to achieve something like this:

Is there a way to do this in CSS / jQuery or with an additional plugin?
EDIT:
HTML for the button:
<button type="submit" class="btn navbar-btn second-navbar-button">
<span class="mdi mdi-eye second-navbar-icon"></span>
<span class="second-navbar-name"> Overview</span>
</button>
The CSS for the button is as follows
.second-navbar-button {
font-size: 26px;
border: none;
background-color: transparent;
color: #ec9f14;
margin: 0 19px 0 19px;
padding: 0px 8px 0px 8px;
border-top-left-radius: 0px;
border-top-right-radius: 0px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;}
There is a space between the buttons, so manipulating the corners of the adjacent button will not work, afaik.
Greetings
Trammy
source
share