This repository has been archived by the owner on Dec 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 152
SCSS /deep/ implementation from vue-loader #197
Comments
Insert below this line. // ">>>" combinator
if (n.type === "combinator" && n.value === ">>>") {
n.value = " ";
n.spaces.before = n.spaces.after = "";
return false;
}
// /deep/ alias for >>>, since >>> doesn't work in SASS
if (n.type === "tag" && n.value === "/deep/") {
var next = n.next();
if (next.type === "combinator" && next.value === " ") {
next.remove();
}
return false;
} |
ghost
closed this as completed
Jul 20, 2017
ghost
mentioned this issue
Jul 20, 2017
ghost
reopened this
Jul 24, 2017
ellukesmith
added a commit
to ellukesmith/vueify
that referenced
this issue
Aug 24, 2017
Added fix for deep selectors as mentioned on vuejs#197
Here is a changes to ellukesmith@ac70a80
|
Gormartsen
added a commit
to Gormartsen/vue-visual-markdown-editor
that referenced
this issue
Apr 29, 2018
from here vuejs/vueify#197
5 tasks
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The CSS feature of
/deep/
(SASS) and>>>
which was implemented in v12.2.0 of Vue-loader doesn't seem to be in Vueify. Or have I misunderstood something?The text was updated successfully, but these errors were encountered: