-
Notifications
You must be signed in to change notification settings - Fork 712
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Sass instead of Less #2141
Use Sass instead of Less #2141
Conversation
looks fine to me |
1296c84
to
fdf90a0
Compare
"html-webpack-plugin": "2.24.1", | ||
"http-proxy-rules": "1.0.1", | ||
"immutable-devtools": "0.0.7", | ||
"jest-cli": "17.0.3", | ||
"json-loader": "0.5.4", | ||
"less": "2.7.1", | ||
"less-loader": "2.2.3", | ||
"node-sass": "^3.13.1", |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
"postcss-loader": "1.2.0", | ||
"react-addons-perf": "15.4.1", | ||
"redux-devtools": "3.3.1", | ||
"redux-devtools-dock-monitor": "1.1.1", | ||
"redux-devtools-log-monitor": "1.1.1", | ||
"sass-loader": "^4.1.1", |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
}, | ||
{ | ||
test: /\.(scss|css)$/, | ||
loader: 'style-loader!css-loader!sass-loader' |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
Works well. Small issues:
|
#2138? I am guessing this PR was branched prior to the fix. |
a9d6b1a
to
cb48627
Compare
cb48627
to
ee69f77
Compare
@davkal updated with the matched-text styles fixed, xterm warning suppressed, and post-css added back in. |
Ping @davkal please review after my changes. |
@body-background-color: linear-gradient(30deg, @background-color 0%, @background-lighter-color 100%); | ||
@label-background-color: fade(@background-average-color, 70%); | ||
$body-background-color: linear-gradient(30deg, $background-color 0%, $background-lighter-color 100%); | ||
$label-background-color: fade-out($background-average-color, .7); |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
color: @text-tertiary-color; | ||
background-color: fade(@background-average-color, 90%); | ||
color: $text-tertiary-color; | ||
background-color: fade-out($background-average-color, .9); |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
} | ||
|
||
} | ||
|
||
.search-item { | ||
background-color: fade(@weave-blue, 20%); | ||
border-radius: @border-radius / 2; | ||
background-color: fade-out($weave-blue, .2); |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
LGTM! |
ee69f77
to
50b84fe
Compare
Needed for #2133
Changes the Less files to Sass. We are standardizing around Sass on other projects.
@davkal and @bowenli Please review, specifically for styling regressions.