diff options
author | Morten Engvoldsen <morten.engvoldsen@nokia.com> | 2009-05-26 12:06:56 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-05-27 02:55:58 (GMT) |
commit | 378d5ac5f5baea4a2e8220c769b80e6116d0a2ad (patch) | |
tree | c4aac42365504a88e1bf92fb22bcf0c10e62b4ba | |
parent | 375ecd0038febc43b7de45005e14e410e6094726 (diff) | |
download | Qt-378d5ac5f5baea4a2e8220c769b80e6116d0a2ad.zip Qt-378d5ac5f5baea4a2e8220c769b80e6116d0a2ad.tar.gz Qt-378d5ac5f5baea4a2e8220c769b80e6116d0a2ad.tar.bz2 |
Correcting bugs in classic.css
Correcting invalid padding values. none is not a valid padding value.
Rev-by: David Boddie
(cherry picked from commit 8a2ca9b0d8ed23cec44e40f61c0f4983fbc55282)
-rw-r--r-- | tools/qdoc3/test/classic.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/qdoc3/test/classic.css b/tools/qdoc3/test/classic.css index 6cf7377..f22a77a 100644 --- a/tools/qdoc3/test/classic.css +++ b/tools/qdoc3/test/classic.css @@ -77,10 +77,10 @@ table.annotated td { table tr pre { - padding-top: none; - padding-bottom: none; - padding-left: none; - padding-right: none; + padding-top: 0px; + padding-bottom: 0px; + padding-left: 0px; + padding-right: 0px; border: none; background: none } |