1.1 --- a/themes/mercurialweb/static/style-mercurialweb.css Sat Jul 10 02:44:30 2010 +0200
1.2 +++ b/themes/mercurialweb/static/style-mercurialweb.css Sat Jul 10 20:45:47 2010 +0200
1.3 @@ -155,10 +155,6 @@
1.4 background: #ccc;
1.5 }
1.6
1.7 -.pager {
1.8 - float: right;
1.9 -}
1.10 -
1.11 #navibar a, #navibar li.current span {
1.12
1.13 /* Need a block to redefine the height. */
1.14 @@ -265,6 +261,12 @@
1.15 border-bottom: 1px solid #ccc;
1.16 }
1.17
1.18 +/* Footer elements. */
1.19 +
1.20 +#footer {
1.21 + margin-top: 1em;
1.22 +}
1.23 +
1.24 #credits {
1.25 float: right;
1.26
1.27 @@ -289,18 +291,48 @@
1.28 text-decoration: none;
1.29 }
1.30
1.31 +/* Shortlog presentation. */
1.32 +
1.33 +.commentline {
1.34 + white-space: nowrap;
1.35 + overflow: hidden;
1.36 +}
1.37 +
1.38 /* Changeset presentation. */
1.39
1.40 -.changesetparentlink:before {
1.41 - content: '← '; /* left arrow (UTF-8) */
1.42 +.changesetlinks {
1.43 + position: relative;
1.44 + padding-left: 1em;
1.45 + min-height: 1.2em;
1.46 + line-height: 1.2em;
1.47 +}
1.48 +
1.49 +.changesetlinks a {
1.50 + display: block;
1.51 +}
1.52 +
1.53 +/* Position changeset labels at a fixed distance from the left margin. */
1.54 +
1.55 +.changesetparentlinks,
1.56 +.changesetchildlinks {
1.57 + position: absolute;
1.58 + top: 0;
1.59 + left: 0;
1.60 +}
1.61 +
1.62 +.changesetparentlinks:before {
1.63 + content: '↓'; /* down arrow (UTF-8) */
1.64 + /* content: '← '; left arrow (UTF-8) */
1.65 +}
1.66 +
1.67 +.changesetchildlinks:after {
1.68 + content: '↑'; /* up arrow (UTF-8) */
1.69 + /* content: '→'; right arrow (UTF-8) */
1.70 }
1.71
1.72 .changeset {
1.73 font-weight: bold;
1.74 -}
1.75 -
1.76 -.changesetchildlink:after {
1.77 - content: '→'; /* right arrow (UTF-8) */
1.78 + margin-left: 1em;
1.79 }
1.80
1.81 /* Source views. */