How to generate <i class="fi-x"></i>
gettimothy <[email protected]>
| Newsgroups | gmane.comp.lang.smalltalk.squeak.seaside |
|---|---|
| Message-ID | <[email protected]> |
Hi all, Zurb has this construct: <button class="button" type="button"> <!-- Screen readers will see "close" --> <span class="show-for-sr">Close</span> <!-- Visual users will see the X, but not the "Close" text --> <span aria-hidden="true"><i class="fi-x"></i></span> </button> here:https://foundation.zurb.com/sites/docs/button.html#accessibility I am able to create the <i >..</i> construct using html html: html zurbButton beButton; with:[ html zurbSpan beShowForScreenReader; with:'Close'. html zurbSpan ariaHidden:'true'; with:[html html:'<i class="fi-x"></i>']] I cannot find the iconTag in the system and I am not sure how to use WAGenericTag tag:'i' within the above method. thx _______________________________________________ seaside mailing list [email protected] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside