diff --git a/special.lisp b/special.lisp index 8cf2c81..e02e1a4 100644 --- a/special.lisp +++ b/special.lisp @@ -223,7 +223,7 @@ is used as a fallback." (:default (property) (make-property property (format NIL "~{~a~^ ~}" (mapcar #'resolve args))))) -(define-browser-property box-shadow (x y &optional blur spread color) +(define-browser-property box-shadow (inset x y &optional blur spread color) (:default (property) - (make-property property (format NIL "~a ~a~@[ ~a~]~@[ ~a~]~@[ ~a~]" - (resolve x) (resolve y) (resolve blur) (resolve spread) (resolve color))))) + (make-property property (format NIL "~a ~a ~a~@[ ~a~]~@[ ~a~]~@[ ~a~]" + (resolve inset) (resolve x) (resolve y) (resolve blur) (resolve spread) (resolve color)))))