HEX
Server: LiteSpeed
System: Linux s1.hostssdserver.com 4.18.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: dreamlan (1220)
PHP: 8.3.32
Disabled: exec,system,passthru,shell_exec,proc_open,popen,apache_child_terminate
Upload Files
File: /home/dreamlan/public_html/wp-content/plugins/admin-menu-editor/css/force-dashicons.scss
/*
 Forcibly set menu icons to the selected custom Dashicons.

 Problem:
 Some plugins use CSS to assign icons to their admin menu items. Users want to change the icons.
 In many cases, simply changing the icon URL doesn't work because the plugin CSS overrides it.

 Workaround:
 Add more CSS that overrides the icon styles that were set by other plugins.
*/

//Artificially increase selector specificity by repeating the ID.
#adminmenu#adminmenu#adminmenu a.ame-has-custom-dashicon {
	& > .wp-menu-image::before {
		font-family: "dashicons", sans-serif !important;
		font-size: 20px !important;
	}

	//Some plugins set the icon as a background image instead of a pseudo-element.
	& > .wp-menu-image {
		background-image: none !important;
		position: static;
	}
	& > .wp-menu-image::before {
		background-image: none !important;
	}

	@import '_dashicons';
}