css-font-lock-keywords
css-font-lock-keywords is a variable defined in `
css-mode.el
'.
Its value is shown
below.
- This variable may be risky if used as a file-local variable.
Documentation:
Not documented as a variable.
Value:
(("!\\s-*\\(?:important\\)"
(0 font-lock-builtin-face))
("@\\(?:[-[:alnum:]]\\|\\\\\\(?:[^ -]\\|[0-9a-fA-F]+[ \n
\f]?\\)\\)+"
(0 font-lock-builtin-face))
("^[ ]*\\([^@/:{} \n][^:{}]+\\(?::\\(a\\(?:ctive\\|fter\\)\\|before\\|f\\(?:irst\\(?:-\\(?:child\\|l\\(?:etter\\|ine\\)\\)\\)?\\|ocus\\)\\|hover\\|l\\(?:ang\\|eft\\|ink\\)\\|right\\|visited\\)\\(?:([^)]+)\\)?[^:{}\n]*\\)*\\)\\(?:\n[ ]*\\)*{"
(1 'css-selector keep))
("^[ ]*{"
(0
(save-excursion
(goto-char
(match-beginning 0))
(skip-chars-backward " \n ")
(put-text-property
(point)
(match-end 0)
'font-lock-multiline t)
nil)))
("\\(?:[{;]\\|^\\)[ ]*\\(\\(?:\\([-_]\\(?:khtml\\|m\\(?:oz\\|s\\)\\|o\\|webkit\\)-\\)\\|\\(?:[[:alpha:]]\\|\\\\\\(?:[^ -]\\|[0-9a-fA-F]+[ \n
\f]?\\)\\)\\)\\(?:[-[:alnum:]]\\|\\\\\\(?:[^ -]\\|[0-9a-fA-F]+[ \n
\f]?\\)\\)*\\)\\s-*:"
(1
(if
(match-end 2)
'css-proprietary-property 'css-property))))