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
| .fontawesome-icon-list {
| margin-top: 22px;
| .fa-hover {
| a {
| .text-ellipsis;
| display: block;
| color: @gray-darker;
| line-height: 32px;
| height: 32px;
| padding-left: 10px;
| border-radius: @border-radius-base;
|
| .fa {
| width: 32px;
| font-size: 14px;
| display: inline-block;
| text-align: right;
| margin-right: 10px;
| }
|
| &:hover {
| background-color: @fa-green;
| color: @jumbotron-color;
| text-decoration: none;
| .fa {
| font-size: 28px;
| vertical-align: -6px;
| }
| .text-muted { color: mix(@jumbotron-color, @fa-green, 70%); }
| }
| }
| }
| }
|
|