Skip to content

Commit

Permalink
sorting issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
codersaiful committed Feb 22, 2024
1 parent 57e37df commit 0b6d99d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions assets/css/universal.css
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ div.wpt_column_sort table#wpt_table.wpt_product_table tr>th.this_column_sorted {
div.wpt_column_sort table#wpt_table.wpt_product_table tr>th, div.wpt_column_sort table#wpt_table.wpt_product_table tr>th {
position: relative;
}
div.wpt_column_sort table#wpt_table.wpt_product_table tr>th::before,
div.wpt_column_sort table#wpt_table.wpt_product_table tr>th::after{
div.wpt_column_sort table#wpt_table.wpt_product_table>thead>tr>th::before,
div.wpt_column_sort table#wpt_table.wpt_product_table>thead>tr>th::after{

font-family: "wptfontelo";
font-style: normal;
Expand Down Expand Up @@ -382,7 +382,7 @@ div.wpt_column_sort table#wpt_table.wpt_product_table tr>th::after{
transform: translateY(-50%);
}

div.wpt_column_sort table#wpt_table.wpt_product_table tr>th::after{
div.wpt_column_sort table#wpt_table.wpt_product_table>thead>tr>th::after{
content: '\e842';
}
div.wpt_column_sort table#wpt_table.wpt_product_table tr>th.wpt_quantity::before,
Expand All @@ -391,12 +391,12 @@ div.wpt_column_sort table#wpt_table.wpt_product_table tr>th.wpt_quantity::after,
div.wpt_column_sort table#wpt_table.wpt_product_table tr>th.wpt_check::after{
display: none;
}
div.wpt_column_sort table#wpt_table.wpt_product_table tr>th.this_column_sorted[data-sort_type="ASC"]::before{
div.wpt_column_sort table#wpt_table.wpt_product_table>thead>tr>th.this_column_sorted[data-sort_type="ASC"]::before{
content: '\e84d';
opacity: 0.8;
margin-top: -6px;
}
div.wpt_column_sort table#wpt_table.wpt_product_table tr>th.this_column_sorted[data-sort_type="DESC"]::before{
div.wpt_column_sort table#wpt_table.wpt_product_table>thead>tr>th.this_column_sorted[data-sort_type="DESC"]::before{
content: '\e84c';
opacity: 0.8;
margin-top: 6px;
Expand Down

0 comments on commit 0b6d99d

Please sign in to comment.