-
Notifications
You must be signed in to change notification settings - Fork 13
What's new in the version 3.0.0
Less (sometimes stylized as LESS) is a dynamic style sheet language that can be compiled into Cascading Style Sheets (CSS) and run on the client side or server side. LESS is basically fully compatible with CSS. You can see documention here
Because of new less format, and performance considerations, Edit page changed back to one editor. The styles you installed will be converted to new less format automatically.
CSSLint is not work well with less, so we use stylelint to replace it
Now you can use exlude("regular expression")
to exclude some sites or pages, for example, the following codes will apply to http://example.com/*
but will not apply to http://example.com/not/
:
@-moz-document regexp("^http://example.com/(.*)$"), exclude("^http://example.com/not/(.*)") {
/* Some css codes here */
}
-
Issue #44 and #43
-
USO not work well on Chrome
-
Fixed some interface bugs
-
Other bugs
Less(或写作LESS)是一种由Alexis Sellier设计的动态层叠样式表语言,且对CSS基本兼容,在这里可以查看文档
因为新的less格式需要,加上考虑到太多编辑器会影响性能,编辑页面改回单一编辑器。已安装的样式会被自动转换为新的less格式。
CSSLint与Less不能很好的兼容,所以我们使用stylelint替代它
现在你可以使用exlude("正则表达式")
来排除一些网页, 例如,下面的代码将会应用到http://example.com/*
但不会应用到http://example.com/not/
:
@-moz-document regexp("^http://example.com/(.*)$"), exclude("^http://example.com/not/(.*)") {
/* Some css codes here */
}
-
Issue #44 and #43
-
Chrome下USO有时会无法使用
-
修复一些界面BUG
-
其他BUG修复