Hi is there a way to not allow text selection on tabs for GWT TabLayoutPanel (and other gwt widgets)?
I tried to use css like:
.gwt-TabLayoutPanel {
user-select: none;
}
.gwt-TabLayoutPanel .gwt-TabLayoutPanelTabs {
user-select: none;
}
.gwt-TabLayoutPanel .gwt-TabLayoutPanelContent {
user-select: none;
}
.gwt-TabLayoutPanel .gwt-TabLayoutPanelTab {
user-select: none;
}
.gwt-TabLayoutPanel .gwt-TabLayoutPanelTab-selected {
user-select: none;
}
Thanks!