<?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 Popup Themes  in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-themes/m-p/142989#M13342</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the different types of built-in Popup themes other than dark and light?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var fill = new SimpleFillSymbol("solid", null, new Color("#A4CE67"));&lt;BR /&gt; var popup = new Popup({&lt;BR /&gt; fillSymbol: fill,&lt;BR /&gt; titleInBody: false&lt;BR /&gt; }, domConstruct.create("div"));&lt;BR /&gt; &lt;BR /&gt; domClass.add(popup.domNode, "dark");&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jan 2017 17:27:43 GMT</pubDate>
    <dc:creator>SarojThapa1</dc:creator>
    <dc:date>2017-01-10T17:27:43Z</dc:date>
    <item>
      <title>Popup Themes</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-themes/m-p/142989#M13342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the different types of built-in Popup themes other than dark and light?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var fill = new SimpleFillSymbol("solid", null, new Color("#A4CE67"));&lt;BR /&gt; var popup = new Popup({&lt;BR /&gt; fillSymbol: fill,&lt;BR /&gt; titleInBody: false&lt;BR /&gt; }, domConstruct.create("div"));&lt;BR /&gt; &lt;BR /&gt; domClass.add(popup.domNode, "dark");&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2017 17:27:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-themes/m-p/142989#M13342</guid>
      <dc:creator>SarojThapa1</dc:creator>
      <dc:date>2017-01-10T17:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Popup Themes</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-themes/m-p/142990#M13343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Popup page in the API reference has a link to the css for that widget. If you search the&amp;nbsp;css for the widget you can see that there are the light and dark themes and also a blueTheme.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/3/jsapi/css/esri/dijit/css/Popup.css" title="https://developers.arcgis.com/javascript/3/jsapi/css/esri/dijit/css/Popup.css" rel="nofollow noopener noreferrer" target="_blank"&gt;https://developers.arcgis.com/javascript/3/jsapi/css/esri/dijit/css/Popup.css&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reviewing the css can also be helpful if you'd like to create your own theme. Just copy/paste the light or dark theme css to your app stylesheet and modify the colors to suit your needs. &amp;nbsp;For example if I wanted to create a new theme called 'redTheme' that has a red title bar with white text I could add this to my app stylesheet.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="selector token"&gt;.esriPopup.light .titlePane,
.dj_ie7 .esriPopup.light .titlePane .title,
.esriPopup.light .contentPane,
.esriPopup.light .actionsPane&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;background-color&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; #ff0000&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="property token"&gt;color&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; #fff&lt;SPAN class="punctuation token"&gt;;&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:52:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-themes/m-p/142990#M13343</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2021-12-11T07:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Popup Themes</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-themes/m-p/142991#M13344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Saroj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The esri.css file only has light, dark and blueTheme. The blueTheme is a very limited theme.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2017 17:34:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/popup-themes/m-p/142991#M13344</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2017-01-10T17:34:18Z</dc:date>
    </item>
  </channel>
</rss>

