Last modified: 2007-01-09 14:05:48 UTC
If you decide to hide the byte difference from recent changes by using... .mw-plusminus-pos, .mw-plusminus-neg, .mw-plusminus-null { display: none; } ...the periods that separate it from the surrounding text are still displayed. Without CSS: (diff) (hist) . . MyPage; 04:30 . . (-134) . . TheUser (Talk) With CSS display:none: (diff) (hist) . . MyPage; 04:30 . . . . TheUser (Talk) Expected display with CSS display:none: (diff) (hist) . . MyPage; 04:30 . . TheUser (Talk) I have created a patch for this, which I will upload now.
Created attachment 3038 [details] Patch to move periods inside span tag
If the periods are moved within the span, then declaring a color for the span (as done currently on en.wp) will cause the colors to be colored as well.
That's a good point, any suggestions? How about wrapping the dots in a span tag? <span class="mw-plusminus-dots"> . . </span>
Created attachment 3039 [details] Patch to wrap periods in span tag Alternative patch to wrap periods in span tag as described in comment 3. The previous patch was incomplete (the periods were only removed from one call) and broken (there was a call that didn't add periods) so I'm obsoleting it.
Please can you explain why this is invalid? The problem is there as described.