Edgewall Software

Opened 19 years ago

Last modified 18 years ago

#860 closed enhancement

Make the legend in changeset view horizontal in Opera as well — at Version 3

Reported by: agr30@… Owned by: Jonas Borgström
Priority: lowest Milestone:
Component: version control/changeset view Version: devel
Severity: normal Keywords: layout
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description (last modified by Christopher Lenz)

The legend in changeset view has the elements centered above each other in Opera instead of being a horizontal line. This patch fixes this. Tested on Opera 7.5, Firefox 0.9 (both Linux) and Internet Explorer 6.0

--- changeset.cs.old    2004-10-30 03:00:01.000000000 +0200
+++ changeset.cs        2004-10-30 03:01:40.000000000 +0200
@@ -100,6 +100,7 @@
    <dt class="rem"></dt><dd>Removed</dd>
    <dt class="mod"></dt><dd>Modified</dd>
   </dl>
+  <br /> 
  </div>
  <ul>
   <?cs each:file = changeset.diff.files ?>

--- diff.css.old        2004-10-30 03:02:36.000000000 +0200
+++ diff.css    2004-10-30 03:05:57.000000000 +0200
@@ -40,12 +40,13 @@
  width: .8em; height: .8em;
 }
 .diff #legend dl, .diff #legend dd {
- display: inline;
- float: left;
  padding: 0;
  margin: 0;
  margin-right: .5em;
 }
+.diff #legend dd { 
+ float: left;
+}
 
 /* Styles for the list of diffs */
 .diff ul { clear: both; margin: 0; padding: 0 }

Change History (3)

comment:1 by anonymous, 19 years ago

Version: 0.7.1devel

comment:2 by Christopher Lenz, 18 years ago

Milestone: 0.9.1

comment:3 by Christopher Lenz, 18 years ago

Description: modified (diff)
Milestone: 0.9.10.9.2
Note: See TracTickets for help on using tickets.