Kunena / Kunena-Forum

Kunena Forum - Forum / Bulletin Board / Discussions component for Joomla - This is the 6.x/5.x main development branch. Please do not open issues regarding earlier versions of Kunena
https://www.kunena.org
GNU General Public License v3.0
1.75k stars 813 forks source link

Apple Safari styling fails with media statement #9596

Closed makitso closed 3 months ago

makitso commented 7 months ago

Describe the bug The kunena file template.css or template.min.css has the following entry selector:

@media (width >= 992px) { .container-header .mod-menu { flex-direction: row; flex: 1; display: flex; } } Safari does not recognize the width >= and bypasses the entire selector. Changing selector to this format and the selector works. @media (min-width: 992px)

Joomla version: 4.4.1 Kunena version: 6.2.1 Php version: 8.1.25 Database version: 10.5.21-MariaDB

Desktop (please complete the following information):

github-actions[bot] commented 6 months ago

This issue is stale because it has been open 30 days with no activity.

810 commented 3 months ago

Kunena uses only fixed operator like: @media (max-width: 320px) {

So im closing this issue