Skip to content

Commit

Permalink
Fix/styles (#6554)
Browse files Browse the repository at this point in the history
* fix(package.json): Fix protractor run on grunt dev task.

* feat(styles): Update styles to make them cleaner,
  • Loading branch information
mportuga authored Feb 1, 2018
1 parent 2433db9 commit ccdc72c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions grunt/shell.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module.exports = function() {
var webdriverManagerPath = './node_modules/protractor/bin/webdriver-manager',
var webdriverManagerPath = './node_modules/webdriver-manager/bin/webdriver-manager',
bowerPath = './node_modules/bower/bin/bower';

if (process.platform === 'win32') {
webdriverManagerPath = '.\\node_modules\\protractor\\bin\\webdriver-manager';
webdriverManagerPath = '.\\node_modules\\webdriver-manager\\bin\\webdriver-manager';
bowerPath = '.\\node_modules\\bower\\bin\\bower';
}

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
"semver": "~5.4.1",
"shelljs": "~0.6.0",
"time-grunt": "~1.1.0",
"validate-commit-message": "^3.0.1"
"validate-commit-message": "^3.0.1",
"webdriver-manager": "^11.1.1"
},
"config": {
"commitizen": {
Expand Down
2 changes: 1 addition & 1 deletion src/less/footer.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

.ui-grid-footer-panel-background {
.gradient(@headerBackgroundColor, @headerGradientStart, @headerGradientStop);
background-color: @headerBackgroundColor;
}

@topPanelRadius: @gridBorderRadius - @gridBorderWidth;
Expand Down
2 changes: 1 addition & 1 deletion src/less/header.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

.ui-grid-top-panel-background {
.gradient(@headerBackgroundColor, @headerGradientStart, @headerGradientStop);
background-color: @headerBackgroundColor;
}

@topPanelRadius: @gridBorderRadius - @gridBorderWidth;
Expand Down

0 comments on commit ccdc72c

Please sign in to comment.