The iPad Pro is in a width that crosses into desktop widths - 1366px. There are a lot of smaller laptops now that fit the same width as the iPad Pro (the 11 and 13 inch laptops).
On the iPad Pro, I want to show things like a hamburger menu, but on the desktops, I want navigation with mouseovers.
Before the iPad Pro, I could make the cutoff be 1024 px wide, but now there's cross-over.
I need both a media query that includes it (so it shows the mobile landscape view) and one that excludes it (so desktops show only when not ipad Pro).
I think this one includes it properly:
<!-- Put on multiple lines for readability -->
<link rel="stylesheet" media="only screen
and (min-device-width: 1024px)
and (max-device-width: 1366px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 1.5)"
href="/css/desktop.css" />
But I can't figure out how to make a desktop media query that will exclude the iPad Pro and include all desktops from 1024px and larger. Is this possible? What would it be?