diff --git a/dist/client/ui/action_logger.js b/dist/client/ui/action_logger.js index 52e2e2750dc..45040063d42 100644 --- a/dist/client/ui/action_logger.js +++ b/dist/client/ui/action_logger.js @@ -38,7 +38,7 @@ var preStyle = { border: '1px solid #ECECEC', borderRadius: 4, backgroundColor: '#FFF', - margin: '0', + margin: 0, position: 'absolute', top: '30px', right: 0, @@ -64,8 +64,8 @@ var btnStyle = { }; var latestActionLogStyle = { - backgroundColor: 'oldlace', - transition: 'all .5s ease-in' + backgroundColor: '#FFFCE0', + transition: 'all .2s ease-in' }; var ActionLogger = function (_Component) { @@ -85,7 +85,7 @@ var ActionLogger = function (_Component) { this.refs.actionLogger.style.backgroundColor = latestActionLogStyle.backgroundColor; setTimeout(function () { _this2.refs.actionLogger.style.backgroundColor = 'white'; - }, 800); + }, 500); } } }, { diff --git a/dist/server/webpack.config.js b/dist/server/webpack.config.js index 146b0e674ae..34fccbfd45a 100644 --- a/dist/server/webpack.config.js +++ b/dist/server/webpack.config.js @@ -15,7 +15,7 @@ var _webpack2 = _interopRequireDefault(_webpack); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } var config = { - devtool: 'cheap-module-eval-source-map', + devtool: '#cheap-module-eval-source-map', entry: { admin: ['stack-source-map/register', _path2.default.resolve(__dirname, '../client/init_admin')], preview: ['stack-source-map/register', 'webpack-hot-middleware/client', _path2.default.resolve(__dirname, '../client/init_preview')] diff --git a/src/client/ui/action_logger.js b/src/client/ui/action_logger.js index c67431e6a88..62ecb61fdf9 100644 --- a/src/client/ui/action_logger.js +++ b/src/client/ui/action_logger.js @@ -37,8 +37,8 @@ const btnStyle = { }; const latestActionLogStyle = { - backgroundColor: 'oldlace', - transition: 'all .5s ease-in', + backgroundColor: '#FFFCE0', + transition: 'all .2s ease-in', }; class ActionLogger extends Component { @@ -47,7 +47,7 @@ class ActionLogger extends Component { this.refs.actionLogger.style.backgroundColor = latestActionLogStyle.backgroundColor; setTimeout(() => { this.refs.actionLogger.style.backgroundColor = 'white'; - }, 800); + }, 500); } }