<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[notificationFx.css]]></title><description><![CDATA[<p dir="auto">So I have a dilemma that I don’t quite know how to solve<br />
currently in my custom.css . I have the settings for the alert module which uses the notificationFx.css. And it works perfectly.</p>
<pre><code>.ns-box {        
  background-color: rgba(0, 0, 0, 0.5);
  padding: 17px;
  line-height: 1.4;
  margin-bottom: 10px;
  z-index: 1;
  font-size: 70%;
  position: relative;
  display: table;
  word-wrap: break-word;
  max-width: 100%;
  border-width: 1px;
  border-radius: 5px;
  border-style: solid;
  border-color: var(--color-text-dimmed);
}
.ns-box .dimmed {     
    color: #00FFFF;
}
.ns-box .normal {     
    color: #ffffff;
}
.ns-box .bright {     
    color: #00FF00;
}
</code></pre>
<p dir="auto">The problem is my new module MMM-StopwatchTimer  uses exactly the same alert  notificationFx.css<br />
I don’t want to have the same settings the same colors. How do I fix this problem</p>
<p dir="auto">Any help would be appreciated</p>
]]></description><link>https://forum.magicmirror.builders/topic/15900/notificationfx-css</link><generator>RSS for Node</generator><lastBuildDate>Sun, 14 Jun 2026 14:08:26 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/15900.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 22 Nov 2021 17:11:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to notificationFx.css on Mon, 22 Nov 2021 18:35:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> yes I just did that I sent you a copy of it</p>
]]></description><link>https://forum.magicmirror.builders/post/96695</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96695</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Mon, 22 Nov 2021 18:35:29 GMT</pubDate></item><item><title><![CDATA[Reply to notificationFx.css on Mon, 22 Nov 2021 18:36:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: ray">@<bdi>ray</bdi></a> said in <a href="/post/96693">notificationFx.css</a>:</p>
<blockquote>
<p dir="auto">If I set it up just like this. It works</p>
</blockquote>
<p dir="auto">but ALL the custom classes need .alert in front</p>
<p dir="auto">only use for alert</p>
<p dir="auto">sorry, didn’t scroll down</p>
<p dir="auto">open the developers window, ctrl-shift-i, select the elements tab, click the pointer top left and navigate to the content in the left pane, and  you will see the classes tree on the right… top is closest to the module, bottom is more global</p>
]]></description><link>https://forum.magicmirror.builders/post/96694</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96694</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 22 Nov 2021 18:36:14 GMT</pubDate></item><item><title><![CDATA[Reply to notificationFx.css on Mon, 22 Nov 2021 18:31:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> said in <a href="/post/96689">notificationFx.css</a>:</p>
<blockquote>
<p dir="auto">.alert .ns-box .normal</p>
</blockquote>
<p dir="auto">If I set it up just like this. It works<br />
but the 3 items below my new module will use them, which I do not want</p>
<pre><code>.alert .ns-box {        /*ns-box is for Alert. It displays notifications for other modules.*/
  background-color: rgba(0, 0, 0, 0.5);
  padding: 17px;
  line-height: 1.4;
  margin-bottom: 10px;
  z-index: 1;
  font-size: 70%;
  position: relative;
  display: table;
  word-wrap: break-word;
  max-width: 100%;
  border-width: 1px;
  border-radius: 5px;
  border-style: solid;
  border-color: var(--color-text-dimmed);
}
.ns-alert .dimmed {     /* Header MagicMirror */
    color: #00FFFF;
}
.ns-box .normal {     /* */
    color: #ffffff;
}
.ns-box .bright {     /* Welcome start was successful */
    color: #00FF00;
}
</code></pre>
<p dir="auto">if I set it up like this. Everything is black and white. except for the box it will be black and the text will be white</p>
<pre><code>.alert .ns-box {        /*ns-box is for Alert. It displays notifications for other modules.*/
  background-color: rgba(0, 0, 0, 0.5);
  padding: 17px;
  line-height: 1.4;
  margin-bottom: 10px;
  z-index: 1;
  font-size: 70%;
  position: relative;
  display: table;
  word-wrap: break-word;
  max-width: 100%;
  border-width: 1px;
  border-radius: 5px;
  border-style: solid;
  border-color: var(--color-text-dimmed);
}
.alert .ns-box .dimmed {     /* Header MagicMirror */
    color: #00FFFF;
}
.alert .ns-box .normal {     /* */
    color: #ffffff;
}
.alert .ns-box .bright {     /* Welcome start was successful */
    color: #00FF00;
}

