カスタム 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;
}