web-brogue icon indicating copy to clipboard operation
web-brogue copied to clipboard

Client Console has vertical lines

Open kipraske opened this issue 10 years ago • 1 comments

I am pretty sure that this has to do with using percentages and CSS rounding. If that is the case we should be able to just convert everything to px. Better that extra lines be on the left or bottom rather than in the middle randomly.

kipraske avatar Jan 17 '15 14:01 kipraske

Unfortunately browsers are weird when it comes to rounding CSS fractional pixels. I had tried to fix this by going to regular pixels and it still does it!

Adding a small extra bit to the width percentage seems to do the trick like this.el.style.width = (this.model.get("widthPercent") + 0.05) + "%"; in console-cell-view.js seems to be promising, but may break the layout in some cases so more testing is needed.

Doesn't seem like this bug is super high priority we can get to it when we get to it.

kipraske avatar Mar 28 '16 15:03 kipraske