summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--WebContent/META-INF/MANIFEST.MF1
-rw-r--r--WebContent/WEB-INF/web.xml4
-rw-r--r--WebContent/styles/demos.css2
-rw-r--r--WebContent/theme/demo/styles.css3
-rw-r--r--WebContent/theme/example/styles.css (renamed from WebContent/theme/demo/style.css)0
-rw-r--r--WebContent/theme/reservr/styles.css15
6 files changed, 23 insertions, 2 deletions
diff --git a/WebContent/META-INF/MANIFEST.MF b/WebContent/META-INF/MANIFEST.MF
index 5e9495128c..58630c02ef 100644
--- a/WebContent/META-INF/MANIFEST.MF
+++ b/WebContent/META-INF/MANIFEST.MF
@@ -1,3 +1,2 @@
Manifest-Version: 1.0
-Class-Path:
diff --git a/WebContent/WEB-INF/web.xml b/WebContent/WEB-INF/web.xml
index 64940e22eb..1ddc6ac9c4 100644
--- a/WebContent/WEB-INF/web.xml
+++ b/WebContent/WEB-INF/web.xml
@@ -18,6 +18,10 @@
<param-name>application</param-name>
<param-value>com.itmill.toolkit.demo.reservation.ReservationApplication</param-value>
</init-param>
+ <init-param>
+ <param-name>widgetset</param-name>
+ <param-value>com.itmill.toolkit.demo.reservation.gwt.WidgetSet</param-value>
+ </init-param>
</servlet>
<servlet>
diff --git a/WebContent/styles/demos.css b/WebContent/styles/demos.css
index ad029a1cd4..2db0c84898 100644
--- a/WebContent/styles/demos.css
+++ b/WebContent/styles/demos.css
@@ -140,4 +140,4 @@ hr {
width: 15em;
}
.option .desc {
-} \ No newline at end of file
+}
diff --git a/WebContent/theme/demo/styles.css b/WebContent/theme/demo/styles.css
new file mode 100644
index 0000000000..7c846fff61
--- /dev/null
+++ b/WebContent/theme/demo/styles.css
@@ -0,0 +1,3 @@
+button {
+ border: 1px solid red;
+} \ No newline at end of file
diff --git a/WebContent/theme/demo/style.css b/WebContent/theme/example/styles.css
index e69de29bb2..e69de29bb2 100644
--- a/WebContent/theme/demo/style.css
+++ b/WebContent/theme/example/styles.css
diff --git a/WebContent/theme/reservr/styles.css b/WebContent/theme/reservr/styles.css
new file mode 100644
index 0000000000..569fcaf8c6
--- /dev/null
+++ b/WebContent/theme/reservr/styles.css
@@ -0,0 +1,15 @@
+button.important-link {
+ border: 0px;
+ text-align: left;
+ text-decoration: underline;
+ background: none;
+ font-weight: bold;
+}
+button.selected-link {
+ border: 0px;
+ text-align: left;
+ text-decoration: underline;
+ background: #183C6B;
+ font-weight: bold;
+ color: white;
+}