1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Add all to CSS property list

* lisp/textmodes/css-mode.el (css-property-alist): Add new property
`all` from the CSS Cascading and Inheritance Level 3 module.
This commit is contained in:
Simen Heggestøyl 2022-05-14 12:49:07 +02:00
parent ade35760a5
commit 2214f42202

View file

@ -269,6 +269,10 @@
("resize" "none" "both" "horizontal" "vertical")
("text-overflow" "clip" "ellipsis" string)
;; CSS Cascading and Inheritance Level 3
;; (https://www.w3.org/TR/css-cascade-3/#property-index)
("all")
;; CSS Color Module Level 3
;; (https://www.w3.org/TR/css3-color/#property)
("color" color)