Add a tapestry CSS to help define styles related to DateField
Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/f3fdf525 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/f3fdf525 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/f3fdf525 Branch: refs/heads/5.4-js-rewrite Commit: f3fdf5257d1f547750d69c3bb5d0fc51f99189a2 Parents: fac6b5d Author: Howard M. Lewis Ship <[email protected]> Authored: Sun Nov 11 08:08:21 2012 -0800 Committer: Howard M. Lewis Ship <[email protected]> Committed: Sun Nov 11 08:08:29 2012 -0800 ---------------------------------------------------------------------- .../services/javascript/JavaScriptModule.java | 2 ++ .../META-INF/assets/tapestry5/tapestry.css | 5 +++++ 2 files changed, 7 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/f3fdf525/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptModule.java ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptModule.java b/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptModule.java index 5d1694c..6feeacf 100644 --- a/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptModule.java +++ b/tapestry-core/src/main/java/org/apache/tapestry5/services/javascript/JavaScriptModule.java @@ -89,6 +89,8 @@ public class JavaScriptModule add(configuration, StackExtensionType.STYLESHEET, "${tapestry.bootstrap-root}/css/bootstrap.css", + ROOT + "/tapestry.css", + ROOT + "/exception-frame.css", ROOT + "/tapestry-console.css", http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/f3fdf525/tapestry-core/src/main/resources/META-INF/assets/tapestry5/tapestry.css ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/resources/META-INF/assets/tapestry5/tapestry.css b/tapestry-core/src/main/resources/META-INF/assets/tapestry5/tapestry.css new file mode 100644 index 0000000..731d0dd --- /dev/null +++ b/tapestry-core/src/main/resources/META-INF/assets/tapestry5/tapestry.css @@ -0,0 +1,5 @@ +div.t-datefield-popup { + position: absolute; + z-index: 1000; + margin-top: 2px; +} \ No newline at end of file
