Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,33 @@
1
+.fontawesome-icon-list {
2
+  margin-top: 22px;
3
+  .fa-hover {
4
+    a {
5
+      .text-ellipsis;
6
+      display: block;
7
+      color: @gray-darker;
8
+      line-height: 32px;
9
+      height: 32px;
10
+      padding-left: 10px;
11
+      border-radius: @border-radius-base;
12
+
13
+      .fa {
14
+        width: 32px;
15
+        font-size: 14px;
16
+        display: inline-block;
17
+        text-align: right;
18
+        margin-right: 10px;
19
+      }
20
+
21
+      &:hover {
22
+        background-color: @fa-green;
23
+        color: @jumbotron-color;
24
+        text-decoration: none;
25
+        .fa {
26
+          font-size: 28px;
27
+          vertical-align: -6px;
28
+        }
29
+        .text-muted { color: mix(@jumbotron-color, @fa-green, 70%); }
30
+      }
31
+    }
32
+  }
33
+}