Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Locked History Actions

GWT/CSS

CSS

最も簡単なオリジナルCSSの指定方法

適当なcssファイルを作成し(ここではstyle.css)、以下のようなリソースファイルを作成する。

public interface Resources extends ClientBundle {  
  public static final Resources INSTANCE =  GWT.create(Resources.class);
  
  @Source("style.css")
  @CssResource.NotStrict
  CssResource css();
}

EntryPointで以下のように指定する。

public class Something implements EntryPoint {

  @Override
  public void onModuleLoad() {    
    Resources.INSTANCE.css().ensureInjected(); 
    
    ......
  }
}