Nagaraj4
(Nagaraj RC)
1
Hi
I am using Vaadin 7.5.6 and I want to remove the line which dispaly horizontaly below the tabs.
Here is y css code and the attachment of the resut
.v-tabsheet-tabsheetpanel {
background: blue;
}
.v-tabsheet-tabcontainer-view-tabs {
height: 40px;
background: #7a7677;
}
Thanks
Nagaraj
anezthes
(Joacim Päivärinne)
2
Hey Nagaraj,
This should do it, if you’re using Valo.
.v-tabsheet-tabcontainer:before {
content: none;
}
Nagaraj4
(Nagaraj RC)
3
Ya i am using valo theme and it works fine for me.
Thank you Mr. Joacim Paivarinne.