audit-log.scss 1.69 KB
/**
 * Copyright © 2016-2017 The Thingsboard Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

.tb-audit-logs {
  background-color: #fff;
  .tb-audit-log-margin-18px {
    margin-bottom: 18px;
  }
  .tb-audit-log-toolbar {
    font-size: 20px;
  }
  md-input-container.tb-audit-log-search-input {
    .md-errors-spacer {
      min-height: 0px;
    }
  }
}

.tb-audit-log-container {
  overflow-x: auto;
}



md-list.tb-audit-log-table {
  padding: 0px;
  min-width: 700px;
  &.tb-audit-log-table-full {
    min-width: 900px;
  }

  md-list-item {
    padding: 0px;
  }

  .tb-row {
    height: 48px;
    padding: 0px;
    overflow: hidden;
  }

  .tb-row:hover {
    background-color: #EEEEEE;
  }

  .tb-header:hover {
    background: none;
  }

  .tb-header {
    .tb-cell {
      color: rgba(0,0,0,.54);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
      background: none;
    }
  }

  .tb-cell {
    padding: 0 24px;
    margin: auto 0;
    color: rgba(0,0,0,.87);
    font-size: 13px;
    vertical-align: middle;
    text-align: left;
    overflow: hidden;
    .md-button {
      padding: 0;
      margin: 0;
    }
  }

  .tb-cell.tb-number {
    text-align: right;
  }

}