<?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: myTheme esriPopupMobile color in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590144#M15684</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tracy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Also here are my complete changes so that the mobile popup is completely styled to my color scheme:&lt;/P&gt;&lt;P&gt;I added editied pointer images to my styles images folder as you see below (i.e. ./images/pointerbottom.png).&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;.esriPopupMobile .titlePane {
&amp;nbsp; background: #5a6b4d;
}

.esriMobileNavigationBar {
&amp;nbsp; background-color: #5a6b4d;
&amp;nbsp; background-image: -moz-linear-gradient( center bottom, rgb(90,107,77) 25%, rgb(37,57,22) 82% );
&amp;nbsp; background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.25, rgb(90,107,77)), color-stop(0.82, rgb(37,57,22)) );
&amp;nbsp; background-image: -moz-linear-gradient( center bottom, rgb(90,107,77) 25%, rgb(37,57,22) 82% );
&amp;nbsp; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5a6b4d', endColorstr='#253916');
&amp;nbsp; -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#5a6b4d', endColorstr='#253916')";
}

.esriPopupMobile .pointer.top {
&amp;nbsp; background: url("./images/pointertop.png") no-repeat;
}

.esriPopupMobile .pointer.bottom {
&amp;nbsp; background: url("./images/pointerbottom.png") no-repeat;
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 01:21:01 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2021-12-12T01:21:01Z</dc:date>
    <item>
      <title>myTheme esriPopupMobile color</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590138#M15678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I made my own theme from the blue FoldableTheme and called it myblue.&amp;nbsp; I notice that although the popups are styled with my blue color, the mobile popups are not.&amp;nbsp; I tried adding this to the myblue/style.css, but it didn't work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.esriPopupMobile .titlePane {&lt;/P&gt;&lt;P&gt;&amp;nbsp; background-color: #CBDDEB;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added important to the color, but it didn't make any difference.&amp;nbsp; I'm confused why I was able to easily override esri.Popup .titlePane with my own color, but adding&amp;nbsp; .esriPopupMobile .titlePane had no effect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 18:15:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590138#M15678</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2016-02-18T18:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: myTheme esriPopupMobile color</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590139#M15679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tracy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Change it to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;.esriPopupMobile .titlePane {
&amp;nbsp; background: #5a6b4d;
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:20:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590139#M15679</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T01:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: myTheme esriPopupMobile color</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590140#M15680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good catch, but no that didn't do it.&amp;nbsp;&amp;nbsp; If I do an 'inspect element' while debugging, I see that the style is coming from esri.css.&amp;nbsp;&amp;nbsp; I wonder if that makes a difference compared to having it come from myblue/style.css&amp;nbsp; I would have thought the styles from my own theme would take precedence. &lt;IMG alt="bluestyle.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/184774_bluestyle.png" style="width: 620px; height: 224px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I change the background while inspecting the element, it is changed on the map.&amp;nbsp; It doesn't work if I put a line in stylesheet. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 19:48:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590140#M15680</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2016-02-18T19:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: myTheme esriPopupMobile color</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590141#M15681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tracy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; OK that is where your testing and mine differ. I am not sure where you are making this change (i.e. which .css file), but I am making the change in my apps theme/FoldableTheme/styles/olive/style.css which take priority over most other .css files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now "olive" is my custom style color in the FoldableTheme.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 19:54:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590141#M15681</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-02-18T19:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: myTheme esriPopupMobile color</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590142#M15682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to change it in my stemapp/themes/FoldableTheme/styles/myblue/style.css.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I change the color on the server, yes, it is the right blue color.&amp;nbsp; I'm trying to understand if I always have to make these changes here, or if I can go back to stemapp , so I don't always have to make these modification per app. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other thing I don't understand is that if I'm in the Design environment, where you're doing all your configurations, if you click 'Launch' the popups are almost all of the mobile style.&amp;nbsp;&amp;nbsp; On the one that I deployed (copied to my server), the popups are more likely to be the more standard looking popup.&amp;nbsp; I am in the same brower, just a different tab.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 20:06:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590142#M15682</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2016-02-18T20:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: myTheme esriPopupMobile color</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590143#M15683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tracy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; OK, here is what happens in WAB. When you create a new app in WAB it copies the StemApp to a new folder with the apps id # as the folder name. So the changes you make to the stemApp will only effect the next new app you create as the files in the stemApp are only used when copying over to the new apps folder or if you are debugging WAB using the web app viewer url.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for you to see your css changes in an existing app you have to make the changes in the apps folder not the stemApp folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for me the example would be:&lt;/P&gt;&lt;P&gt;C:\web-appbuilder-1.3_\server\apps\2\themes\FoldableTheme\styles\olive\style.css&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 20:27:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590143#M15683</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-02-18T20:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: myTheme esriPopupMobile color</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590144#M15684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tracy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Also here are my complete changes so that the mobile popup is completely styled to my color scheme:&lt;/P&gt;&lt;P&gt;I added editied pointer images to my styles images folder as you see below (i.e. ./images/pointerbottom.png).&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;.esriPopupMobile .titlePane {
&amp;nbsp; background: #5a6b4d;
}

.esriMobileNavigationBar {
&amp;nbsp; background-color: #5a6b4d;
&amp;nbsp; background-image: -moz-linear-gradient( center bottom, rgb(90,107,77) 25%, rgb(37,57,22) 82% );
&amp;nbsp; background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.25, rgb(90,107,77)), color-stop(0.82, rgb(37,57,22)) );
&amp;nbsp; background-image: -moz-linear-gradient( center bottom, rgb(90,107,77) 25%, rgb(37,57,22) 82% );
&amp;nbsp; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5a6b4d', endColorstr='#253916');
&amp;nbsp; -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#5a6b4d', endColorstr='#253916')";
}

.esriPopupMobile .pointer.top {
&amp;nbsp; background: url("./images/pointertop.png") no-repeat;
}

.esriPopupMobile .pointer.bottom {
&amp;nbsp; background: url("./images/pointerbottom.png") no-repeat;
}&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:21:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590144#M15684</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T01:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: myTheme esriPopupMobile color</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590145#M15685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So this is all bundled together then, when I export it to move to the server?&amp;nbsp; I find it confusing that everything just has an app number and no names.&amp;nbsp; Then again, I've only been messing with this a few days, so it will take time to get the hang of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 20:37:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590145#M15685</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2016-02-18T20:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: myTheme esriPopupMobile color</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590146#M15686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tracy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; When you are done configuring the app you go to the home screen in WAB and click on the ... icon and choose download. From there is minifies/uglifies some of the code and packages it into a zip. So yes. You can see what the app# is for the app you are working on by looking in the browsers address bar when configuring the app.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 20:43:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/mytheme-esripopupmobile-color/m-p/590146#M15686</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-02-18T20:43:40Z</dc:date>
    </item>
  </channel>
</rss>

