<?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 Re: Changing Color Properties of Dijit Dialog? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397083#M36588</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian If you post a link to your site we could help you more. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 May 2015 14:54:07 GMT</pubDate>
    <dc:creator>RickeyFight</dc:creator>
    <dc:date>2015-05-15T14:54:07Z</dc:date>
    <item>
      <title>Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397079#M36584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning.&amp;nbsp; I have added a splash window to my application as shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SplashWindow.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/100235_SplashWindow.jpg" style="width: 620px; height: 253px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking to change the colors of the title banner, main text space, bottom banner, button color, and dialog border (see red arrows).&amp;nbsp; I am using the DIV ID's and trying to specify the properties in .css, but I am not getting what I need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a sample of my HTML code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- Application Splash Screen --&amp;gt;&lt;/P&gt;&lt;P&gt; &amp;lt;div data-dojo-type="dijit/Dialog" data-dojo-id="dialogWelcome" id="dialogWelcomeTitle" title="City of Edmond, Oklahoma - Survey Monuments" style="width: 600px;"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;table class="dijitDialogPaneContentArea"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id="splashScreenDialogMessage"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This is where the main test goes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;br&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/table&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class="dijitDialogPaneActionBar"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div dojotype="dijit.form.Button" id="buttonClose" data-dojo-type="dijit/form/Button" type="button" style="align-content: center" onclick="dialogWelcome.onCancel();"&amp;gt;Yes, I Accept&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;lt;div dojotype="dijit.form.Button" id="buttonExit" data-dojo-type="dijit/form/Button" type="button" style="align-content: center"&amp;gt;No, Return to Home&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have looked at the dijit guide online for assistance, but have not found what I am looking for.&amp;nbsp; For those who have customized some splash screen windows, can you provide some guidance?&amp;nbsp; Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 13:05:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397079#M36584</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2015-05-15T13:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397080#M36585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian,&lt;/P&gt;&lt;P&gt;If you want all of those changed I would change the theme. &lt;/P&gt;&lt;P&gt;&lt;A href="http://dojotoolkit.org/reference-guide/1.10/dijit/themes.html" title="http://dojotoolkit.org/reference-guide/1.10/dijit/themes.html"&gt;Themes and Theming — The Dojo Toolkit - Reference Guide&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is not what you want you can go in and change the individual elements using the developer toolbar to find the proper css.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 13:12:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397080#M36585</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2015-05-15T13:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397081#M36586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By luck, I found these properties.&amp;nbsp; I cannot seem to find a list of properties to change colors for all elements of the dialog window.&amp;nbsp; Here is what I have figured out so far:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .claro .dijitDialogUnderlay {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background: #000;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .claro .dijitDialogPaneContentArea {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background: #f2eee8;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the result.&amp;nbsp; Notice how I still have the blue colors in the dialog window, yet I can put a transparent background underneath the dialog window and change the main content area to a tan color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SplashWindowSample2.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/100233_SplashWindowSample2.jpg" style="width: 620px; height: 228px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 14:49:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397081#M36586</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2015-05-15T14:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397082#M36587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this changes the background of your title:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.claro .dijitDialogTitleBar {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background-color:rgba(56,56,56,.5);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 14:52:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397082#M36587</guid>
      <dc:creator>TimWitt2</dc:creator>
      <dc:date>2015-05-15T14:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397083#M36588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ian If you post a link to your site we could help you more. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 14:54:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397083#M36588</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2015-05-15T14:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397084#M36589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tim and Rickey, you guys have been a huge help so far.&amp;nbsp; Good stuff so far.&amp;nbsp; Unfortunately, I cannot host this site on the DMZ at this time.&amp;nbsp; I am working on the site on localhost.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is now how it looks with your suggestions.&amp;nbsp; Just down to a few properties.&amp;nbsp; Does the documentation not cover these properties?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SplashWindowSample3.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/100253_SplashWindowSample3.jpg" style="width: 620px; height: 249px;" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 15:02:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397084#M36589</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2015-05-15T15:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397085#M36590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So in chrome Developer Tools you can use the magnify glass to select the elements you have left.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="100252" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/100252_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then click on add new Style rule. From there you can change the color&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="100257" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/100257_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 15:08:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397085#M36590</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2015-05-15T15:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397086#M36591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The way the dojo CSS files are structured, you'll find the various CSS styles for a given type of dojo object all grouped together. If you use the Chrome developer tools, use the Search box for ".dijiDialog".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the relevant CSS from claro.css that you're looking for is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;.claro .dijitDialogTitleBar {
