[Rt-commit] rt branch, 4.0/ticket-history-alignment-fix-for-opera-and-ie7, created. rt-4.0.5-79-gc720299

? sunnavy sunnavy at bestpractical.com
Wed Feb 22 05:54:41 EST 2012


The branch, 4.0/ticket-history-alignment-fix-for-opera-and-ie7 has been created
        at  c720299baf8270ef3abf0372814232156387d4d5 (commit)

- Log -----------------------------------------------------------------
commit c720299baf8270ef3abf0372814232156387d4d5
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Wed Feb 22 18:44:03 2012 +0800

    fix the alignment bug in ticket history for opera and ie7
    
    other browsers( including chrome, firefox and ie8+ ) don't have this problem.
    
    setting min-height to 2em is because the span.type in it has height 1.25em and
    padding-top 0.75em. this change won't hurt anyway.
    
    see also #18454

diff --git a/share/html/NoAuth/css/aileron/ticket.css b/share/html/NoAuth/css/aileron/ticket.css
index 4d069d9..8e2837c 100644
--- a/share/html/NoAuth/css/aileron/ticket.css
+++ b/share/html/NoAuth/css/aileron/ticket.css
@@ -49,6 +49,7 @@ div#ticket-history div.ticket-transaction {
  border-top: 1px solid #ccc;
  padding-bottom: 0.25em;
     position: relative; /* gives us a container for position: absolute */
+ min-height: 2em;
 }
 
 div#ticket-history div.odd {
diff --git a/share/html/NoAuth/css/ballard/ticket.css b/share/html/NoAuth/css/ballard/ticket.css
index 06b6678..9ba23b6 100644
--- a/share/html/NoAuth/css/ballard/ticket.css
+++ b/share/html/NoAuth/css/ballard/ticket.css
@@ -49,6 +49,7 @@ div#ticket-history div.ticket-transaction {
  border-top: 1px solid #ccc;
  padding-bottom: 0.25em;
     position: relative; /* gives us a container for position: absolute */
+ min-height: 2em;
 }
 
 div#ticket-history div.odd {
diff --git a/share/html/NoAuth/css/web2/ticket.css b/share/html/NoAuth/css/web2/ticket.css
index 7d08166..da15d1a 100644
--- a/share/html/NoAuth/css/web2/ticket.css
+++ b/share/html/NoAuth/css/web2/ticket.css
@@ -49,6 +49,7 @@ div#ticket-history div.ticket-transaction {
  border-top: 1px solid #ccc;
  padding-bottom: 0.25em;
     position: relative; /* gives us a container for position: absolute */
+ min-height: 2em;
 }
 
 div#ticket-history div.odd {

-----------------------------------------------------------------------


More information about the Rt-commit mailing list