[Rt-commit] r3977 - in rt/branches/3.5-TESTING: . html/NoAuth/css/3.4-compat html/NoAuth/css/3.5-default

trs at bestpractical.com trs at bestpractical.com
Tue Oct 18 18:22:43 EDT 2005


Author: trs
Date: Tue Oct 18 18:22:43 2005
New Revision: 3977

Modified:
   rt/branches/3.5-TESTING/   (props changed)
   rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/body.css
   rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/header.css
   rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/main.css
   rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/nav.css
   rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/quickbar.css
   rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/titlebox.css
   rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/transactions.css
   rt/branches/3.5-TESTING/html/NoAuth/css/3.5-default/quickbar.css
Log:
 r6654 at wintermute:  tom | 2005-10-18 08:44:56 -0400
 Fixed up the 3.4-compat styles to account for HTML and CSS changes


Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/body.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/body.css	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/body.css	Tue Oct 18 18:22:43 2005
@@ -1,6 +1,7 @@
 #body {
-    margin-top: 0.5em;
-    margin-right: 0.5em;
+    margin: 0.5em 0.5em 0 0.5em;
+    float: left;
+    width: 80%;
 }
 
 #body h1 { font-size: 1.5em; }

Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/header.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/header.css	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/header.css	Tue Oct 18 18:22:43 2005
@@ -51,6 +51,8 @@
     background: #4282b5;
     margin-top: 0;
     padding-bottom: 0.2em;
+    float: left;
+    width: 82%;
 }
 
 #header h1 {

Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/main.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/main.css	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/main.css	Tue Oct 18 18:22:43 2005
@@ -45,14 +45,15 @@
 %# END BPS TAGGED BLOCK }}}
 
 %# Import the 3.5 styles we want to build off of...
+ at import "../3.5-default/logo.css";
 @import "../3.5-default/misc.css";
 @import "../3.5-default/transactions.css";
 @import "../3.5-default/approvals.css";
 @import "../3.5-default/login.css";
- at import "../3.5-default/approvals.css";
+ at import "../3.5-default/quickbar.css";
+ at import "../3.5-default/ticket.css";
 
 %# ...and then import the 3.4 compat styles afterwards so they can cascade
- at import "quickbar.css";
 @import "nav.css";
 @import "footer.css";
 @import "body.css";
@@ -60,3 +61,4 @@
 @import "header.css";
 @import "forms.css";
 @import "transactions.css";
+

Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/nav.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/nav.css	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/nav.css	Tue Oct 18 18:22:43 2005
@@ -1,5 +1,5 @@
 #nav {
-    clear: both;
+    clear: left;
     float: left;
     width: 18%;
     font-size: 1.4em;
@@ -8,8 +8,6 @@
     background: #4282b5 url(<%$RT::WebImagesURL%>/css/cbr.gif) no-repeat bottom right;
 }
 
-#body { margin-left: 20%; }
-
 #nav #system-menu {
     padding: 0 0.2em 0.2em 0.2em;
     margin-top: 0;

Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/quickbar.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/quickbar.css	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/quickbar.css	Tue Oct 18 18:22:43 2005
@@ -1,28 +1,3 @@
-#quickbar {
-    position: relative;
-    padding-bottom: -2em;
-    border-bottom: 2.5em solid #000084;
-}
-
-#logo {
-    position: relative;
-    width: 216px;
-    left: 10px;
-    top: 0;
-}
-
-#logo img { border: none; }
-
-#logo div.rtname {
-    position: absolute;
-    left: 1em;
-    bottom: -1.5em;
-    font-weight: bold;
-    font-size: 1.3em;
-    background: #000084;
-    color: white;
-}
-
 #quickbar #quick-personal {
     display: inline;
     color: #888;
@@ -50,8 +25,7 @@
 #quickbar #topactions {
     color: white;
     font-size: 0.9em;
-    position: absolute;
+    position: relative;
     right: 1em;
-    bottom: -2.3em;
-    background: #000084;
+    float: right;
 }

Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/titlebox.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/titlebox.css	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/titlebox.css	Tue Oct 18 18:22:43 2005
@@ -1,4 +1,8 @@
-.titlebox .title {
+.titlebox {
+    margin: 0.5em 0;
+}
+
+.titlebox .titlebox-title {
     background: #069;
     padding: 0.2em 0.5em;
     color: white;
@@ -8,16 +12,16 @@
     position: relative;
 }
 
-.titlebox .title .right {
+.titlebox .titlebox-title .right {
     position: absolute;
     right: 1.5em;
     font-size: 0.9em;
 }
 
-#body .titlebox .title :link, #body .titlebox .title :visited {
+#body .titlebox .titlebox-title :link, #body .titlebox .titlebox-title :visited {
     color: white;
 }
 
-#body .titlebox .title .widget :link, #body .titlebox .title .widget :visited {
+#body .titlebox .titlebox-title .widget :link, #body .titlebox .titlebox-title .widget :visited {
     color: black;
 }

Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/transactions.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/transactions.css	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.4-compat/transactions.css	Tue Oct 18 18:22:43 2005
@@ -59,23 +59,23 @@
 
 .ticket-transaction.basics { border-color: #9c3031; }
 .ticket-transaction.basics .type { background: #9c3031; }
-.ticket-summary .ticket-info-basics .content { border-left: none; }
-.ticket-summary .ticket-info-basics .title { background: #9c3031; }
+.ticket-summary .ticket-info-basics .titlebox-content { border-left: none; }
+.ticket-summary .ticket-info-basics .titlebox-title { background: #9c3031; }
 
 .ticket-transaction.people { border-color: #31309c; }
 .ticket-transaction.people .type { background: #31309c; }
-.ticket-summary .ticket-info-people .content { border-left: none; }
-.ticket-summary .ticket-info-people .title { background: #31309c; }
+.ticket-summary .ticket-info-people .titlebox-content { border-left: none; }
+.ticket-summary .ticket-info-people .titlebox-title { background: #31309c; }
 
 .ticket-transaction.links { border-color: #316531; }
 .ticket-transaction.links .type { background: #316531; }
-.ticket-summary .ticket-info-links .content  { border-left: none; }
-.ticket-summary .ticket-info-links .title  { background: #316531; }
+.ticket-summary .ticket-info-links .titlebox-content  { border-left: none; }
+.ticket-summary .ticket-info-links .titlebox-title  { background: #316531; }
 
 .ticket-transaction.dates { border-color: #633063; }
 .ticket-transaction.dates .type { background: #633063; }
-.ticket-summary .ticket-info-dates .content  { border-left: none; }
-.ticket-summary .ticket-info-dates .title  { background: #633063; }
+.ticket-summary .ticket-info-dates .titlebox-content  { border-left: none; }
+.ticket-summary .ticket-info-dates .titlebox-title  { background: #633063; }
 
 .ticket-transaction.message { border-color: #069; }
 .ticket-transaction.message .type { background: #069; }

Modified: rt/branches/3.5-TESTING/html/NoAuth/css/3.5-default/quickbar.css
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/css/3.5-default/quickbar.css	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/css/3.5-default/quickbar.css	Tue Oct 18 18:22:43 2005
@@ -42,7 +42,6 @@
 }
 
 #quickbar #topactions form .field {
-    border: 1px solid #069;
     padding: 1px;
     font-size: 0.9em;
 }


More information about the Rt-commit mailing list