44 lines
889 B
CSS
44 lines
889 B
CSS
/* SportsPress */
|
|
|
|
/* Data Tables */
|
|
.sp-data-table thead .sorting,
|
|
.sp-data-table thead .sorting_asc,
|
|
.sp-data-table thead .sorting_desc,
|
|
.sp-data-table thead .sorting_asc_disabled,
|
|
.sp-data-table thead .sorting_desc_disabled {
|
|
cursor: pointer;
|
|
}
|
|
.sp-data-table .sorting:after,
|
|
.sp-data-table .sorting_asc:after,
|
|
.sp-data-table .sorting_desc:after {
|
|
font-family: dashicons;
|
|
}
|
|
.sp-data-table .sorting:after {
|
|
content: "\f156";
|
|
color: transparent;
|
|
position: absolute;
|
|
}
|
|
.sp-data-table .sorting_asc:after {
|
|
content: "\f142";
|
|
position: absolute;
|
|
}
|
|
.sp-data-table .sorting_desc:after {
|
|
content: "\f140";
|
|
position: absolute;
|
|
}
|
|
.sp-data-table .data-number.sorting_asc {
|
|
cursor: default;
|
|
}
|
|
.sp-data-table .data-number:after {
|
|
content: "";
|
|
}
|
|
.sp-data-table .data-name .logo {
|
|
vertical-align: middle;
|
|
height: 2.5em;
|
|
width: auto;
|
|
}
|
|
|
|
/* Google Maps */
|
|
.sp-google-map {
|
|
height: 320px;
|
|
} |