- small CSS fixes for directory block

This commit is contained in:
ashubawork
2025-04-08 13:55:32 +03:00
parent 1d4d3fa850
commit 4dc4b7497c
3 changed files with 6 additions and 2 deletions
+2
View File
@@ -198,6 +198,7 @@ final class Enqueue extends \um\common\Enqueue {
wp_register_style( 'um_responsive', $css_url . 'um-responsive' . $suffix . '.css', array( 'um_profile' ), UM_VERSION );
wp_register_style( 'um_account', $css_url . 'um-account' . $suffix . '.css', array(), UM_VERSION );
wp_register_style( 'um_default_css', $css_url . 'um-old-default' . $suffix . '.css', array(), UM_VERSION );
wp_register_style( 'um_misc', $css_url . 'um-misc' . $suffix . '.css', array( 'um_styles' ), UM_VERSION );
wp_register_style( 'um_datetime', $libs_url . 'pickadate/default' . $suffix . '.css', array(), '3.6.2' );
wp_register_style( 'um_datetime_date', $libs_url . 'pickadate/default.date' . $suffix . '.css', array( 'um_datetime' ), '3.6.2' );
@@ -209,6 +210,7 @@ final class Enqueue extends \um\common\Enqueue {
wp_enqueue_style( 'um_profile' );
wp_enqueue_style( 'um_responsive' );
wp_enqueue_style( 'um_account' );
wp_enqueue_style( 'um_misc' );
wp_enqueue_style( 'um_datetime_date' );
wp_enqueue_style( 'um_datetime_time' );