@media print triggers extend missing?
See original GitHub issueI found:
@media print {}
.test {
color: red;
}
p {
&:extend(.test);
}
generates:
extend ' .test' has no matches
related:
https://github.com/twbs/bootstrap/issues/15792 http://stackoverflow.com/questions/28450144/bootstrap-bootswatch-theme-with-less-how-to-compile http://stackoverflow.com/questions/28475730/compiling-bootstrap-less-shows-errors-warnings
Issue Analytics
- State:
- Created 9 years ago
- Comments:16 (8 by maintainers)
Top Results From Across the Web
284840 - Printing preview does not display print-only media ...
I am using google font with latin-ext subset. there is no latin-ext character visible before printing, but print css show some more text...
Read more >Modern POS (MPOS) triggers and printing | Dynamics 365
POS extension: Implement the PostSuspendTransactionTrigger trigger to get the receipt data from CRT and send it to the printer for printing.
Read more >A Complete Guide to CSS Media Queries
CSS Media queries are a way to target browser by certain characteristics, features, and user preferences, then apply styles based on those ...
Read more >Media Queries Level 4 - W3C
It extends and supersedes the features defined in Media Queries Level 3. CSS is a language for describing the rendering of structured documents ......
Read more >failed to reload content blocker Error Domain ... - Stack Overflow
isEnabled { print("content blocker extension is enabled") SFContentBlockerManager. ... My ultimate goal is to block the media & popup of ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I had this mistake “extend ’ .clearfix’ has no matches”
less v 2.5.0 on windows/mac
But after some time in bootstrap less (file utilities.less) I found this
.clearfix { .clearfix(); }
Now it works
@romaroid yes extend doesn’t match mixins yet, so it was a valid warning until you added the extra code.