textarea problem on Search page, in IE7

View: New views
2 Messages — Rating Filter:   Alert me  

textarea problem on Search page, in IE7

by jroets01 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

In IE7 (maybe other IEs -- I didn't check), on the FitNesse Search page,
there's a problem where the Tags textarea has no width. I was able to
fix this in my instance by making a change to fitnesse_base.css. I'm not
a css expert, so I don't know if this is the best solution. I did not
test this change beyond my FF3.5 and IE7.

If somebody wants me to contribute this change, let me know what I would
need to do.

Was:

textarea {
   width: 100%;
}

textarea.pageContent {
   font-family: monaco, 'Lucida Sans Typewriter',monospace;
   font-size: 12px;
   height: 100%;
   rows: 40;
   columns: 70;
}

textarea.no_wrap {
   overflow: scroll;
}


Is now:

textarea {
   /*width: 100%;  Causes problem with Tags textarea on Search page */
}

textarea.pageContent {
   font-family: monaco, 'Lucida Sans Typewriter',monospace;
   font-size: 12px;
   height: 100%;
   rows: 40;
   columns: 70;
   width: 100%;
}

textarea.no_wrap {
   overflow: scroll;
   width: 100%;
}



Re: textarea problem on Search page, in IE7

by ggramlich :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello jroets,

this should have been fixed as of Oct 01

http://github.com/unclebob/fitnesse/commit/b95f11f9ed34556f933e9106d7e09690a10ae11f

<http://github.com/unclebob/fitnesse/commit/b95f11f9ed34556f933e9106d7e09690a10ae11f>Try
the edge release.

Gregor

2009/11/5 jroets01 <jroets@...>

>
>
> In IE7 (maybe other IEs -- I didn't check), on the FitNesse Search page,
> there's a problem where the Tags textarea has no width. I was able to
> fix this in my instance by making a change to fitnesse_base.css. I'm not
> a css expert, so I don't know if this is the best solution. I did not
> test this change beyond my FF3.5 and IE7.
>
> If somebody wants me to contribute this change, let me know what I would
> need to do.
>
> Was:
>
> textarea {
> width: 100%;
> }
>
> textarea.pageContent {
> font-family: monaco, 'Lucida Sans Typewriter',monospace;
> font-size: 12px;
> height: 100%;
> rows: 40;
> columns: 70;
> }
>
> textarea.no_wrap {
> overflow: scroll;
> }
>
> Is now:
>
> textarea {
> /*width: 100%; Causes problem with Tags textarea on Search page */
> }
>
> textarea.pageContent {
> font-family: monaco, 'Lucida Sans Typewriter',monospace;
> font-size: 12px;
> height: 100%;
> rows: 40;
> columns: 70;
> width: 100%;
> }
>
> textarea.no_wrap {
> overflow: scroll;
> width: 100%;
> }
>
>  
>