</code></pre>
<p dir="auto">I cannot see what I’m doing wrong here</p>
]]></description><link>https://forum.magicmirror.builders/post/96693</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96693</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Mon, 22 Nov 2021 18:31:11 GMT</pubDate></item><item><title><![CDATA[Reply to notificationFx.css on Mon, 22 Nov 2021 18:11:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: ray">@<bdi>ray</bdi></a><br />
. (dot) means class<br />
no dot means html element (li, ul, div, span…)</p>
<p dir="auto">that should have worked</p>
<p dir="auto">this</p>
<pre><code>.alert .ns-box .normal
</code></pre>
<p dir="auto">means  ALL the .normal classes, INSIDE .ns-box classes ,  inside .alert classes</p>
]]></description><link>https://forum.magicmirror.builders/post/96689</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96689</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 22 Nov 2021 18:11:14 GMT</pubDate></item><item><title><![CDATA[Reply to notificationFx.css on Mon, 22 Nov 2021 17:59:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> when I added it to the 1st 1 it worked<br />
but when I added to the other 3 everything is in black and white now</p>
<pre><code>.alert .ns-box  {        /*ns-box is for Alert. It displays notifications for other modules.*/
  background-color: rgba(0, 0, 0, 0.5);
  padding: 17px;
  line-height: 1.4;
  margin-bottom: 10px;
  z-index: 1;
  font-size: 70%;
  position: relative;
  display: table;
  word-wrap: break-word;
  max-width: 100%;
  border-width: 1px;
  border-radius: 5px;
  border-style: solid;
  border-color: var(--color-text-dimmed);
}
.alert .ns-box .dimmed {     /* Header MagicMirror */
    color: #00FFFF;
}
.alert .ns-box .normal {     /* */
    color: #ffffff;
}
.alert .ns-box .bright {     /* Welcome start was successful */
    color: #00FF00;
}
</code></pre>
<p dir="auto">is it because I have<br />
dimmed<br />
normal<br />
bright<br />
should there be a  –  there instead of . Maybe</p>
<p dir="auto">I should’ve included these in my 1st reply sorry</p>
]]></description><link>https://forum.magicmirror.builders/post/96686</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96686</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Mon, 22 Nov 2021 17:59:30 GMT</pubDate></item><item><title><![CDATA[Reply to notificationFx.css on Mon, 22 Nov 2021 17:50:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> I think I tried that but I’ll try again</p>
]]></description><link>https://forum.magicmirror.builders/post/96685</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96685</guid><dc:creator><![CDATA[Ray]]></dc:creator><pubDate>Mon, 22 Nov 2021 17:50:25 GMT</pubDate></item><item><title><![CDATA[Reply to notificationFx.css on Mon, 22 Nov 2021 17:36:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ray" aria-label="Profile: ray">@<bdi>ray</bdi></a> I think if u add the modulename as the start of each class, that will override the general case</p>
<p dir="auto">alert .ns-box {…</p>
<p dir="auto">}</p>
<p dir="auto">note the space between alert and .ns-box</p>
<p dir="auto">repeat for all the classes that apply</p>
]]></description><link>https://forum.magicmirror.builders/post/96684</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/96684</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 22 Nov 2021 17:36:31 GMT</pubDate></item></channel></rss>