Author: rjollos
Date: Mon Nov 25 11:03:26 2013
New Revision: 1545220

URL: http://svn.apache.org/r1545220
Log:
0.8dev: Restore border around the //Age// column.

The `browser.css` stylesheet from Trac removes the border from the `td` in the 
age column. This doesn't affect the border displayed in Trac because there is a 
border in `trac.css` defined for the `tr`. In `bootstrap.css` though, the 
border is defined on the `td` element, therefore we need to define the same 
border styling for the `tr` element.

The alternative would be to modify `browser.css`, which we don't do for now so 
as to continue to use an unmodified version from the Trac core. If we move to 
using LESS, this can probably be simplified.

Modified:
    bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css

Modified: bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
URL: 
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css?rev=1545220&r1=1545219&r2=1545220&view=diff
==============================================================================
--- bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css (original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css Mon Nov 25 
11:03:26 2013
@@ -1352,3 +1352,9 @@ input[type="radio"]:checked + label span
 input[type="radio"]:not(:checked) + label span {
  text-decoration: underline;
 }
+
+/* Same styling as ".browser .table td" in boostrap.css */
+.browser .table tbody tr {
+ border-top: 1px solid #dddddd;
+}
+


Reply via email to