diff --git a/dist/public/scripts/app.js b/dist/public/scripts/app.js index bac88d7a..5cf7f6e5 100644 --- a/dist/public/scripts/app.js +++ b/dist/public/scripts/app.js @@ -31613,7 +31613,6 @@ var SearchBox = React.createClass({displayName: "SearchBox", }); - module.exports = SearchBox; diff --git a/dist/public/stylesheets/style.css b/dist/public/stylesheets/style.css index d52dc175..71883834 100644 --- a/dist/public/stylesheets/style.css +++ b/dist/public/stylesheets/style.css @@ -646,16 +646,16 @@ body { padding: 15px 30px; width: 100%; } .filter-bar__item--search .textbox::-webkit-input-placeholder { - color: #252327; + color: #38353b; font-style: italic; } .filter-bar__item--search .textbox::-moz-placeholder { - color: #252327; + color: #38353b; font-style: italic; } .filter-bar__item--search .textbox:-ms-input-placeholder { - color: #252327; + color: #38353b; font-style: italic; } .filter-bar__item--search .textbox::placeholder { - color: #252327; + color: #38353b; font-style: italic; } .action-bar { diff --git a/dist/routes/index.js b/dist/routes/index.js index ecca96a5..b271e89c 100644 --- a/dist/routes/index.js +++ b/dist/routes/index.js @@ -3,7 +3,7 @@ var router = express.Router(); /* GET home page. */ router.get('/', function(req, res, next) { - res.render('index', { title: 'Express' }); + res.render('index', { title: 'Flood' }); }); module.exports = router; diff --git a/source/sass/tools/_colors.scss b/source/sass/tools/_colors.scss index bba6c717..2b15647f 100644 --- a/source/sass/tools/_colors.scss +++ b/source/sass/tools/_colors.scss @@ -21,7 +21,7 @@ $client-stats--tertiary: #363337; $search-torrents--background: #161316; $search-torrents--foreground: #625e66; -$search-torrents--placeholder: #252327; +$search-torrents--placeholder: #38353b; $status-filter--active--foreground: #fff; diff --git a/source/scripts/components/filter-bar/SearchBox.js b/source/scripts/components/filter-bar/SearchBox.js index 84184d9a..7c84d1ea 100644 --- a/source/scripts/components/filter-bar/SearchBox.js +++ b/source/scripts/components/filter-bar/SearchBox.js @@ -13,5 +13,4 @@ var SearchBox = React.createClass({ }); - module.exports = SearchBox;