<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Bullet point color bug in Splash Screen widget 2.16? in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/bullet-point-color-bug-in-splash-screen-widget-2/m-p/238728#M6415</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't make the bullet points in the Splash Screen widget be any color other than white. When I change the foreground color, the text will change but not the bullet points. The same goes for a numbered list. This happens in both WAB online and developer. Has anyone else seen this behavior?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jun 2020 20:51:13 GMT</pubDate>
    <dc:creator>ER_Michigan</dc:creator>
    <dc:date>2020-06-18T20:51:13Z</dc:date>
    <item>
      <title>Bullet point color bug in Splash Screen widget 2.16?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/bullet-point-color-bug-in-splash-screen-widget-2/m-p/238728#M6415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't make the bullet points in the Splash Screen widget be any color other than white. When I change the foreground color, the text will change but not the bullet points. The same goes for a numbered list. This happens in both WAB online and developer. Has anyone else seen this behavior?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2020 20:51:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/bullet-point-color-bug-in-splash-screen-widget-2/m-p/238728#M6415</guid>
      <dc:creator>ER_Michigan</dc:creator>
      <dc:date>2020-06-18T20:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Bullet point color bug in Splash Screen widget 2.16?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/bullet-point-color-bug-in-splash-screen-widget-2/m-p/238729#M6416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Emily,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The issue is that the bullets are HTML LI elements and b&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;y default, it is not possible to change the bullet color of a list item. But this link gives you a css workaround&amp;nbsp;&lt;A class="link-titled" href="https://www.w3schools.com/howto/howto_css_bullet_color.asp" title="https://www.w3schools.com/howto/howto_css_bullet_color.asp" rel="nofollow noopener noreferrer" target="_blank"&gt;How To Change Bullet Color of a List&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;This is what you need to add to the splash widgets css\style.css file:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="selector token"&gt;.jimu-widget-splash .splash-container ul li&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
  &lt;SPAN class="property token"&gt;list-style&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; none&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;/* Remove default bullets */&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

&lt;SPAN class="selector token"&gt;.jimu-widget-splash .splash-container ul li::before&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
  &lt;SPAN class="property token"&gt;content&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"\2022"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;  &lt;SPAN class="comment token"&gt;/* Add content: \2022 is the CSS Code/unicode for a bullet */&lt;/SPAN&gt;
  &lt;SPAN class="property token"&gt;color&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; red&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;/* Change the color */&lt;/SPAN&gt;
  &lt;SPAN class="property token"&gt;font-weight&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; bold&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;/* If you want it to be bold */&lt;/SPAN&gt;
  &lt;SPAN class="property token"&gt;display&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; inline-block&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;/* Needed to add space between the bullet and the text */&lt;/SPAN&gt;
  &lt;SPAN class="property token"&gt;width&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; 1em&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;/* Also needed for space (tweak if needed) */&lt;/SPAN&gt;
  &lt;SPAN class="property token"&gt;margin-left&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; -1em&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;/* Also needed for space (tweak if needed) */&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:01:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/bullet-point-color-bug-in-splash-screen-widget-2/m-p/238729#M6416</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T12:01:05Z</dc:date>
    </item>
  </channel>
</rss>

