forked from GNUsocial/gnu-social
[Directory] Changed the title of the template and add a css rule for actor-bio
This commit is contained in:
parent
f67c41a7ac
commit
b9622e4512
@ -411,3 +411,15 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*actors stream*/
|
||||||
|
.actor-bio{
|
||||||
|
order: 3;
|
||||||
|
word-break: break-word;
|
||||||
|
padding: var(--small-size);
|
||||||
|
border-radius: 0 0 var(--unit-size) var(--unit-size);
|
||||||
|
width: 70%;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: right;
|
||||||
|
}
|
@ -410,3 +410,15 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*actors stream*/
|
||||||
|
.actor-bio{
|
||||||
|
order: 3;
|
||||||
|
word-break: break-word;
|
||||||
|
padding: var(--small-size);
|
||||||
|
border-radius: 0 0 var(--unit-size) var(--unit-size);
|
||||||
|
width: 70%;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: right;
|
||||||
|
}
|
@ -409,3 +409,15 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*actors stream*/
|
||||||
|
.actor-bio{
|
||||||
|
order: 3;
|
||||||
|
word-break: break-word;
|
||||||
|
padding: var(--small-size);
|
||||||
|
border-radius: 0 0 var(--unit-size) var(--unit-size);
|
||||||
|
width: 70%;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: right;
|
||||||
|
}
|
@ -4,7 +4,7 @@
|
|||||||
{{ parent() }}
|
{{ parent() }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block title %}Welcome!{% endblock %}
|
{% block title %}Actors{% endblock %}
|
||||||
|
|
||||||
{% block stylesheets %}
|
{% block stylesheets %}
|
||||||
{{ parent() }}
|
{{ parent() }}
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% set actor_bio = actor.getBio() %}
|
{% set actor_bio = actor.getBio() %}
|
||||||
<div class="actor-bio note-content">
|
<div class="actor-bio">
|
||||||
{% if actor_bio %}
|
{% if actor_bio %}
|
||||||
<p>{{ actor_bio }}</p>
|
<p>{{ actor_bio }}</p>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
Loading…
Reference in New Issue
Block a user