Commit a66fb652 by Dányi Bence

webui: id based tooltips converted to class based tooltips

parent ea876902
...@@ -52,13 +52,13 @@ ...@@ -52,13 +52,13 @@
</li> </li>
{% endfor %} {% endfor %}
{% else %} {% else %}
<div id="new-wm-tooltip"> <div class="tooltip">
<div id="new-wm-tooltip-container"> <div class="container">
<p>{% trans "You have no groups." %}</p> <p>{% trans "You have no groups." %}</p>
<p> <p>
{% trans "Create a new one, and add your students to the new group." %} {% trans "Create a new one, and add your students to the new group." %}
</p> </p>
<div id="new-wm-tooltip-tail"></div> <div class="tail"></div>
</div> </div>
</div> </div>
{% endif %} {% endif %}
......
...@@ -81,13 +81,13 @@ ...@@ -81,13 +81,13 @@
{% endfor %} {% endfor %}
{% if not mytemplates and not group %} {% if not mytemplates and not group %}
<div id="new-wm-tooltip"> <div class="tooltip">
<div id="new-wm-tooltip-container"> <div class="container">
<p>{% trans "You have no own templates." %}</p> <p>{% trans "You have no own templates." %}</p>
<p> <p>
{% trans "Create a new one, and share it with your students. Or you can also use a common one." %} {% trans "Create a new one, and share it with your students. Or you can also use a common one." %}
</p> </p>
<div id="new-wm-tooltip-tail"></div> <div class="tail"></div>
</div> </div>
</div> </div>
{% endif %} {% endif %}
......
...@@ -115,13 +115,13 @@ ...@@ -115,13 +115,13 @@
</li> </li>
{% endfor %} {% endfor %}
{% else %} {% else %}
<div id="new-wm-tooltip"> <div class="tooltip">
<div id="new-wm-tooltip-container"> <div class="container">
<p>{% trans "You have not started any machines yet." %}</p> <p>{% trans "You have not started any machines yet." %}</p>
<p> <p>
{% trans "Choose a template, and you can use the system in a minute." %} {% trans "Choose a template, and you can use the system in a minute." %}
</p> </p>
<div id="new-wm-tooltip-tail"></div> <div class="tail"></div>
</div> </div>
</div> </div>
{% endif %} {% endif %}
...@@ -112,15 +112,15 @@ ...@@ -112,15 +112,15 @@
</div> </div>
<div class="boxes"> <div class="boxes">
{% if noshare %} {% if noshare %}
<div id="new-wm-tooltip" style="position:absolute"> <div class="tooltip" style="position:absolute">
<div id="new-wm-tooltip-container"> <div class="container">
<p> <p>
{% trans "This group has no shared templates." %} {% trans "This group has no shared templates." %}
</p> </p>
<p> <p>
{% trans "Share one, and the group members can start their own virtual machine." %} {% trans "Share one, and the group members can start their own virtual machine." %}
</p> </p>
<div id="new-wm-tooltip-tail"></div> <div class="tail"></div>
</div> </div>
</div> </div>
{% endif %} {% endif %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment