Commit c408641b by Őry Máté

webui: info box for boxes styled

parent 9b74d316
......@@ -42,6 +42,7 @@ body
font-size:1.5em;
margin-top:0;
padding:10px;
position: relative;
}
&.wide {
margin-right: 30px;
......
......@@ -614,3 +614,29 @@ table {
background-image: url(/static/icons/key--exclamation.png);
}
}
.boxhelp {
position: relative;
.boxhelp-box {
color:#000;
position: absolute;
left: -100px;
width: 500px;
z-index: 1000000;
font-size: .7em;
background-color: #ffc;
border-radius:4px;
border:1px solid #aaa;
box-shadow:0 0 30px rgba(0,0,0,0.3);
margin:20px;
display: none;
}
&:hover .boxhelp-box {
display: block;
}
.icon {
display: block;
float: right;
}
}
<div class="contentblock">
<h2>{% block title %}Doboz címe (cseréld le){% endblock title %}{% block boxhelp %}{% endblock %}</h2>
<h2>{% block boxhelp %}{% endblock %}{% block title %}Doboz címe (cseréld le){% endblock title %}</h2>
<div class="content">
{% block content %}
Doboz tartalma (cseréld le)
......
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