2

When using IntelliJ to write a GWT application and testing in hosted mode is there any way to have a CSS change reflected in the execution of the program without having to stop and restart the application? Stopping and restarting is such a slow process it makes one want to use java statements instead of css.

RVDowning
  • 21
  • 1

3 Answers3

6

You can use Run | Update action (Ctrl+F10).

Nik
  • 1,337
  • 7
  • 4
1

I generally use firebug for checking the CSS . I launch the application through intelliJ + firefox and using the firebug modify CSS till i get desired results .

Vijay
  • 371
  • 2
  • 9
0

This helped me in Intellij 13. In the menu choose

> Run
> Edit Configuration
> Select "Update resources on frame deactivation"
Madeline
  • 1,039
  • 2
  • 11
  • 19