GithubHelp home page GithubHelp logo

Questions regarding tooltiops about cirrus HOT 3 CLOSED

zemian avatar zemian commented on May 25, 2024
Questions regarding tooltiops

from cirrus.

Comments (3)

MacFJA avatar MacFJA commented on May 25, 2024
  1. Shows tooltips when hover over an input text:
  2. Shows tooltips on either label or input text (in another word, show it whenever I hover over the field area):

You have an improper use of the class input-control. This class is for adding elements into the <input> like this:

<div class="input-control">
    <input class="input-contains-icon" type="text" placeholder="Enter search term">
    <span class="icon">🔍</span>
</div>

(Doc: https://www.cirrus-ui.com/forms/glyphs)


  1. Shows tooltips when hover over an input text:
  2. Shows tooltips on either label or input text (in another word, show it whenever I hover over the field area):

You have a typo on one of the classes: it's tooltip--bottom (instead of tooltip-bottom)


  1. Shows tooltips when hover over an input text:

With the correct usage of input-control, it's works well:

<label>Search</label>
<div class="input-control tooltip tooltip--bottom" data-tooltip="Hey there!">
    <input type="text" placeholder="Enter search term">
</div>

  1. Shows tooltips on either label or input text (in another word, show it whenever I hover over the field area):

You have a "syntax" error: you can't have multiple class attribute

<!-- improper use of input-control + typo in tooltip direction -->
<div class="input-control tooltip tooltip-bottom" data-tooltip="Hey there!">
   <label>Search</label>
   <input type="text" placeholder="Enter search term">
</div>

To have the same rendering:

<div class="tooltip tooltip--bottom" data-tooltip="Hey there!">
   <label>Search</label>
   <div class="input-control"><input type="text" placeholder="Enter search term">
</div>

  1. Shows html content (larger text) in tooltips:

Tooltip can only contain RAW text

If you want more complex data, you should try to look at the dropdown feature


(All the code have been tested on the Cirrus playground)

from cirrus.

zemian avatar zemian commented on May 25, 2024

Ah, you are correct that I have typo and mis-usage on these. Thanks for pointing them out! I will close the issue.

from cirrus.

zemian avatar zemian commented on May 25, 2024

Hm... wait, dropdown is not same as Tooltips, and I have seen a need on larger text display of tooltips (or just displaying something fancy as tooltips using CSS and html is a need). @Spiderpig86 Would you guys consider adding that as feature? Would you like me to create a separate feature request?

from cirrus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.