[Rt-commit] r11256 - in rt/branches/3.8-TESTING: . html/Widgets
jesse at bestpractical.com
jesse at bestpractical.com
Fri Mar 28 14:34:53 EDT 2008
Author: jesse
Date: Fri Mar 28 14:34:53 2008
New Revision: 11256
Modified:
rt/branches/3.8-TESTING/ (props changed)
rt/branches/3.8-TESTING/html/NoAuth/css/web2/boxes.css
rt/branches/3.8-TESTING/html/NoAuth/css/web2/layout.css
rt/branches/3.8-TESTING/html/Widgets/TitleBoxStart
Log:
r28755 at 100: jesse | 2008-03-28 12:35:16 -0400
* A bunch of style fixes for IE
Modified: rt/branches/3.8-TESTING/html/NoAuth/css/web2/boxes.css
==============================================================================
--- rt/branches/3.8-TESTING/html/NoAuth/css/web2/boxes.css (original)
+++ rt/branches/3.8-TESTING/html/NoAuth/css/web2/boxes.css Fri Mar 28 14:34:53 2008
@@ -1,6 +1,6 @@
.titlebox {
- border: 1px solid #ccc;
-
+ border-left: 1px solid #ccc;
+ border-top: 1px solid #ccc;
background-color: #efefef;
padding-top: 1em;
margin-top: 1em;
@@ -13,6 +13,11 @@
padding-right: 1em;
}
+/* horrible ie hack */
+* html .titlebox {
+ border-top: none;
+ border-left: none;
+}
.titlebox .titlebox {
@@ -88,6 +93,13 @@
}
+/* Horrible IE hacks */
+* html .titlebox .titlebox-title .right {
+ right: 0.7em;
+ top: 1em;
+}
+
+
.titlebox .titlebox-content {
padding-top: 0.5em;
padding-left: 1em;
@@ -117,6 +129,7 @@
* html .titlebox .titlebox-title .widget a {
background-position: center 0.3em;
+ top: 0em;
left: -1.5em;
}
Modified: rt/branches/3.8-TESTING/html/NoAuth/css/web2/layout.css
==============================================================================
--- rt/branches/3.8-TESTING/html/NoAuth/css/web2/layout.css (original)
+++ rt/branches/3.8-TESTING/html/NoAuth/css/web2/layout.css Fri Mar 28 14:34:53 2008
@@ -50,6 +50,7 @@
.topaction form#CreateTicketInQueue {
position: absolute;
+ padding-right: 2em;
top: 0;
right: 21em;
left: -42.25em;
Modified: rt/branches/3.8-TESTING/html/Widgets/TitleBoxStart
==============================================================================
--- rt/branches/3.8-TESTING/html/Widgets/TitleBoxStart (original)
+++ rt/branches/3.8-TESTING/html/Widgets/TitleBoxStart Fri Mar 28 14:34:53 2008
@@ -45,13 +45,13 @@
%# those contributions and any derivatives thereof.
%#
%# END BPS TAGGED BLOCK }}}
-<div class="titlebox <% $class %>" id="<% $id %>">
- <div class="titlebox-title<% $title_class && " $title_class" %>">
+<div class="titlebox<% $class ? " $class " : '' %>" id="<% $id %>">
+ <div class="titlebox-title<% $title_class ? " $title_class" : ''%>">
% if ($hideable) {
<span class="widget"><a href="#" onclick="return rollup('<%$tid%>');" onfocus="this.blur(); return false;" title="Toggle visibility">X</a></span>
% }
- <span class="left"><% $title_href && qq[<a href="$title_href">] | n %><% $title %><% $title_raw |n %><% $title_href && "</a>" |n%></span>
- <span class="right<%($titleright_href || $titleright || $titleright_raw) ? '' : '-empty' %>"><% $titleright_href && qq[<a href="$titleright_href">] | n %><% $titleright %><% $titleright_raw |n%> <% $titleright_href && "</a>" |n%></span>
+ <span class="left"><% $title_href ? qq[<a href="$title_href">] : '' | n %><% $title %><% $title_raw |n %><% $title_href ? "</a>" : '' |n%></span>
+ <span class="right<%($titleright_href || $titleright || $titleright_raw) ? '' : '-empty' %>"><% $titleright_href ? qq[<a href="$titleright_href">] : '' | n %><% $titleright %><% $titleright_raw |n%> <% $titleright_href ? "</a>" : '' |n%></span>
</div>
<div class="titlebox-content <% $bodyclass %>" id="<% $tid %>">
More information about the Rt-commit
mailing list