Eliminate duplicate 'gutter' class

This was previously needed when we applied 'editor-colors' to the
line numbers to give them an opaque background in hopes of supporting
sub pixel AA, but that dream is dead for now anyway. This makes the
gutter harder to style, so I'm nixing it.
This commit is contained in:
Nathan Sobo
2014-07-21 14:56:09 -07:00
parent 0ee953fe26
commit ba21f0b0d8

View File

@@ -19,7 +19,7 @@ GutterComponent = React.createClass
{scrollHeight, scrollViewHeight, onMouseDown} = @props
div className: 'gutter', onClick: @onClick, onMouseDown: onMouseDown,
div className: 'gutter line-numbers', ref: 'lineNumbers', style:
div className: 'line-numbers', ref: 'lineNumbers', style:
height: Math.max(scrollHeight, scrollViewHeight)
WebkitTransform: @getTransform()