/**
 * Snippets list table
 * @author Webcraftic <wordpress.webraftic@gmail.com> 
 * @copyright Webcraftic 02.06.2018
 */

.wp-list-table {
  & th {
    &#title {
      width: 20% !important;
    }
    &#status {
      width: 60px !important;
    }
    &#actions {
      width: 100px !important;
    }
    &#where_use {
      width: 200px !important;
    }
    &#taxonomy-wbcr-snippet-tags {
      width: 150px;
    }
  }
  & td {
    vertical-align: middle !important;
    &.column-status {
      //text-align: center;
    }
  }

  .wbcr-inp-status-marker {
    display: inline-block;
    border-radius: 100%;
    width: 10px;
    height: 10px;

    &.wbcr-inp-status-green {
      background: #8bc34a;
    }
    &.wbcr-inp-status-grey {
      background: #c0c0c0;
    }
  }
}

