When MP6 was a plugin in WordPress 3.6+ it changes the body class of the admin and added an “admin-mp6” class which helps me to style my plugin accordingly.
Now with the latest Alpha of WordPress 3.8 the class was removed. I know since it’s an alpha version the class may come back but I wonder if there are any official “best practices”
While it’s not specific to MP6 (I am not following its development) and its CSS, to me your question sounds like “how to check that WP version is equal to greater than one some feature was introduced in?”.
So I would just examine content of $wp_version
global. If it’s 3.8 feature then anything with fitting version has it.
Also from quick look at body
classes in admin there is branch-3-7
class, which makes possible to target branch-3-8
(however cannot be targeted conditionally as anything >=3.8 since that’s not something CSS does).