2

我想将 CSS 转换为如下所示的 SCSS:

.top {
  margin-top: 1em;
  margin-bottom: 1em;
  nav {
    background: #333;
  }
  ul {
    padding: 0;
    display: table-row;
  }
  li {
    display: table-cell;
  }
}

相反,我得到了这个:

.top {
  margin-top: 1em;
  margin-bottom: 1em;
  nav {
    background: #333; }
  ul {
    padding: 0;
    display: table-row; }
  li {
    display: table-cell; } }

如何更改命令中的输出缩进:

sass-convert public/stylesheets/application.css public/stylesheets/application.scss

谢谢!

4

3 回答 3

1

根据文档(并在命令行上检查“sass-convert -h”),从 css 到 scss(或 sass)时,无法更改输出样式。

于 2010-07-07T04:04:13.927 回答
1

我遇到了同样的问题,所以我使用以下 Python 进行一些后处理并将生成的输出修复为:expanded 输出样式

import sys
    import re

path = sys.argv[1]

scss = open(path).read()

# Fix up the indentation of closing braces to use a :expanded rather than :nested style.
scss = re.sub(r'\t(\t*)([^\}\n]*;) (\}.*)', r'\t\1\2\n\1\3', scss)
for i in range(0, 10):
    # This line is executed multiple times to fix up multiple closing braces on a single line.
    scss = re.sub(r'\t(\t*)\};? \}', r'\t\1}\n\1}', scss)

open(path, 'w').write(scss)
于 2011-01-11T22:34:55.497 回答
0

您可以使用此工具http://css2sass.heroku.com/执行此操作

我用它来将 CSS 转换为 SCSS

于 2012-03-21T06:02:09.673 回答