itmeJP Community


itmeJP Community

[Suggestion] Schedule mouseovers

Would it be possible to see the time of a show in a mouseover on the schedule?

I know i can just click it and see the info, but my finger is so weak, you know? Ok I’m just lazy …

:itmejphappy:

1 Like

Closing topic, you’re just lazy :itmejpangry:

j/k won’t close topic.
However we have to budget additional development so might not happen. Sorry!

2 Likes

My html and CSS maybe rusty, but not useless, and for free…

<!DOCTYPE html>
<html>
<style>
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #151f27;  /* Tried to steal your color scheme */
    color: #ed8913;
    text-align: center;
    border-radius: 7px;
    padding: 6px 0;

    /* Tooltip position */
    position: absolute;
    top: -5px;
    left: 120%; 
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
</style>
<body style="text-align:center;">

<p>The text below is special:</p>

<div class="tooltip">Tickle me
  <span class="tooltiptext">* SPARKLES *</span>

</div>

</body>
</html>

I don’t know the strings you use for time and timezones… but they would go where it * SPARKLES *

I am not expecting you to use this. Just saying, dev-senpai would do this in a minute or less :wink:

2 Likes

Would use it if I knew how to :stuck_out_tongue:
I understand CSS and all that but PHP is nothing I know the slightest about.

1 Like