You are not logged in.
Pages: 1
Hello
In the Kanban Global view, is it possible to adjust the width of the columns : "Status 1 / ... / New / In progress / Closed "
Maybe set a smaller width in the source code?
Thank you very much
Offline
The Kanban only lets you collapse columns to reduce their width.
It could be possible to change all of the column's width using the UI Customization tab in the Entity form using the following CSS and replacing 350 with your desired width:
.kanban-column {
width: 350px;
}
GLPI Collaborator and Plugin Developer.
My non-English comments are automated translations. Sorry for any confusion that causes.
Mes commentaires non anglais sont des traductions automatiques. Désolé pour toute confusion qui cause.
Mis comentarios que no están en inglés son traducciones automáticas. Perdón por cualquier confusión que cause.
Offline
That's fine, I've modified the CSS in the UI Customization tab.
Is a resizing handle possible between each column ?
I can just add a resising handle at the bottom right
.kanban-column {
width: 350px;
resize: horizontal
overflow: auto;
}
Thanks
Last edited by lynch4fr (2023-09-28 16:32:46)
Offline
It is not possible to add a better resize feature using just CSS. When using the "resize" property, it is up to the browser to decide where to put the handle.
GLPI Collaborator and Plugin Developer.
My non-English comments are automated translations. Sorry for any confusion that causes.
Mes commentaires non anglais sont des traductions automatiques. Désolé pour toute confusion qui cause.
Mis comentarios que no están en inglés son traducciones automáticas. Perdón por cualquier confusión que cause.
Offline
Pages: 1