blob: 0bb65138a7f6efd0e5ba218a56849bbab38e3dc6 (
plain)
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
|
.disable-hover {
pointer-events: none;
}
.link-item {
list-style-type: none;
padding: 17px 15px;
display: block;
color: #337ab7 !important;
text-align: left;
}
.link-item:hover {
border: 1px solid #ddd;
background-color: #f5f5f5;
}
html.can-touch .link-item:hover{ /* disable hover effect when input is touch */
background-color: #fff;
}
html.can-touch .link-item:active{ /* disable hover effect when input is touch */
background-color: #f5f5f5;
}
.fa {
font-size: 16px;
margin-left: 5px;
margin-right: 10px;
}
|