diff options
| author | ckonstanski <carlos.konstanski@olo.com> | 2024-05-26 09:44:31 -0600 |
|---|---|---|
| committer | ckonstanski <carlos.konstanski@olo.com> | 2024-05-26 09:44:31 -0600 |
| commit | 2e3f60593bc5b065a9b8f27fb93d80f62f5b30f5 (patch) | |
| tree | 862b986a6fa8e8f99288fd866d8e3f37207b166d /lisp | |
| parent | e1618bd69e8439600facdcd84c0dd5c06f90b56e (diff) | |
modal styling
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/service/about-us-service.lisp | 2 | ||||
| -rw-r--r-- | lisp/webapps/woodriverlessons/static/css/stylesheet.css | 4 |
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; +} |
