Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save @import tag #334

Closed
wants to merge 10 commits into from
Closed

Save @import tag #334

wants to merge 10 commits into from

Commits on Sep 1, 2016

  1. Save @import tag

    It removes @import tag from css.
    Example:
    >>>>-----------
    <style type="text/css">
     @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic');
     @media{ body, table, td, p, a, li, blockquote {-webkit-text-size-adjust:none !important;}  }
    </style>
    ------------->>>>
    <style type="text/css">
     @media{ body, table, td, p, a, li, blockquote {-webkit-text-size-adjust:none !important;}  }
    </style>
    <<<<------------
    frangolet authored Sep 1, 2016
    Configuration menu
    Copy the full SHA
    90d1099 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2016

  1. Update Emogrifier.php

    frangolet authored Sep 5, 2016
    Configuration menu
    Copy the full SHA
    b8eb532 View commit details
    Browse the repository at this point in the history
  2. Update Emogrifier.php

    frangolet authored Sep 5, 2016
    Configuration menu
    Copy the full SHA
    8e7a4d3 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2016

  1. Update Emogrifier.php

    Hi, I did it in different way now. Added two functions, one to extract the imports and one to apply them to a style node. I think this way is more clear. And not messing up with splitCssAndMediaQuery function. Please have a look and let me know what you think. Thank you in advance.
    frangolet authored Sep 9, 2016
    Configuration menu
    Copy the full SHA
    6f13c0d View commit details
    Browse the repository at this point in the history
  2. Update Emogrifier.php

    frangolet authored Sep 9, 2016
    Configuration menu
    Copy the full SHA
    3178fed View commit details
    Browse the repository at this point in the history
  3. Update Emogrifier.php

    frangolet authored Sep 9, 2016
    Configuration menu
    Copy the full SHA
    e444b58 View commit details
    Browse the repository at this point in the history
  4. Update Emogrifier.php

    frangolet authored Sep 9, 2016
    Configuration menu
    Copy the full SHA
    fd11a13 View commit details
    Browse the repository at this point in the history
  5. fix tabs

    Signed-off-by: Alex Frangulev <alex@kwtdesign.co.uk>
    Alex Frangulev committed Sep 9, 2016
    Configuration menu
    Copy the full SHA
    1e88c7a View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2016

  1. fix crlf

    Signed-off-by: Alex Frangulev <alex@kwtdesign.co.uk>
    Alex Frangulev committed Sep 12, 2016
    Configuration menu
    Copy the full SHA
    e85c95a View commit details
    Browse the repository at this point in the history
  2. PHP-CS-Fixer PSR-2

    Signed-off-by: Alex Frangulev <alex@kwtdesign.co.uk>
    Alex Frangulev committed Sep 12, 2016
    Configuration menu
    Copy the full SHA
    43d4fe6 View commit details
    Browse the repository at this point in the history