github.com/manicqin/nomad@v0.9.5/ui/app/styles/components/fs-explorer.scss (about)

     1  .fs-explorer {
     2    width: 100%;
     3  
     4    .table.boxed-section-body.is-full-bleed {
     5      border: 1px solid $grey-blue;
     6    }
     7  
     8    tbody {
     9      a {
    10        text-decoration: none;
    11        color: inherit;
    12  
    13        &:hover {
    14          .name {
    15            text-decoration: underline;
    16          }
    17        }
    18      }
    19    }
    20  
    21    .breadcrumb a,
    22    tbody a {
    23      position: relative;
    24  
    25      // This is adapted from Bulma’s .button.is-loading::after
    26      &.ember-transitioning-in::after {
    27        animation: spinAround 500ms infinite linear;
    28        border: 2px solid $grey-light;
    29        border-radius: 290486px;
    30        border-right-color: transparent;
    31        border-top-color: transparent;
    32        content: '';
    33        display: block;
    34        height: 1em;
    35        width: 1em;
    36        position: absolute;
    37        right: -1.5em;
    38        top: calc(50% - (1em / 2));
    39      }
    40    }
    41  
    42    .breadcrumb {
    43      margin: 0;
    44  
    45      li::before {
    46        color: $grey-light;
    47      }
    48  
    49      a {
    50        padding-top: 0;
    51        padding-bottom: 0;
    52        color: $blue;
    53        opacity: 1;
    54        font-weight: $weight-bold;
    55        text-decoration: none;
    56  
    57        &:hover {
    58          text-decoration: underline;
    59        }
    60  
    61        &.ember-transitioning-in {
    62          margin-right: 1.5em;
    63  
    64          &::after {
    65            right: -1em;
    66          }
    67        }
    68      }
    69  
    70      .is-active a {
    71        color: $black;
    72      }
    73    }
    74  }