我使用Vaadin 8,并且需要更改工具提示的背景颜色(出现时),因为它似乎不可读...有什么主意吗?
searchPanelBtn = new Button();
searchPanelBtn.setWidth(80, Unit.PIXELS);
searchPanelBtn.setIcon(VaadinIcons.CHEVRON_CIRCLE_LEFT_O);
// below the tooltip to change background color
searchPanelBtn.setDescription("Hide Panel");
最佳答案
您可以尝试在styles.scss中添加此代码
.v-tooltip {
background-color: red !important;
}