This commit is contained in:
Corey McKrill 2019-09-27 17:41:19 -07:00
parent 1db9ec9203
commit 697a4b2329
No known key found for this signature in database
GPG key ID: C2C0746F7BF17E38
12 changed files with 943 additions and 0 deletions

View file

@ -0,0 +1,21 @@
/* copy homepage styles except those trendy fixed bg images */
.fftf-sorting-indicator {
visibility: hidden;
}
.fftf-sorted-ascending .fftf-sorting-indicator,
.fftf-sorted-descending .fftf-sorting-indicator,
.fftf-companies th:hover .fftf-sorting-indicator {
visibility: visible;
font: normal 20px/1 dashicons;
}
.fftf-sorting-indicator::before,
.fftf-sorted-ascending .fftf-sorting-indicator::before {
content: "\f142";
}
.fftf-sorted-descending .fftf-sorting-indicator::before {
content: "\f140";
}