github.com/rohankumardubey/aresdb@v0.0.2-0.20190517170215-e54e3ca06b9c/api/ui/debug/css/batch.css (about)

     1  /*  Copyright (c) 2017-2018 Uber Technologies, Inc. */
     2  /* */
     3  /* Licensed under the Apache License, Version 2.0 (the "License"); */
     4  /* you may not use this file except in compliance with the License. */
     5  /* You may obtain a copy of the License at */
     6  /* */
     7  /*     http://www.apache.org/licenses/LICENSE-2.0 */
     8  /* */
     9  /* Unless required by applicable law or agreed to in writing, software */
    10  /* distributed under the License is distributed on an "AS IS" BASIS, */
    11  /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */
    12  /* See the License for the specific language governing permissions and */
    13  /* limitations under the License. */
    14  
    15  table, th, td {
    16      border-collapse: collapse;
    17      text-align: left;
    18      vertical-align: top;
    19  }
    20  
    21  input, select {
    22      width: 150px;
    23      height: 25px;
    24  }
    25  
    26  .medium-button {
    27      color: blue;
    28      width: 80px;
    29      height: 25px;
    30  }
    31  
    32  .small-input {
    33      width: 80px;
    34      height: 15px;
    35      padding: 3px;
    36  }
    37  
    38  .hover-table tr:hover {
    39      background-color: lightblue;
    40      cursor: pointer;
    41  }
    42  
    43  .data-table {
    44      border: solid 1px;
    45  }
    46  
    47  #batch-table-body {
    48      color: blue;
    49  }
    50  
    51  .data-column {
    52      border: solid 1px;
    53  }
    54  
    55  .deleted-column {
    56      background-color: #ff6060;
    57  }
    58  
    59  .pagination a {
    60      color: blue;
    61      float: left;
    62      padding: 8px 16px;
    63      text-decoration: none;
    64      transition: background-color .3s;
    65  }
    66  
    67  .pagination a.active {
    68      background-color: #4CAF50;
    69      color: blue;
    70  }
    71  
    72  .pagination a:hover:not(.active) {
    73      background-color: lightblue;
    74  }
    75  
    76  td.short-value-column:hover {
    77      background-color: lightblue;
    78      cursor: pointer;
    79  }
    80  
    81  .highlight {
    82      background: #FFFF00;
    83  }