From: Juriy Zaytsev Date: Mon, 8 Feb 2010 16:33:34 +0000 (-0500) Subject: Fix UI to fit smaller screens better. Add a couple more todo items. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=60692ccd9323add125e2f3cbb114644b77c00b32;p=html-minifier.git Fix UI to fit smaller screens better. Add a couple more todo items. --- diff --git a/index.html b/index.html index f05e356..9b1dbe4 100644 --- a/index.html +++ b/index.html @@ -28,8 +28,8 @@ @@ -57,10 +57,8 @@
  • -
  • @@ -68,7 +66,9 @@
  • @@ -85,11 +85,13 @@ diff --git a/master.css b/master.css index 2bce1ec..38b0d46 100644 --- a/master.css +++ b/master.css @@ -18,4 +18,5 @@ button { font-weight: bold; width: 100px; } .success { color: green; } .failure { color: red; } -.quiet { font-size: 0.85em; color: #888; } \ No newline at end of file +.quiet { font-size: 0.85em; color: #888; } +.short { display: inline-block; width: 20em; margin-top: 0.25em; } \ No newline at end of file diff --git a/tests/index.html b/tests/index.html index 2799d16..d142071 100644 --- a/tests/index.html +++ b/tests/index.html @@ -65,10 +65,10 @@ }); test('empty attributes', function(){ - var input = '

    x

    '; + var input = '

    x

    '; equals(minify(input, { shouldRemoveEmptyAttributes: true }), '

    x

    '); - input = '

    x

    '; equals(minify(input, { shouldRemoveEmptyAttributes: true }), '

    x

    ');