(min, max)
| 28595 | var ScreenWidthMaxXXLarge = ScreenWidthMinXXXLarge - 1; |
| 28596 | var ScreenWidthMinUhfMobile = 768; |
| 28597 | function getScreenSelector(min, max) { |
| 28598 | var minSelector = typeof min === "number" ? " and (min-width: " + min + "px)" : ""; |
| 28599 | var maxSelector = typeof max === "number" ? " and (max-width: " + max + "px)" : ""; |
| 28600 | return "@media only screen" + minSelector + maxSelector; |
| 28601 | } |
| 28602 | function getHighContrastNoAdjustStyle() { |
| 28603 | return { |
| 28604 | forcedColorAdjust: "none", |
nothing calls this directly
no outgoing calls
no test coverage detected