&amp;nbsp;&amp;nbsp;&amp;nbsp; border: 1px solid #ffffff;
&amp;nbsp;&amp;nbsp;&amp;nbsp; border-top: none;
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-color: #abd6ff;
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-image: url("images/standardGradient.png");
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-repeat: repeat-x;
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-image: -o-linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
&amp;nbsp;&amp;nbsp;&amp;nbsp; background-image: linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
&amp;nbsp;&amp;nbsp;&amp;nbsp; _background-image: none;
&amp;nbsp;&amp;nbsp;&amp;nbsp; padding: 5px 7px 4px 7px;
}&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The gradient you see may or may not be the result of an image as specified in the background-image CSS property. I haven't poked around with it to tell. I should note that the same thing is probably happening with the buttons you want to modify as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:09:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397086#M36591</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2021-12-11T18:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397087#M36592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp; Still struggling with the color gradient and border, but I am close.&amp;nbsp; I guess your sample, allows for removing the gradient?&amp;nbsp; If so, I will try it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SplashWindowSample4.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/100255_SplashWindowSample4.jpg" style="width: 620px; height: 220px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rickey, the element selector and Chrome is making things much easier &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 16:04:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397087#M36592</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2015-05-15T16:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397088#M36593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there an easy way to remove the color gradient?&amp;nbsp; I am still looking for that property.&amp;nbsp; I am all set if I can figure that out.&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 16:35:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397088#M36593</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2015-05-15T16:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397089#M36594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What does your css look for that element? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 16:38:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397089#M36594</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2015-05-15T16:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397090#M36595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like this.&amp;nbsp; Properties are specified on index line number 177.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="DialogTitleProperties.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/100268_DialogTitleProperties.jpg" style="width: 620px; height: 307px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 16:42:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397090#M36595</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2015-05-15T16:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397091#M36596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would think that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="keyword" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #006699;"&gt;background-image&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;: none;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;&lt;SPAN class="keyword" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #006699;"&gt;background-image&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: #000000;"&gt;: none !important;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;should do it. That should eliminate the CSS gradients that are there by default (or not display the gradient PNG image).&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 16:44:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397091#M36596</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2015-05-15T16:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397092#M36597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really like the work the developer of this dojo theme (Flat Dojo) has done. Its a nice modern looking theme for many dojo (and Esri) widgets. It has a pretty bare-bones looking dialog that I think would be fairly straightforward to customize to suit your needs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://yiweima.github.io/flatdojo/pages/others.html" title="http://yiweima.github.io/flatdojo/pages/others.html"&gt;Flat Dojo Theme&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 16:46:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397092#M36597</guid>
      <dc:creator>KellyHutchins</dc:creator>
      <dc:date>2015-05-15T16:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397093#M36598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That did the trick:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;background-image: none !important; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a solid blue title bar.&amp;nbsp; Going to change the text to white.&amp;nbsp; Thank you much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 16:46:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397093#M36598</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2015-05-15T16:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Color Properties of Dijit Dialog?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397094#M36599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for all of the assistance.&amp;nbsp; I was able to solve the issue with all of your input. Lots of great feedback.&amp;nbsp; The splash window looks pretty nice (see below).&amp;nbsp; It matches the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="100280" alt="SplashWindowFinal.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/100280_SplashWindowFinal.jpg" style="width: 620px; height: 250px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 18:16:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/changing-color-properties-of-dijit-dialog/m-p/397094#M36599</guid>
      <dc:creator>IanPeebles</dc:creator>
      <dc:date>2015-05-15T18:16:25Z</dc:date>
    </item>
  </channel>
</rss>

