This commit is contained in:
cube
2026-04-30 12:49:13 +01:00
parent 6fce468dc0
commit 63895052f0
4 changed files with 14 additions and 3 deletions

BIN
myriad/static/lock.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 B

View File

@@ -148,9 +148,9 @@ form textarea{
.title{
font-size:20px;
display:block;
margin-top:20px;
margin-bottom:20px;
display:block;
}
.heading.big{
font-size:20px;
@@ -166,6 +166,17 @@ form textarea{
display:block;
}
.lock{
float:left;
margin-right:10px;
}
.minilock{
width:16px;
height:auto;
float:left;
margin-right:10px;
}
#blog{
max-height:300px;
overflow-y:scroll;

View File

@@ -20,7 +20,7 @@
<div class="profile {{member[10]}}" id="m{{ member[0] }}">
<div class="heading"><b>{{ member[3]|safe }}</b> {{ member[4]|safe }}</div>
<div class="heading">{% if member[9]==0 %}<img class="minilock" src="{{ url_for('static', filename='lock.png') }}">{% endif %}<b>{{ member[3]|safe }}</b> {{ member[4]|safe }}</div>
{% if icons[member[0]] %}
<img src="{{ url_for('static', filename='icons/'+icons[member[0]]) }}" class="icon">
{% else %}

View File

@@ -21,7 +21,7 @@
{% else %}
<img class="icon" src="{{ url_for('static', filename='any.jpg') }}">
{% endif %}
<div class="title">{{member[3]}}</div>
<div class="title">{% if member[9]==0 %}<img class="lock" src="{{ url_for('static', filename='lock.png') }}">{% endif %}{{member[3]}}</div>
<div class="maintext">
{{member[5].replace('\n', '<br>')|safe}}
</div>