caxy / php-htmldiff

A library for comparing two HTML files/snippets and highlighting the differences using simple HTML. Includes support for comparing complex lists and tables
http://php-htmldiff.caxy.com
GNU General Public License v2.0
202 stars 51 forks source link

Diff styling for the demo #45

Closed maliayas closed 8 years ago

maliayas commented 8 years ago

I suggest adding a red/green styling for the demo diffs. Below is a fancy one:

ins {
    color: #333333;
    background-color: #eaffea;

    text-decoration: none;
}
del {
    color: #AA3333;
    background-color: #ffeaea;

    text-decoration: line-through;
}
jschroed91 commented 8 years ago

This was added in #47 :) Thank you @maliayas !!

maliayas commented 8 years ago

Thanks!