[Rt-commit] rt branch, 4.0/customfield-css-on-basics, created. rt-4.0.0rc6-13-g7e5872e
Thomas Sibley
trs at bestpractical.com
Fri Mar 4 11:31:07 EST 2011
The branch, 4.0/customfield-css-on-basics has been created
at 7e5872e5fdb848d825c552399b400ef5b108b097 (commit)
- Log -----------------------------------------------------------------
commit 7e5872e5fdb848d825c552399b400ef5b108b097
Author: Thomas Sibley <trs at bestpractical.com>
Date: Fri Mar 4 11:27:17 2011 -0500
Only make text CFs 100% wide when they're otherwise constrained by a table cell
When there's no containing box, they expand a bit too much and look
ugly.
diff --git a/share/html/NoAuth/css/aileron/ticket.css b/share/html/NoAuth/css/aileron/ticket.css
index e61bc93..8ef9a4b 100644
--- a/share/html/NoAuth/css/aileron/ticket.css
+++ b/share/html/NoAuth/css/aileron/ticket.css
@@ -279,10 +279,10 @@ div.requestor-ticket-links {
}
-/* textareas get to be bigger */
-.edit-custom-field.cftype-Text textarea,
-.edit-custom-field.cftype-Freeform input,
-.edit-custom-field.cftype-Wikitext textarea
+/* textareas get to be bigger when we're in a table */
+tr.edit-custom-field.cftype-Text textarea,
+tr.edit-custom-field.cftype-Freeform input,
+tr.edit-custom-field.cftype-Wikitext textarea
{
width: 100%;
}
diff --git a/share/html/NoAuth/css/ballard/ticket.css b/share/html/NoAuth/css/ballard/ticket.css
index 5cfe1ec..603503c 100644
--- a/share/html/NoAuth/css/ballard/ticket.css
+++ b/share/html/NoAuth/css/ballard/ticket.css
@@ -265,10 +265,10 @@ div.requestor-ticket-links {
}
-/* textareas get to be bigger */
-.edit-custom-field.cftype-Text textarea,
-.edit-custom-field.cftype-Freeform input,
-.edit-custom-field.cftype-Wikitext textarea
+/* textareas get to be bigger when we're in a table */
+tr.edit-custom-field.cftype-Text textarea,
+tr.edit-custom-field.cftype-Freeform input,
+tr.edit-custom-field.cftype-Wikitext textarea
{
width: 100%;
}
diff --git a/share/html/NoAuth/css/web2/ticket.css b/share/html/NoAuth/css/web2/ticket.css
index bb7aa90..f825a09 100644
--- a/share/html/NoAuth/css/web2/ticket.css
+++ b/share/html/NoAuth/css/web2/ticket.css
@@ -270,10 +270,10 @@ div.requestor-ticket-links {
}
-/* textareas get to be bigger */
-.edit-custom-field.cftype-Text textarea,
-.edit-custom-field.cftype-Freeform input,
-.edit-custom-field.cftype-Wikitext textarea
+/* textareas get to be bigger when we're in a table */
+tr.edit-custom-field.cftype-Text textarea,
+tr.edit-custom-field.cftype-Freeform input,
+tr.edit-custom-field.cftype-Wikitext textarea
{
width: 100%;
}
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list