]> Untitled Git - lemmy.git/commitdiff
Adding text-body class to message toast. Fixes #736
authorDessalines <tyhou13@gmx.com>
Tue, 2 Jun 2020 23:58:28 +0000 (19:58 -0400)
committerDessalines <tyhou13@gmx.com>
Tue, 2 Jun 2020 23:58:28 +0000 (19:58 -0400)
ui/src/utils.ts

index 69afc7a4aff7c2a514038c2c4fa15d3b6815e711..bb1b6d905c8dbff4f21652e0ecaa029ce2da3f73 100644 (file)
@@ -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}<br />${creator}`,
     avatar: avatar,
     backgroundColor: backgroundColor,
+    className: 'text-body',
     close: true,
     gravity: 'top',
     position: 'right',