Skip to content
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.

Table: Tooltip hidden #152

Closed
TotallyInformation opened this issue Nov 24, 2018 · 2 comments
Closed

Table: Tooltip hidden #152

TotallyInformation opened this issue Nov 24, 2018 · 2 comments

Comments

@TotallyInformation
Copy link

  • Framework Version: GitCDN master (as at 2018-11-24)
  • Flavor used: default
  • Operating System/Browser: Windows 10, Chrome
  • Code to reproduce:
                <table id="valveTable">
                    <thead>
                        <tr>
                            <th>Room</th>
                            <th>Measured Temperature</th>
                            <th>Percentage Demand</th>
                            <th>SetPoint</th>
                            <th>Window State</th>
                        </tr>            
                    </thead>
                    <tbody>
                        <tr m-for="data in valveData">
                            <td data-label="Room"><span aria-label="{{data.id}}">{{data.room}}</span></td>
                            <td data-label="MeasuredTemperature">{{data.MeasuredTemperature==-32768?"NA":data.MeasuredTemperature/10}}</td>
                            <td data-label="PercentageDemand" style="{{data.PercentageDemand==100?'color:red':''}}">{{data.PercentageDemand}}</td>
                            <td data-label="SetPoint">{{data.SetPoint==-200?"NA":data.SetPoint/10}}</td>
                            <td data-label="WindowState">{{data.WindowState}}</td>
                        </tr>
                    </tbody>
                </table>
  • Screenshots:
  • Bug description:

Tooltip is hidden behind other rows. It should appear over the top of other rows.

  • Additional information (Optional):

Using with the Moon.JS front-end framework.

@Chalarangelo
Copy link
Owner

Might have to do with the z-index attribute. If you could provide me with a JSFiddle or a Codepen, I might be able to code a solution.

@TotallyInformation
Copy link
Author

Sorry, I couldn't wait and I'm no longer using mini.css

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants