Change stylesheet path name for mobile browsers
This commit is contained in:
parent
b8030313e5
commit
cb635fb3cb
1 changed files with 8 additions and 2 deletions
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
namespace Friendica\Core;
|
namespace Friendica\Core;
|
||||||
|
|
||||||
|
use Friendica\BaseObject;
|
||||||
use Friendica\Core\Logger;
|
use Friendica\Core\Logger;
|
||||||
use Friendica\Core\System;
|
use Friendica\Core\System;
|
||||||
|
|
||||||
|
@ -191,11 +192,16 @@ class Theme
|
||||||
*/
|
*/
|
||||||
public static function getStylesheetPath($theme)
|
public static function getStylesheetPath($theme)
|
||||||
{
|
{
|
||||||
$a = get_app();
|
$a = BaseObject::getApp();
|
||||||
|
|
||||||
$opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
|
$opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
|
||||||
if (file_exists('view/theme/' . $theme . '/style.php')) {
|
if (file_exists('view/theme/' . $theme . '/style.php')) {
|
||||||
return 'view/theme/' . $theme . '/style.pcss' . $opts;
|
if ($a->is_mobile) {
|
||||||
|
// Workaround for iOS Safari not sending the cookie for static files
|
||||||
|
return 'view/theme/' . $theme . '/style' . $opts;
|
||||||
|
} else {
|
||||||
|
return 'view/theme/' . $theme . '/style.pcss' . $opts;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 'view/theme/' . $theme . '/style.css';
|
return 'view/theme/' . $theme . '/style.css';
|
||||||
|
|
Loading…
Reference in a new issue