/* vim: set ts=2 sw=2 sts=2 et: */

/**
 * Cache management actions
 *
 * Copyright (c) 2001-present Qualiteam software Ltd. All rights reserved.
 * See https://www.x-cart.com/license-agreement.html for license details.
 */
.db-backup-form {
  .model-form-buttons {
    padding-left: 0px;

    button + button {
      margin-left: 5px;
    }
  }
}

.db-restore-page {
  .make-xs-column(10);

  .db-restore-form {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
  }

  tbody tr {
    td {
      padding: 10px 20px;
      
      @border-color: #e9e9e9;
      border-top: 1px solid @border-color;
      border-bottom: 1px solid @border-color;
    }

    &:first-child td {
      border-top: none;
    }

    &:last-child td {
      border-bottom: none;
    }
  }
  .column-name {
    padding: 7px 12px 7px 18px;

    .action-name {
      font-size: 14px;
      padding: 6px 10px 6px 0px;
    }

    .action-description {
      color: #8f8f8f;
      font-size: 12px;
    }
  }

  .column-action {
    text-align: right;

    .standalone-switch {
      text-align: center;

      .table-label,
      .star {
        display: none;
      }

      .table-value {
        display: block;
      }
    }

    .regular-button {
      min-width: 150px;
      min-height: 35px;
    }
  }
}