You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some comments in my source, dev notes about the original source of some font files. The presence of these comments are somehow leading to the parentheses for the url directives being removed.
// fonts.scss@font-face {
font-family: 'My Font';
font-style: normal;
font-weight: 300;
src: local('My Font'), local('My-Font'),
/* from http://.... original source of .eot */url('my-font.eot?#iefix') format('embedded-opentype'),
/* from http://.... original source of .woff */url('my-font.woff') format('woff'),
/* from http://.... original source of .ttf */url('my-font.ttf') format('truetype'),
/* from http://.... original source of .svg */url('my-font.svg#MyFont') format('svg');
}
I have some comments in my source, dev notes about the original source of some font files. The presence of these comments are somehow leading to the parentheses for the
url
directives being removed.Compiles to:
Version dump:
I'm not certain whether it's allowed to intersperse comments within values like this, but I had no problems with Ruby SASS.
The text was updated successfully, but these errors were encountered: