[Rt-commit] rt branch, 4.0/ie6-css-fix, created. rt-4.0.2-203-gd1bfae2

? sunnavy sunnavy at bestpractical.com
Tue Nov 8 11:56:57 EST 2011


The branch, 4.0/ie6-css-fix has been created
        at  d1bfae294f683cd2d2e3697e0cf016e60c1e3a7d (commit)

- Log -----------------------------------------------------------------
commit 06718ab3e15fa167c34f8703c69d89f5077ae408
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sun Nov 6 20:36:38 2011 +0800

    ballard has its own msie6.css

diff --git a/share/html/NoAuth/css/ballard/InHeader b/share/html/NoAuth/css/ballard/InHeader
index a480fc6..3744f43 100644
--- a/share/html/NoAuth/css/ballard/InHeader
+++ b/share/html/NoAuth/css/ballard/InHeader
@@ -50,5 +50,5 @@
 
 <![endif]-->
 <!--[if lt IE 7]>
-<link rel="stylesheet" href="<%RT->Config->Get('WebPath')%>/NoAuth/css/web2/msie6.css" type="text/css" media="all" />
+<link rel="stylesheet" href="<%RT->Config->Get('WebPath')%>/NoAuth/css/ballard/msie6.css" type="text/css" media="all" />
 <![endif]-->

commit d1bfae294f683cd2d2e3697e0cf016e60c1e3a7d
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Tue Nov 8 22:13:51 2011 +0800

    css fixes for ie6
    
    the main concern here is to make RT work and not so ugly on ie6.
    most changes are plain position fixes, but here is the weird one:
    
    though we hide ".message-stanza.closed" in history-folding.css,
    ie6 hides "Show quoted text" span too, which is actually
    ".message-stanza-folder.closed", so I had to force the display
    in msie6.css like:
    
        span.message-stanza-folder {
            display: inline !important;
        }

diff --git a/share/html/NoAuth/css/aileron/msie6.css b/share/html/NoAuth/css/aileron/msie6.css
index 4a907c3..b141573 100644
--- a/share/html/NoAuth/css/aileron/msie6.css
+++ b/share/html/NoAuth/css/aileron/msie6.css
@@ -45,6 +45,9 @@
 %# those contributions and any derivatives thereof.
 %#
 %# END BPS TAGGED BLOCK }}}
+
+ at import "../base/msie6.css";
+
 div#body {
     top: 0em;
 }
@@ -84,3 +87,21 @@ div#body {
 #page-navigation ul {
     width: auto;
 }
+
+.ticket-transaction div.metadata span.actions {
+    right: 1.2em;
+}
+
+div.titlebox,
+#ticket-create-metadata,
+#ticket-update-metadata,
+#ticket-create-message,
+#ticket-update-message {
+    position: relative;
+}
+
+#Ticket-Create-details {
+    float: left;
+    position: relative;
+}
+
diff --git a/share/html/NoAuth/css/ballard/msie6.css b/share/html/NoAuth/css/ballard/msie6.css
index 420ed88..afcdb4c 100644
--- a/share/html/NoAuth/css/ballard/msie6.css
+++ b/share/html/NoAuth/css/ballard/msie6.css
@@ -45,6 +45,9 @@
 %# those contributions and any derivatives thereof.
 %#
 %# END BPS TAGGED BLOCK }}}
+
+ at import "../base/msie6.css";
+
 .topaction .select-queue {
     margin-top: 0;
 }
@@ -86,3 +89,11 @@ div#page-navigation ul#page-menu {
     width: expression(this.width > 401 ? 400 : true);
 }
 
+#page-navigation {
+    width: 100%;
+}
+
+.ticket-transaction div.metadata span.actions {
+    right: 1.1em;
+}
+
diff --git a/share/html/NoAuth/css/ballard/nav.css b/share/html/NoAuth/css/ballard/nav.css
index c5e3300..7c7e581 100644
--- a/share/html/NoAuth/css/ballard/nav.css
+++ b/share/html/NoAuth/css/ballard/nav.css
@@ -57,7 +57,6 @@
     top: 6.2em;
     left: 0em;
     z-index: 9997;
-    background-color: none;
     padding-top: 1em;
     padding-right: 0.5em;
     padding-left: 0.5em;
diff --git a/share/html/NoAuth/css/aileron/msie6.css b/share/html/NoAuth/css/base/msie6.css
similarity index 77%
copy from share/html/NoAuth/css/aileron/msie6.css
copy to share/html/NoAuth/css/base/msie6.css
index 4a907c3..9523c67 100644
--- a/share/html/NoAuth/css/aileron/msie6.css
+++ b/share/html/NoAuth/css/base/msie6.css
@@ -1,3 +1,4 @@
+
 %# BEGIN BPS TAGGED BLOCK {{{
 %#
 %# COPYRIGHT:
@@ -45,42 +46,23 @@
 %# those contributions and any derivatives thereof.
 %#
 %# END BPS TAGGED BLOCK }}}
-div#body {
-    top: 0em;
-}
 
-.topaction .select-queue {
-    margin-top: 0;
+table.ticket-summary {
+    table-layout: fixed;
 }
 
-.titlebox-title .widget {
-    top: -1.25em;
-    left: 0.5em;
-
-}
-.titlebox .titlebox-title .right{
-    position: absolute;
-    top: 1.5em;
+.ticket-transaction div.metadata {
+    height: 1px;
 }
 
-.titlebox
-{
-    height: auto !important;
-    height: 1.25em;
+div.downloadattachment {
+    position: relative;
 }
 
-
-.ticket-transaction .messagebody img {
-    /* ie6 does not support max-width */
-    width: expression(this.width > 401 ? 400 : true);
-}
-
-
-
-.sf-sub-indicator {
-	background:		url(<%RT->Config->Get('WebPath')%>/NoAuth/css/images/arrows-ffffff.gif) no-repeat -10px -100px;
+div.messagebody {
+    height: 3em;
 }
 
-#page-navigation ul {
-    width: auto;
+span.message-stanza-folder {
+    display: inline !important;
 }
diff --git a/share/html/NoAuth/css/web2/msie6.css b/share/html/NoAuth/css/web2/msie6.css
index 9163a93..63ff098 100644
--- a/share/html/NoAuth/css/web2/msie6.css
+++ b/share/html/NoAuth/css/web2/msie6.css
@@ -45,6 +45,9 @@
 %# those contributions and any derivatives thereof.
 %#
 %# END BPS TAGGED BLOCK }}}
+
+ at import "../base/msie6.css";
+
 .topaction .select-queue {
     margin-top: 0;
 }
@@ -94,3 +97,6 @@ div#page-navigation {
     background-image: url(<%RT->Config->Get('WebPath')%>/NoAuth/css/images/arrows-grey.gif);
 }
 
+.ticket-transaction div.metadata span.actions {
+    right: 1.1em;
+}

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


More information about the Rt-commit mailing list