.n-table--fill-height
  height 100%
  display flex
  flex-direction column
  .n-table-body
    n-absolute(0,0,0,0)


/** thead resize **/
.n-th-resize
  left unset
  width 3px
  cursor e-resize
  &-bar
    left 1px
    right 1px
    z-index 1
    background-color $primary-color
    &:before
    &:after
      content ''
      position absolute
      top 50%
      margin-top -3px
      border-top 3px solid transparent
      border-bottom @border-top
      border-right 3px solid transparent
      border-left @border-right
    &:before
      right 2px
      border-left none
    &:after
      left 2px
      border-right none

/** thead resize toggle **/
.n-table-column-resize .n-th-resize-bar
  &:before
  &:after
    border-right-color $primary-color
    border-left-color $primary-color

/** thead hover **/
.n-table-column-hover
  background-color tint($primary-color, 90%)
  .n-th-hover-visible
    visibility visible



/** body hover **/

.n-tr.n-table-line-hover
  background-color #B6D4FF
