/*
 * @package   akeebabackup
 * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU General Public License version 3, or later
 */

@use "sass:color";

/**
 * Database tables filters
 */
#ak_databases_container {
  padding: 2px 0 6px 0;
}

#ak_tables_header {
  height: 2em;
}

#ak_tables_container {
  display: block;
  width: 100%;
  position: relative;
}

.table-container {
  background-color: $white;
  height: 2em;
  padding: 2px;
  color: $grey;
  font-weight: normal;
  border-bottom: 1px solid lighten($teal, 10%);

  &:hover {
    background: $light-grey;
  }

  span[class*=akeeba-btn] {
    display: inline-flex !important;
  }

  span.table-icon-container {
    float: left;
    /*cursor: pointer;*/
    left: 2px;
    margin-right: 4px;
  }

  span.table-name {
    padding-left: 4px;
  }

  span.table-rowcount {
    float: right;
    right: 2px;
    color: $green;
  }

  span.table-icon-noclick {
    cursor: default;
  }

  span.table-icon-small {
    margin-right: 0;
  }

  .btn-danger {
    cursor: not-allowed !important;
  }
}