Merge branch '3.1' into 5.2
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / ui / fontAwesome.scss
1 .fontAwesomeIcons {
2 border: 1px solid $wcfContentBorderInner;
3 max-height: 540px;
4 overflow: auto;
5
6 @media only screen and (min-height: 700px) and (max-height: 800px) {
7 max-height: 450px;
8 }
9
10 > li {
11 display: inline-flex;
12 flex-wrap: wrap;
13 justify-content: center;
14 padding: 10px 0;
15 width: 150px;
16
17 &:hover {
18 background-color: $wcfButtonBackgroundActive;
19 color: $wcfButtonTextActive;
20 cursor: pointer;
21
22 > .icon,
23 > small {
24 color: inherit;
25 cursor: pointer;
26 }
27 }
28
29 > small {
30 color: $wcfContentDimmedText;
31 flex: 0 0 100%;
32 text-align: center;
33 }
34 }
35 }