forked from vergnet/application-amicale
Changed Planex landscape indicator text color
This commit is contained in:
parent
76aeb1599c
commit
a38e251cb5
1 changed files with 4 additions and 2 deletions
|
@ -80,8 +80,10 @@ export default class PlanexScreen extends React.Component<Props> {
|
||||||
this.customInjectedJS += '$("head").append(\'<link rel="stylesheet" href="' + CUSTOM_CSS_NIGHTMODE + '" type="text/css"/>\');';
|
this.customInjectedJS += '$("head").append(\'<link rel="stylesheet" href="' + CUSTOM_CSS_NIGHTMODE + '" type="text/css"/>\');';
|
||||||
|
|
||||||
this.customInjectedJS +=
|
this.customInjectedJS +=
|
||||||
'$(".fc-toolbar .fc-center").append(\'<p id="rotateToLandscape">' + i18n.t("planexScreen.rotateToLandscape") + '</p>\');' +
|
'$(".fc-toolbar .fc-center").append(\'<p id="rotateToLandscape" style="color: ' + ThemeManager.getCurrentThemeVariables().brandPrimary + '">' +
|
||||||
'$(".fc-toolbar .fc-center").append(\'<p id="rotateToPortrait">' + i18n.t("planexScreen.rotateToPortrait") + '</p>\');' +
|
i18n.t("planexScreen.rotateToLandscape") + '</p>\');' +
|
||||||
|
'$(".fc-toolbar .fc-center").append(\'<p id="rotateToPortrait" style="color: ' + ThemeManager.getCurrentThemeVariables().brandPrimary + '">' +
|
||||||
|
i18n.t("planexScreen.rotateToPortrait") + '</p>\');' +
|
||||||
'removeAlpha();' +
|
'removeAlpha();' +
|
||||||
'});true;'; // Prevent crash on ios
|
'});true;'; // Prevent crash on ios
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue