Skip to content
Snippets Groups Projects
datatable.component.scss 700 B
Newer Older
  • Learn to ignore specific revisions
  • /**
     * This file is part of Anis Client.
     *
     * @copyright Laboratoire d'Astrophysique de Marseille / CNRS
     *
     * For the full copyright and license information, please view the LICENSE
     * file that was distributed with this source code.
     */
    
     .data-selected {
        cursor: pointer;
    }
    
    .data-selected button:focus {
        box-shadow: none;
    }
    
    ul {
        margin-bottom: 0;
    }
    
    .custom-select {
        width: fit-content;
    }
    
    .clickable:hover {
        cursor: pointer;
        background-color: #F7F7F7;
    }
    
    .unsorted {
        color: #c5c5c5;
    }
    
    .clickable:hover .unsorted, .on-hover, .inactive, .clickable:hover .active {
        display: none;
    }
    
    .clickable:hover .on-hover, .clickable:hover .inactive {
        display: inline;
    }