Fix task list label styling.
This commit is contained in:
parent
1bea08654f
commit
d0797ba631
@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 12.0.2
|
||||||
|
|
||||||
|
* Fix task list label styling.
|
||||||
|
|
||||||
## 12.0.1
|
## 12.0.1
|
||||||
|
|
||||||
### Minor changes and fixes
|
### Minor changes and fixes
|
||||||
|
@ -34,6 +34,11 @@
|
|||||||
.task-list-name {
|
.task-list-name {
|
||||||
flex-grow: 2;
|
flex-grow: 2;
|
||||||
|
|
||||||
|
label {
|
||||||
|
// Cancelling the Peertube margin-bottom on labels
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: row nowrap;
|
flex-flow: row nowrap;
|
||||||
|
@ -39,7 +39,7 @@ export default function tplMucTaskList (el, tasklist) {
|
|||||||
${!el.edit
|
${!el.edit
|
||||||
? html`
|
? html`
|
||||||
<div class="task-list-name">
|
<div class="task-list-name">
|
||||||
<a @click=${el.toggleTasks}>${tasklist.get('name')}</a>
|
<a @click=${el.toggleTasks}><label>${tasklist.get('name')}</label></a>
|
||||||
</div>
|
</div>
|
||||||
<button type="button" class="task-list-action" title="${i18nCreateTask}" @click=${el.openAddTaskForm}>
|
<button type="button" class="task-list-action" title="${i18nCreateTask}" @click=${el.openAddTaskForm}>
|
||||||
<converse-icon class="fa fa-plus" size="1em"></converse-icon>
|
<converse-icon class="fa fa-plus" size="1em"></converse-icon>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user