th and td classnames edited for bulkaction

This commit is contained in:
Burak Civan
2022-08-09 15:40:22 +03:00
parent 9572cf5df6
commit 04f75754f4
15 changed files with 31 additions and 25 deletions

View File

@ -62,6 +62,9 @@ class Td extends Component
case 'right':
$default = $class . ' ltr:pl-6 rtl:pr-6 ltr:text-right rtl:text-left ' . $default;
break;
case 'bulkaction':
$default = $class . 'ltr:pr-6 rtl:pl-6 hidden sm:table-cell';
break;
case 'action':
$default = 'p-0';
break;

View File

@ -63,6 +63,9 @@ class Th extends Component
case 'right':
$default = $class . ' ltr:pl-6 rtl:pr-6 ltr:text-right rtl:text-left' . $default;
break;
case 'bulkaction':
$default = $class . 'ltr:pr-6 rtl:pl-6 hidden sm:table-cell';
break;
default:
$default = $class . ' ltr:pr-6 rtl:pl-6 ltr:text-left rtl:text-right ' . $default;
}