Skip to content

Sorting up/down instead of left right. #4082

@alatteri

Description

@alatteri

Describe the feature you'd like

Thank you for the Alpha sorting. But as you see here it is sorted via column left to right, and then goes to the next row. I think the eye naturally wants to search vertical top to bottom. See screen shots.

Example.

A B C D
E F G H

Vs.

A D G
B E H
C F

2
1

Describe the benefits this would bring to existing BookStack users

More logical visual search.

Can the goal of this request already be achieved via other means?

To get the kind of sort desired, you could add the below (unofficial/unsupported) customization to the "Custom HTML Head Content" customization setting in your BookStack instance:

<style>
.entity-shelf-books.grid {
    display: block;
    columns: 3;
}
@media screen and (max-width: 600px) {
    .entity-shelf-books.grid {
        columns: 2;
    }   
}
@media screen and (max-width: 480px) {
    .entity-shelf-books.grid {
        columns: 1;
    }   
}
</style>

Have you searched for an existing open/closed issue?

  • I have searched for existing issues and none cover my fundemental request

How long have you been using BookStack?

1 to 5 years

Additional context

No response

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions