summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/service/about-us-service.lisp2
-rw-r--r--lisp/webapps/woodriverlessons/static/css/stylesheet.css4
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/service/about-us-service.lisp b/lisp/service/about-us-service.lisp
index 693ea5f..3ae7c87 100644
--- a/lisp/service/about-us-service.lisp
+++ b/lisp/service/about-us-service.lisp
@@ -48,7 +48,7 @@
(setf (form instance) (make-form "about-us-modify-form"
nil
nil
- `((:name "txt-content" :field-type "textarea" :value ,(content about-us))
+ `((:label "Content" :name "txt-content" :field-type "textarea" :value ,(content about-us) :required "required")
(:label "Modify" :field-type "button" :onclick "on_about_us_modify_submit_clicked()"))))))))
(defun about-us-modify-submit-json (content)
diff --git a/lisp/webapps/woodriverlessons/static/css/stylesheet.css b/lisp/webapps/woodriverlessons/static/css/stylesheet.css
index 48ba0b6..ce50d96 100644
--- a/lisp/webapps/woodriverlessons/static/css/stylesheet.css
+++ b/lisp/webapps/woodriverlessons/static/css/stylesheet.css
@@ -51,3 +51,7 @@ p {
text-align: center;
line-height: 0.4;
}
+
+.modal-content {
+ background-color: #2c180d;
+}