• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Resolved display error on Safari 13.0.3/Plesk Obsidian

sweetp

Basic Pleskian
there is a display bug on macOS Catalina 10.5.1/Safari 13.0.3/Obsidian 18.0.20 update #2

you can see the problem in the following image:
Plesk Obsidian css render error on macOS Safari 13.0.3
QOfgVoV.png


it is easily fixed with the following css:
(commenting out "display: flex;")

.pul-preview-panel {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
/* display: flex; */
width: 100%;
border: 1px solid #ccc;
-webkit-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
background-color: #fff;
overflow: hidden;
min-height: 32px;
}
 
Back
Top