[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

--- Comment #9 from Gerrit Notification Bot  ---
Change 109660 merged by jenkins-bot:
Remove IE80Fixes.css

https://gerrit.wikimedia.org/r/109660

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

Bartosz Dziewoński  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|wikibugs-l@lists.wikimedia. |foma...@googlemail.com
   |org |
   Target Milestone|--- |1.23.0 release

--- Comment #8 from Bartosz Dziewoński  ---
Thanks!

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

--- Comment #7 from Gerrit Notification Bot  ---
Change 109660 had a related patch set uploaded by Gerrit Patch Uploader:
Remove IE80Fixes.css

https://gerrit.wikimedia.org/r/109660

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

Bartosz Dziewoński  changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=19334

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

Bartosz Dziewoński  changed:

   What|Removed |Added

 CC||j...@countervandalism.net

--- Comment #6 from Bartosz Dziewoński  ---
CC-ing author of the hack.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

--- Comment #5 from Fomafix  ---
(In reply to comment #4)

> So adding a
> 
>   box-sizing: content-box;
> 
> in IE80Fixes.css might fix this.

No. box-sizing: content-box is the default value. box-sizing: border-box is
here the correct value to generate a textarea with a width of 100% including
padding and border.

The CSS property box-sizing is supported in Internet Explorer since version 8:
https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing In compatibility
mode the Internet Explorer 8 seams to ignore the property box-sizing for
compatibility.

The definition in IE80Fixes.css disturbs the correct working Internet Explorer
8 in the default standard compliance mode. In attachment 14343 you can see that
the width of the box is correct when IE80Fixes.css is empty. But an empty
IE80Fixes.css generates a overflowing box in compatibility mode of Internet
Explorer 8. Maybe it is not possible to fix in both modes.

WikiEditor avoids the problem by using
.wikiEditor-ui textarea#wpTextbox1 {
  border-left: none;
  boder-right: none;
  padding-left: 0;
  padding-right: 0;
}
so content-box and border-box has the same width.

IE80Fixes.css is supposed to fix the bug 19334. I can not reproduce the
problems described in bug 19334. I think the workaround in IE80Fixes.css
generates more problems than it solves problems.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

Michael M.  changed:

   What|Removed |Added

 CC||listenle...@gmail.com

--- Comment #4 from Michael M.  ---
commonContent.css has a

#editform textarea {
   display: block;
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
}

which is interpreted in IE8, and might cause this behavior. So adding a

  box-sizing: content-box;

in IE80Fixes.css might fix this.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

Andre Klapper  changed:

   What|Removed |Added

   Priority|Unprioritized   |Normal

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

--- Comment #3 from Fomafix  ---
Created attachment 14344
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=14344&action=edit
Internet Explorer 8 with browser mode "IE8 compatibility" without IE80Fixes.css

When I empty the file skins/common/IE80Fixes.css and activate manually the
compatibility mode "Internet Explorer 8 compatibility" the edit textarea
#wpTextbox1 is to wide.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

--- Comment #2 from Fomafix  ---
Created attachment 14343
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=14343&action=edit
Internet Explorer 8 with browser mode "IE8" without IE80Fixes.css

When I empty the file skins/common/IE80Fixes.css the edit textarea #wpTextbox1
has on Internet Explorer 8 with the default compatibility mode "Internet
Explorer 8" the right width.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 60237] textarea #wpTextbox1 overlaps on Internet Explorer 8

2014-01-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=60237

--- Comment #1 from Fomafix  ---
Created attachment 14342
  --> https://bugzilla.wikimedia.org/attachment.cgi?id=14342&action=edit
Internet Explorer 8 with browser mode "IE8 compatibility"

On Internet Explorer 8 with manually activated compatibility mode "Internet
Explorer 8 compatibility" the edit textarea #wpTextbox1 has the right width.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l