Ticket #2464 (new patch)

Opened 2 months ago

Last modified 2 months ago

ie7 fix for image dropdown

Reported by: mandrew Assigned to: ischommer
Type: patch Priority: medium
Milestone: Component: CMS - General
Version: 2.2.2-rc3 Severity: medium effort / impact
Keywords: Cc:
Due date: Harvest Task: (Unknown)
Invoice sent to client: 0 Hours:

Description (last modified by mandrew) (diff)

This is a fix for a project I prepared earlier for IE 7 which doesn't seem to like second level files in the image upload dropdown field (in the cms).

It still needs a bit more testing and I'm not sure where this change will affect other parts in the cms.

Maybe a more appropriate value needs to be added rather then 100% as this could affect other browsers then the ones that I have tested (IE6/7, FF2)

Index: Image_iframe.css
===================================================================
--- Image_iframe.css	(revision 52858)
+++ Image_iframe.css	(working copy)
@@ -131,8 +131,14 @@
 	overflow: hidden;
 }
+/* added block/width so tree values don't disappear in ie7 */
+.SelectionGroup div.TreeDropdownField ul.tree li {
+       display: block;
+	width: 100%;
+}
+
+
 .Actions {
 	text-align: right;
 	margin: 0;

Attachments

Change History

Changed 2 months ago by mandrew

  • description changed from This is a fix for a project I prepared earlier for IE 7 which doesn't seem to like second level files in the image upload dropdown field (in the cms). It still needs a bit more testing and I'm not sure where this change will affect other parts in the cms. Maybe a more appropriate value needs to be added rather then 100% as this could affect other browsers then the ones that I have tested (IE6/7, FF2) Index: Image_iframe.css =================================================================== --- Image_iframe.css (revision 52858) +++ Image_iframe.css (working copy) @@ -131,8 +131,14 @@ overflow: hidden; } +/* added width so tree values don't disappear in ie7 */ +.SelectionGroup div.TreeDropdownField ul.tree li { + width: 100%; +} + + .Actions { text-align: right; margin: 0; to This is a fix for a project I prepared earlier for IE 7 which doesn't seem to like second level files in the image upload dropdown field (in the cms). It still needs a bit more testing and I'm not sure where this change will affect other parts in the cms. Maybe a more appropriate value needs to be added rather then 100% as this could affect other browsers then the ones that I have tested (IE6/7, FF2) {{{ Index: Image_iframe.css =================================================================== --- Image_iframe.css (revision 52858) +++ Image_iframe.css (working copy) @@ -131,8 +131,14 @@ overflow: hidden; } +/* added width so tree values don't disappear in ie7 */ +.SelectionGroup div.TreeDropdownField ul.tree li { + width: 100%; +} + + .Actions { text-align: right; margin: 0; }}}

Changed 2 months ago by mandrew

oops this is a bit wrong...

what it should be is: /* added width so tree values don't disappear in ie7 */ .SelectionGroup? div.TreeDropdownField? ul.tree li {

display: block; width: 100%;

}

The display: block seems to be the most important thing?

Changed 2 months ago by mandrew

  • description changed from This is a fix for a project I prepared earlier for IE 7 which doesn't seem to like second level files in the image upload dropdown field (in the cms). It still needs a bit more testing and I'm not sure where this change will affect other parts in the cms. Maybe a more appropriate value needs to be added rather then 100% as this could affect other browsers then the ones that I have tested (IE6/7, FF2) {{{ Index: Image_iframe.css =================================================================== --- Image_iframe.css (revision 52858) +++ Image_iframe.css (working copy) @@ -131,8 +131,14 @@ overflow: hidden; } +/* added width so tree values don't disappear in ie7 */ +.SelectionGroup div.TreeDropdownField ul.tree li { + width: 100%; +} + + .Actions { text-align: right; margin: 0; }}} to This is a fix for a project I prepared earlier for IE 7 which doesn't seem to like second level files in the image upload dropdown field (in the cms). It still needs a bit more testing and I'm not sure where this change will affect other parts in the cms. Maybe a more appropriate value needs to be added rather then 100% as this could affect other browsers then the ones that I have tested (IE6/7, FF2) {{{ Index: Image_iframe.css =================================================================== --- Image_iframe.css (revision 52858) +++ Image_iframe.css (working copy) @@ -131,8 +131,14 @@ overflow: hidden; } +/* added block/width so tree values don't disappear in ie7 */ +.SelectionGroup div.TreeDropdownField ul.tree li { + display: block; + width: 100%; +} + + .Actions { text-align: right; margin: 0; }}}
Note: See TracTickets for help on using tickets.