我试图在一个 css 中获取 {} 中变量不少的所有属性
到目前为止,我的 RegExp 是这样的:
\s*[a-zA-Z-]*:[^@].*?;
示例文本
@footerBackground: @Color1;
@footerText: @Color3;
footer { background:@footerBackground url(images/bg.transp.fabric-45degreee_fabric.png) repeat; box-shadow:0 -1px 3px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(0, 0, 0, 0.1); bottom:0; color:@footerText; position:absolute; width:100%; }
footer a { color:@footerLink !important; }
footer a:hover { color:darken(@footerLink, 15%) !important; text-decoration:none; }
#footer-widgets { border-bottom:1px darken(@footerBackground,10%) dotted; padding:20px 0; }
谁能告诉我我该怎么做这个表达?
例子
discart if have @ - color:darken(@tuningfooterLink, 15%) !important;
get - text-decoration:none;