mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user