[Rt-commit] rt branch, 4.0/style-nitpicking, created. rt-4.0.0rc6-21-gb9cd32d
Thomas Sibley
trs at bestpractical.com
Wed Mar 9 17:29:54 EST 2011
The branch, 4.0/style-nitpicking has been created
at b9cd32d5f91d7e449a4071bfbe482e24cfb28078 (commit)
- Log -----------------------------------------------------------------
commit b9cd32d5f91d7e449a4071bfbe482e24cfb28078
Author: Thomas Sibley <trs at bestpractical.com>
Date: Wed Mar 9 17:27:42 2011 -0500
Always slam the per-txn actions to the upper right corner
Rather than relying on prone to breakage absolute positioning on the
entire page, contain the transaction actions bar within the surrounding
transaction element.
This fixes [issues #16805].
diff --git a/share/html/NoAuth/css/aileron/ticket.css b/share/html/NoAuth/css/aileron/ticket.css
index 8ef9a4b..7dbc456 100644
--- a/share/html/NoAuth/css/aileron/ticket.css
+++ b/share/html/NoAuth/css/aileron/ticket.css
@@ -48,7 +48,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 */
}
div#ticket-history div.odd {
@@ -67,7 +67,8 @@ div#ticket-history {
.ticket-transaction div.metadata span.actions {
position: absolute;
- right: 2.3em;
+ top: 0;
+ right: 0;
padding: 0em;
background: #ccc;
text-align: right;
diff --git a/share/html/NoAuth/css/ballard/ticket.css b/share/html/NoAuth/css/ballard/ticket.css
index 603503c..b41e094 100644
--- a/share/html/NoAuth/css/ballard/ticket.css
+++ b/share/html/NoAuth/css/ballard/ticket.css
@@ -48,7 +48,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 */
}
div#ticket-history div.odd {
@@ -67,7 +67,8 @@ div#ticket-history {
.ticket-transaction div.metadata span.actions {
position: absolute;
- right: 2.3em;
+ top: 0;
+ right: 0;
padding: 0em;
background: #ccc;
text-align: right;
diff --git a/share/html/NoAuth/css/web2/ticket.css b/share/html/NoAuth/css/web2/ticket.css
index f825a09..388a035 100644
--- a/share/html/NoAuth/css/web2/ticket.css
+++ b/share/html/NoAuth/css/web2/ticket.css
@@ -48,7 +48,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 */
}
div#ticket-history div.odd {
@@ -67,7 +67,8 @@ div#ticket-history {
.ticket-transaction div.metadata span.actions {
position: absolute;
- right: 2.3em;
+ top: 0;
+ right: 0;
padding: 0em;
background: #ccc;
text-align: right;
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list