stylus
                                
                                 stylus copied to clipboard
                                
                                    stylus copied to clipboard
                            
                            
                            
                        [Bug] Applying on all pages when using `@preprocessor stylus`
Bug Report
Bug Description
When using the Stylus preprocessor with nested Media Queries, the styles are applied to all pages.
Screenshots
example.net:
example.com:
CSS Code
/* ==UserStyle==
@name           example.com
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    A new userstyle
@author         Me
@preprocessor   stylus
==/UserStyle== */
@-moz-document domain("example.com") {
        /* Only in example.com */
	h1 {
		border: 3px solid yellow;
	}
	
	@media (min-width: 600px) {
		/* Only in example.com */
		p {
			border: 3px solid blueviolet;
		}
		@media (min-height: 600px) {
			/* Styles above are applied to all pages */
			* {
				border: 3px solid red;
			}
		}
	}
}
System Information
- OS: Windows
- Browser: Firefox 130
- Stylus Version: 1.5.51