Default labeled list para spacing too big

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Default labeled list para spacing too big

wolandscat
Two labelled lists can be seen here.

Asciidoc source here (search for 'horizontal') - the standard way to write a labeled list AFAIK.

The paragraph spacing is clearly wrong compared to the rest of the text.

Is there something simple I am missing here?
Reply | Threaded
Open this post in threaded view
|

Re: Default labeled list para spacing too big

mojavelinux
Administrator
The horizontal description list is currently laid out using a table. As a result, it is inheriting the default table cell spacing, which is then being added to the paragraph spacing. The top and bottom padding on cells in a horizontal description list should probably be zeroed.

td.hdlist1, td.hdlist2 {
  padding-top: 0;
  padding-bottom: 0;
}

Could you file an issue? I'll mark it with the new design tag so that our emerging design team can review the situation and provide advice.

Cheers,

p.s. In general, the styling of the horizontal description list could be improved.

-Dan

On Wed, Jul 15, 2015 at 12:43 AM, wolandscat [via Asciidoctor :: Discussion] <[hidden email]> wrote:
Two labelled lists can be seen here.

Asciidoc source here (search for 'horizontal') - the standard way to write a labeled list AFAIK.

The paragraph spacing is clearly wrong compared to the rest of the text.

Is there something simple I am missing here?


If you reply to this email, your message will be added to the discussion below:
http://discuss.asciidoctor.org/Default-labeled-list-para-spacing-too-big-tp3501.html
To start a new topic under Asciidoctor :: Discussion, email [hidden email]
To unsubscribe from Asciidoctor :: Discussion, click here.
NAML



--
Reply | Threaded
Open this post in threaded view
|

Re: Default labeled list para spacing too big

wolandscat
yep will do.