Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* 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;
}