JavaFX/Classes/css/user/SubMenuStyleSheet.java

32 lines
972 B
Java
Raw Normal View History

package Classes.css.user;
import Classes.css.core.Context;
import Classes.css.core.Ruleset;
import javafx.scene.Node;
public class SubMenuStyleSheet{
/* Builds all necessary CSS/layout rules */
public SubMenuStyleSheet(Node target) throws Exception{
/* (1) Set rules */
2017-12-12 07:58:26 +00:00
// Ruleset.load(target)
// .add("top", Context.getInt("header-height"))
// .add("left", Context.getInt("menu-width")-3)
// .add("bottom", 0)
//
// .add("min-width", Context.getInt("submenu-width"))
// .add("max-width", Context.getInt("submenu-width"))
//
// .add("min-height", Context.getInt("screen-height") - Context.getInt("header-height"))
// .add("max-height", Context.getInt("screen-height") - Context.getInt("header-height"))
//
// .add("pref-width", Context.getInt("submenu-width"))
// .add("pref-height", Context.getInt("screen-height") - Context.getInt("header-height"))
2017-12-12 07:58:26 +00:00
// .add("background-color", Context.getString("submenu-bg"))
// .apply();
}
}