Hi.
can this solution be correct?
.pkp_tasks .panel {
max-height: 80vh;
overflow-y: scroll;
}
Thanks.
Hi.
can this solution be correct?
.pkp_tasks .panel {
max-height: 80vh;
overflow-y: scroll;
}
Thanks.
If you have many tasks in your admin task panel. You can’t do scroll.
You can solve this:
cd plugins/themes/default-child
nano DefaultChildThemePlugin.inc.php
public function init() {
$this->setParent('defaultthemeplugin');
/* extendemos css backend */
$this->addStyle('admin-style', 'styles/admin.css', array( 'contexts' => 'backend' ));
}
cd styles
nano admin.css
.pkp_tasks .panel{max-height:80vh;overflow-y:auto}
Hi @juanito,
What version of OJS (or OMP) are you using? (Please include this in your posts.)
Regards,
Alec Smecher
Public Knowledge Project Team
Sorry @asmecher . OJS 3.1.0. Testing on firefox.
Thank you very much.
Hi @juanito,
I think this got a style tweak in the 3.1.1 release – I’d suggest upgrading to see if that resolves it.
Regards,
Alec Smecher
Public Knowledge Project Team