github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/ui/src/views/statements/statementsTable.module.styl (about)

     1  // Copyright 2020 The Cockroach Authors.
     2  //
     3  // Use of this software is governed by the Business Source License
     4  // included in the file licenses/BSL.txt.
     5  //
     6  // As of the Change Date specified in that file, in accordance with
     7  // the Business Source License, use of this software will be governed
     8  // by the Apache License, Version 2.0, included in the file
     9  // licenses/APL.txt.
    10  
    11  @require '~styl/base/palette.styl'
    12  @require '~src/components/core/index'
    13  
    14  .cl-table-link__description
    15    font-size $font-size--small
    16    line-height 22px
    17    color $colors--neutral-1
    18    white-space pre-wrap
    19    margin-bottom 0
    20  
    21  .cl-table-link__statement-tooltip--fixed-width
    22    max-width max-content
    23    :global(.ant-tooltip-content)
    24      max-width 500px
    25  
    26  .statements-table__col-time
    27    white-space nowrap
    28  
    29  .statements-table__col-count--bar-chart
    30    width 100px
    31  
    32  .statements-table__col-retries--bar-chart
    33    width 80px
    34  
    35  .numeric-stats-table
    36    .bar-chart
    37      width 200px
    38  
    39  .statements-table__col-rows, .statements-table__col-latency
    40    &--bar-chart
    41      min-width 150px
    42  
    43  .statements-table__col-count, .statements-table__col-retries, .statements-table__col-rows
    44    &--bar-chart
    45      margin-left 0
    46  
    47      &__label
    48        left 0
    49        width 40px
    50        min-width 40px
    51  
    52  .cl-table__col-query-text a
    53    font-family RobotoMono-Medium
    54    font-size 12px
    55    line-height 1.83
    56    color $adminui-grey-1
    57    width 400px
    58    text-decoration none
    59    cursor pointer
    60    &:hover
    61      color $colors--primary-blue-3
    62      text-decoration underline