diff options
author | Daniel Molkentin <daniel.molkentin@nokia.com> | 2012-04-25 15:03:06 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-04-26 11:05:14 (GMT) |
commit | 30e7b56061ecd73c4afdc5382837129eba08831f (patch) | |
tree | 222e29256543a984f1ce19d6833119eefc5cc590 | |
parent | 0a0567098f6407cbec4dbad64f85455bb5eb150a (diff) | |
download | Qt-30e7b56061ecd73c4afdc5382837129eba08831f.zip Qt-30e7b56061ecd73c4afdc5382837129eba08831f.tar.gz Qt-30e7b56061ecd73c4afdc5382837129eba08831f.tar.bz2 |
doc: use hooks introduced to qdoc for correct prev/next disambiguation.
Change-Id: I076839b146e2c3f92c884fc932f0ace54d5b3545
Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
-rw-r--r-- | doc/src/template/style/offline.css | 4 | ||||
-rw-r--r-- | doc/src/template/style/style.css | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/doc/src/template/style/offline.css b/doc/src/template/style/offline.css index 1b430ab..4767f14 100644 --- a/doc/src/template/style/offline.css +++ b/doc/src/template/style/offline.css @@ -161,7 +161,7 @@ margin:0px; } -.naviNextPrevious > a:first-child{ +.naviNextPrevious > a.prevPage { background-image:url(../images/btn_prev.png); background-repeat:no-repeat; background-position:left; @@ -170,7 +170,7 @@ height:20px; padding-left:20px; } -.naviNextPrevious > a:last-child{ +.naviNextPrevious > a.nextPage { background-image:url(../images/btn_next.png); background-repeat:no-repeat; background-position:right; diff --git a/doc/src/template/style/style.css b/doc/src/template/style/style.css index 48ed49b..a97fe17 100644 --- a/doc/src/template/style/style.css +++ b/doc/src/template/style/style.css @@ -1208,26 +1208,30 @@ color: red; } - .naviNextPrevious > a:first-child + .naviNextPrevious > a.prevPage { background-image:url(../images/btn_prev_green.png); background-repeat:no-repeat; background-position:left; padding-left:20px; height:20px; - padding-left:20px; } - .naviNextPrevious > a:last-child + .naviNextPrevious > a.nextPage { background-image:url(../images/btn_next_green.png); background-repeat:no-repeat; background-position:right; padding-right:20px; height:20px; - margin-left:30px; + float:right; } + .naviNextPrevious + p + { + display:inline-block; + clear:both; + } .qmltype { |