Elastic: Improved styles for the list of tasks assigned to an email

This commit is contained in:
Aleksander Machniak 2019-04-26 08:11:44 +00:00
parent 3a2240a13d
commit fe7142b8c4
2 changed files with 6 additions and 1 deletions

View file

@ -313,6 +313,11 @@ html.touch #tasklist {
list-style-type: none;
margin: 0;
padding: 0;
li {
display: flex;
align-items: center;
}
}
input {

View file

@ -1869,7 +1869,7 @@ class tasklist extends rcube_plugin
foreach ($this->message_tasks as $task) {
$checkbox = new html_checkbox(array(
'name' => 'completed',
'class' => 'complete',
'class' => 'complete pretty-checkbox',
'title' => $this->gettext('complete'),
'data-list' => $task['list'],
));