[Bug 11782] : indent markup fails if paragraph is to the right of an image

2013-05-20 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11782

Derk-Jan Hartman hartman.w...@gmail.com changed:

   What|Removed |Added

 CC||thorste...@web.de

--- Comment #11 from Derk-Jan Hartman hartman.w...@gmail.com ---
*** Bug 48322 has been marked as a duplicate of this bug. ***

-- 
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 11782] : indent markup fails if paragraph is to the right of an image

2012-10-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11782

--- Comment #9 from Derk-Jan Hartman hartman.w...@gmail.com 2012-10-07 
13:27:09 UTC ---
For future reference, English Wikipedia now has the template Flowlist that can
be used to workaround this problem selectively.

https://en.wikipedia.org/wiki/Template:Flowlist

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 11782] : indent markup fails if paragraph is to the right of an image

2012-10-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11782

--- Comment #10 from Erwin Dokter er...@darcoury.nl 2012-10-07 21:31:58 UTC 
---
Suggest we close this, as I can't imagine a nice CSS solution for core.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 11782] : indent markup fails if paragraph is to the right of an image

2012-08-26 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11782

--- Comment #7 from Derk-Jan Hartman hart...@videolan.org 2012-08-26 12:36:51 
UTC ---
Been playing around a bit, and something like:

#mw-content-text ol,
#mw-content-text ul,
#mw-content-text dl {
overflow: hidden;
list-style-position: inside;

}

#mw-content-text li,
#mw-content-text dd {
padding-left: 1.5em;
text-indent: -1.5em;
}

/* Correct directionality when page dir is different from site/user dir */
.mw-content-ltr ul,
.mw-content-rtl .mw-content-ltr ul {
/* @noflip */
margin: 0.3em 0 0 0.6em;
padding: 0;
}
.mw-content-rtl ul,
.mw-content-ltr .mw-content-rtl ul {
/* @noflip */
margin: 0.3em 0.6em 0 0;
padding: 0;
}
.mw-content-ltr ol,
.mw-content-rtl .mw-content-ltr ol {
/* @noflip */
margin: 0.3em 0 0 2.2em;
padding: 0;
}
.mw-content-rtl ol,
.mw-content-ltr .mw-content-rtl ol {
/* @noflip */
margin: 0.3em 2.2em 0 0;
padding: 0;
}
/* @noflip */
.mw-content-ltr dd,
.mw-content-rtl .mw-content-ltr dd {
margin-left: 0.6em;
margin-right: 0;
}
/* @noflip */
.mw-content-rtl dd,
.mw-content-ltr .mw-content-rtl dd {
margin-right: 0.6em;
margin-left: 0;
}


Actually comes quite close. The problem is that it significantly changes the
layout of all these elements. hlist on en.wp for instance was immediately
troubled by it. Additionally, long lists wouldn't flow around the floating
element anymore, but always be as a block to the right of it.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 11782] : indent markup fails if paragraph is to the right of an image

2012-08-26 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11782

--- Comment #8 from Erwin Dokter er...@darcoury.nl 2012-08-26 13:37:12 UTC ---
It has other problems too, especially on talk pages where all indents are now
misaligned (due to not adhering to the default 1.6/3.2em indent space). Also,
list-style-position: inside; casues numbered lists to align the list markers to
be *left* and push the items to the right as number of digits increase, which
is also rahter unsightly.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 11782] : indent markup fails if paragraph is to the right of an image

2011-12-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11782

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 CC||hart...@videolan.org

--- Comment #6 from Derk-Jan Hartman hart...@videolan.org 2011-12-04 14:20:51 
UTC ---
This is a well known CSS problem. You could say that it is a bit of a
flaw/oversight in the design of the CSS standard.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 11782] : indent markup fails if paragraph is to the right of an image

2011-03-06 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11782

--- Comment #5 from Erwin Dokter er...@darcoury.nl 2011-03-06 13:07:23 UTC ---
Actually, I found out it's not a float bug; it's the default behaviour for list
markers. They are placed outside the flow (list-style-position: outside;).
Setting list-style-position to inside will put the markers inside the flow, but
that clashes with the design of having them outside. So it's basically a design
issue.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 11782] : indent markup fails if paragraph is to the right of an image

2010-09-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11782

Erwin Dokter er...@darcoury.nl changed:

   What|Removed |Added

 CC||er...@darcoury.nl

--- Comment #4 from Erwin Dokter er...@darcoury.nl 2010-09-27 13:49:09 UTC ---
That's a CSS float bug. The list items are actually indented, but only relative
to the left margin of the page instead of the image. This happens with all
indented elements. This cannot be fixed in Mediawiki.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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 11782] : indent markup fails if paragraph is to the right of an image

2010-09-26 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=11782

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 CC||m8r-udf...@mailinator.com

--- Comment #3 from Derk-Jan Hartman hart...@videolan.org 2010-09-26 22:57:32 
UTC ---
*** Bug 25158 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- 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