Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

BackgroundColorThemeTestUI.java 510B

12345678910111213141516171819
  1. package com.vaadin.tests.components.uitest;
  2. public class BackgroundColorThemeTestUI extends ThemeTestUI {
  3. @Override
  4. protected boolean showAdditionalControlFields() {
  5. return true;
  6. }
  7. @Override
  8. protected Integer getTicketNumber() {
  9. return 11671;
  10. }
  11. @Override
  12. protected String getTestDescription() {
  13. return super.getTestDescription()
  14. + "<br>Read-only styles shouldn't override the transparent background of borderless components.";
  15. }
  16. }