为什么我不能将自定义 CSS 样式应用于单个 TextBox?
我正在尝试在单个 TextBox 上设置一些错误样式。以下实现有什么问题?
在里面:
static final String STYLES = ErrorRes.INSTANCE.css().style();
@UiField TextBox box;
box.setStylePrimaryName(STYLES);
资源接口
interface ErrorRes extends ClientBundle {
static final ErrorRes INSTANCE = GWT.create(ErrorRes.class);
@Source("Error.css")
Style css();
interface Style extends CssResource {
@ClassName("gwt-TextBox-error")
String style();
}
}
错误.css
.gwt-TextBox-error {
border: 1px solid red !important;
}