diff --git a/app/styles/ember-resizable-table.scss b/app/styles/ember-resizable-table.scss deleted file mode 100644 index 2ba1ac8..0000000 --- a/app/styles/ember-resizable-table.scss +++ /dev/null @@ -1,57 +0,0 @@ -$sashDistance: 0px; -$sashWidth: 6px; - -.resizable-table { - border-collapse: collapse; - - &, & > tr, & > tr > td { - padding: 0; - margin: 0; - } -} - -.resizable-table-row { - -} - -.resizable-table-cell { - position: relative; -} - -.resizable-table-cell-sash { - position: absolute; - user-select: none; - z-index: 1000000; - - &.top { - top: -1px; - left: $sashDistance; - right: $sashDistance; - height: $sashWidth; - cursor: row-resize; - } - - &.right { - right: -1px; - top: $sashDistance; - bottom: $sashDistance; - width: $sashWidth; - cursor: col-resize; - } - - &.bottom { - bottom: -1px; - left: $sashDistance; - right: $sashDistance; - height: $sashWidth; - cursor: row-resize; - } - - &.left { - left: -1px; - top: $sashDistance; - bottom: $sashDistance; - width: $sashWidth; - cursor: col-resize; - } -}