From b1b9568c96ca2d0371d28171687af9a5f63ef959 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 2 Jun 2020 19:58:28 -0400 Subject: Adding text-body class to message toast. Fixes #736 --- ui/src/utils.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'ui/src/utils.ts') diff --git a/ui/src/utils.ts b/ui/src/utils.ts index 69afc7a4..bb1b6d90 100644 --- a/ui/src/utils.ts +++ b/ui/src/utils.ts @@ -394,17 +394,22 @@ export function setTheme(theme: string = 'darkly') { } // Load the theme dynamically - if (!document.getElementById(theme)) { + let cssLoc = `/static/assets/css/themes/${theme}.min.css`; + loadCss(theme, cssLoc); + document.getElementById(theme).removeAttribute('disabled'); +} + +export function loadCss(id: string, loc: string) { + if (!document.getElementById(id)) { var head = document.getElementsByTagName('head')[0]; var link = document.createElement('link'); - link.id = theme; + link.id = id; link.rel = 'stylesheet'; link.type = 'text/css'; - link.href = `/static/assets/css/themes/${theme}.min.css`; + link.href = loc; link.media = 'all'; head.appendChild(link); } - document.getElementById(theme).removeAttribute('disabled'); } export function objectFlip(obj: any) { @@ -474,6 +479,7 @@ export function messageToastify( text: `${body}
${creator}`, avatar: avatar, backgroundColor: backgroundColor, + className: 'text-body', close: true, gravity: 'top', position: 'right', -- cgit v1.2.3