diff options
| author | Simen Heggestøyl | 2017-03-29 19:50:18 +0200 |
|---|---|---|
| committer | Simen Heggestøyl | 2017-03-29 19:52:13 +0200 |
| commit | 7d2d954d6a4554ee1d17b6a04a9f3aead72b6ece (patch) | |
| tree | b421741f56d0535ef5423a84e7e2a858d0525842 | |
| parent | 6967c4f067e31060a72bbab30b0e518dff04310c (diff) | |
| download | emacs-7d2d954d6a4554ee1d17b6a04a9f3aead72b6ece.tar.gz emacs-7d2d954d6a4554ee1d17b6a04a9f3aead72b6ece.zip | |
Add one more CSS pseudo-class
* lisp/textmodes/css-mode.el (css-pseudo-class-ids): Add
`focus-within'.
| -rw-r--r-- | lisp/textmodes/css-mode.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index ff4f793bf6a..b1feca7ca6b 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el | |||
| @@ -44,9 +44,9 @@ | |||
| 44 | 44 | ||
| 45 | (defconst css-pseudo-class-ids | 45 | (defconst css-pseudo-class-ids |
| 46 | '("active" "checked" "default" "disabled" "empty" "enabled" "first" | 46 | '("active" "checked" "default" "disabled" "empty" "enabled" "first" |
| 47 | "first-child" "first-of-type" "focus" "hover" "in-range" | 47 | "first-child" "first-of-type" "focus" "focus-within" "hover" |
| 48 | "indeterminate" "invalid" "lang" "last-child" "last-of-type" | 48 | "in-range" "indeterminate" "invalid" "lang" "last-child" |
| 49 | "left" "link" "not" "nth-child" "nth-last-child" | 49 | "last-of-type" "left" "link" "not" "nth-child" "nth-last-child" |
| 50 | "nth-last-of-type" "nth-of-type" "only-child" "only-of-type" | 50 | "nth-last-of-type" "nth-of-type" "only-child" "only-of-type" |
| 51 | "optional" "out-of-range" "read-only" "read-write" "required" | 51 | "optional" "out-of-range" "read-only" "read-write" "required" |
| 52 | "right" "root" "scope" "target" "valid" "visited") | 52 | "right" "root" "scope" "target" "valid" "visited") |