On 25 Nov 2017, at 1:41pm, Richard Hipp <d...@sqlite.org> wrote:

> Web developers - help me with this:  For item (3) above, how can I
> make the ellipsis or icon to "show more detail" configurable using
> CSS?

Declare two different CSS classes: one is the "hidden" one which does not show 
the content, and the other is the "shown" one which shows the content with 
whatever style you want.  Use an "onclick" event on the ellipsis which swaps 
the class for the appropriate details from one to the other.

<https://www.w3schools.com/CSSref/pr_class_visibility.asp>

You may have too much text to make this practical, but had you considered 
tooltips ?  Hover the cursor over an entry you’re interested in and it’ll show 
you more details.

<https://www.w3schools.com/howto/howto_css_tooltip.asp>

A disadvantage is that because you cannot click on the contents of a tooltip 
there’s no way to use them for text which includes links.

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to