Modify crumbbar style to look like an arrowbar

Also:
  * Change fixed element positioning and fix bugs
  * Move settings dropdown back to the right and add left padding to left sidebar

(imported from commit fcf903b59617687f94618a01ce7544b69f408130)
This commit is contained in:
Allen Rabinovich
2014-01-09 08:58:51 -07:00
parent 29250a6692
commit e7e2f3a79c
7 changed files with 124 additions and 97 deletions

View File

@@ -49,7 +49,9 @@ exports.getLighterColor = function (rgb, lightness) {
};
exports.getHexColor = function (rgb) {
return "#" + parseInt(rgb.r, 10).toString(16) + parseInt(rgb.g, 10).toString(16) + parseInt(rgb.b, 10).toString(16);
return "#" + parseInt(rgb.r, 10).toString(16) +
parseInt(rgb.g, 10).toString(16) +
parseInt(rgb.b, 10).toString(16);
};
return exports;