Elastic: Improved styles for the list of tasks assigned to an email
This commit is contained in:
parent
3a2240a13d
commit
fe7142b8c4
2 changed files with 6 additions and 1 deletions
|
@ -313,6 +313,11 @@ html.touch #tasklist {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
|
li {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
|
|
|
@ -1869,7 +1869,7 @@ class tasklist extends rcube_plugin
|
||||||
foreach ($this->message_tasks as $task) {
|
foreach ($this->message_tasks as $task) {
|
||||||
$checkbox = new html_checkbox(array(
|
$checkbox = new html_checkbox(array(
|
||||||
'name' => 'completed',
|
'name' => 'completed',
|
||||||
'class' => 'complete',
|
'class' => 'complete pretty-checkbox',
|
||||||
'title' => $this->gettext('complete'),
|
'title' => $this->gettext('complete'),
|
||||||
'data-list' => $task['list'],
|
'data-list' => $task['list'],
|
||||||
));
|
));
|
||||||
|
|
Loading…
Add table
Reference in a new issue