]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix indentation bug in multi-line CSS selectors
authorSimen Heggestøyl <simenheg@gmail.com>
Fri, 13 Oct 2017 19:48:12 +0000 (21:48 +0200)
committerSimen Heggestøyl <simenheg@gmail.com>
Fri, 13 Oct 2017 19:57:52 +0000 (21:57 +0200)
* lisp/textmodes/css-mode.el (css--colon-inside-selector-p): Fix
indentation of multi-line CSS selectors that include both a
pseudo-class and parenthesis.

* test/manual/indent/css-mode.css: Add test for the above change.

lisp/textmodes/css-mode.el
test/manual/indent/css-mode.css

index 9022ab7c3fbe9ec3b38f83926b0042890c17c5b2..39885c10860222434bc783f31d27a9b7eacbd632 100644 (file)
@@ -1149,7 +1149,7 @@ This function is intended to be good enough to help SMIE during
 tokenization, but should not be regarded as a reliable function
 for determining whether point is within a selector."
   (save-excursion
-    (re-search-forward "[{};)]" nil t)
+    (re-search-forward "[{};]" nil t)
     (eq (char-before) ?\{)))
 
 (defun css--colon-inside-funcall ()
index bf612b53a14b01323d99f2aa012cc973f9b9bf19..640418b022d74611fcb67172cced0808d4d6f293 100644 (file)
@@ -66,6 +66,16 @@ div::before {
     );
 }
 
+/* Multi-line selector including both a pseudo-class and
+   parenthesis. */
+.form-group:not(.required) label,
+.birth-date .row > * {
+    &::after {
+        display: inline;
+        font-weight: normal;
+    }
+}
+
 @font-face {
     src: url("Sans-Regular.eot") format("eot"),
          url("Sans-Regular.woff") format("woff"),