Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 648073b

Browse files
author
Aaron Leung
committed
Finishing up interpolated namespaced properties.
1 parent 3f5a8ab commit 648073b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

node_emitters.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -737,13 +737,13 @@ namespace Sass {
737737
buf << new_prefix;
738738
if (rules[i][0].to_string() != "") buf << '-';
739739
if (!compressed) {
740-
buf << "[hey]";
741740
rules[i][0].emit_nested_css(buf, depth);
742-
buf << "[colon]";
741+
if (rules[i][0].type() == identifier_schema) buf << ": ";
743742
rules[i][1].emit_nested_css(buf, depth);
744743
}
745744
else {
746745
rules[i][0].emit_compressed_css(buf);
746+
if (rules[i][0].type() == identifier_schema) buf << ": ";
747747
rules[i][1].emit_compressed_css(buf);
748748
}
749749
buf << ';';

0 commit comments

Comments
 (0)