Duplicate rules being merged into one
See original GitHub issueThere is an existing issue which seems to be related to my issue but the other one is specifically about the background rule, so I have opened a separate issue incase this needs to be handled differently.
clean-css appears to be removing duplicate CSS rules which are needed.
Take this:
display: -ms-flexbox;
-ms-flex-pack: center;
-ms-flex-align: center;
display: -moz-box;
-moz-box-pack: center;
-moz-box-align: center;
display: -webkit-box;
-webkit-box-pack: center;
-webkit-box-align: center;
display: box;
box-pack: center;
box-align: center;
Which is compressed to (new lines are my own):
-ms-flex-pack:center;
-ms-flex-align:center;
-moz-box-pack:center;
-moz-box-align:center;
-webkit-box-pack:center;
-webkit-box-align:center;
display:box;
box-pack:center;
box-align:center
How can I stop display: -moz-box; and display: -webkit-box; from being removed?
Edit: I should note that this has just started happening since I updated to the latest version, everything was fine before.
Thanks
Issue Analytics
- State:
- Created 10 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
Merge Duplicate Records in Salesforce Lightning
Merging duplicates in Salesforce relies on you setting up duplicate and matching rules, so be sure to do that first!
Read more >Automerge using Duplicate Rules - Lane Four
To set up a duplicate rule, open Matching > Matching Rules in the left hand ... from the merged record or which record...
Read more >Guidelines for Merging Duplicate Accounts - Salesforce Help
Hidden fields aren't shown while you merge. A merged record retains the Created By user and Created Date from the oldest record merged,...
Read more >Merging Unrelated Records in Salesforce Lightning - XTIVIA
This post includes how to merge duplicate and matching records in Salesforce Lightning.
Read more >How to Merge Duplicate Accounts in Salesforce [incl. secret ...
To merge duplicate accounts in Salesforce you first need to have Duplicate Rules activated. This requires admin permissions because you'll be permanently ...
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
Ahhh, this is good to know. I may just jump to 4.0 on all projects. Thanks!
Glad that this helped me fix a similar issue.