
/*
 * Copyright (c) 2016 GE Global Research. All rights reserved.
 *
 * The copyright to the computer software herein is the property of
 * GE Global Research. The software may be used and/or copied only
 * with the written permission of GE Global Research or in accordance
 * with the terms and conditions stipulated in the agreement/contract
 * under which the software has been supplied.
 */
@charset "utf-8";
@import "variables";
@import "mixins";
@import 'px-table-view-sketch';

///------------------------------------------------------
@include b ('table-view') {

  border-top: $table-row-border-width $table-row-border-style $table-row-border-color;
  border-bottom: $table-row-border-width $table-row-border-style $table-row-border-color;

  ///------------------------------------------------------
  @include m ('border-bottom') {
    .table-row {
      border-bottom-style: $table-row-border-style;
      border-bottom-width: $table-row-border-width;
      border-bottom-color: $table-row-border-color;
    }
  }

  ///------------------------------------------------------
  ///.table-row--selected
  .table-row--selected {

    background-color: $table-row-selected-background-color;
    color           : $table-row-active-font-color;

    .table-row__body,
    .table-row__label,
    .table-row__label2,
    .table-row__subtitle,
    .table-row__title {
      color: $table-row-active-font-color;
    }

    .table-row:before {
      color: $table-row-active-font-color;
    }
  }
}
