Skip to content

[BUG] Display bug in Safari #1358

@jrozelle

Description

@jrozelle

Environment

Self-Hosted (Docker)

System

Safari 17

Version

2.1.1

Describe the problem

On vertical layout, with large item size, item text are below Description on Safari, whereas there are above in Firefox.

When inspecting elements, I found this style attribute :

.item.size-large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    **-webkit-box-direction: reverse;**
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: left;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-height: 6rem;
    margin: .2rem;
    padding: .5rem;
}

In Firefox :

.item.size-large .tile-title {
	height: auto;
	padding: .1rem .25rem;
}

Is there any solution to remove "-webkit-box-direction: reverse" ?

Additional info

No response

Please tick the boxes

Metadata

Metadata

Assignees

Labels

✅ Fixed[ISSUE] Auto-Assigned to Tickets whose fix has been deployed🐛 Bug[ISSUE] Ticket describing something that isn't working📌 Keep Open[ISSUE][PR] Prevent auto-closing🛩️ Released 4.0.0Included in release v4.0.0🛩️ Released 4.1.6Included in release v4.1.6

Projects

Status

Done

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions