Sha256: 4affc019f76bcac46bebab8b1e8197e3a5c1c1f323b316b80b1b277d7e572855

Contents?: true

Size: 640 Bytes

Versions: 1

Compression:

Stored size: 640 Bytes

Contents

.table-sortable { 
  border-collapse: separate;
  
  th {
    border-bottom: 4px solid transparent;
    cursor: pointer;
    
    &::after {
      content: ' \f0dc';
      font-family: FontAwesome;
      line-height: 1em;
      vertical-align: baseline;
      color: rgba(0, 0, 0, 0.1);
    }
    
    &:hover {
      border-bottom: 4px solid rgba(128, 212, 255, 0.25);
      
      &::after { color: rgba(0, 0, 0, 0.5); }
    }
    
    &.sort-asc, &.sort-desc { border-bottom: 4px solid rgba(128, 212, 255, 0.5); }
    &.sort-asc::after { content: ' \f0de'; color: #333; }
    &.sort-desc::after { content: ' \f0dd'; color: #333; }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
houston-core-0.5.0.beta1 app/assets/stylesheets/application/sortable_table.scss