<?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 Custom Theming Variables List in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-theming-variables-list/m-p/1263470#M6341</link>
    <description>&lt;P&gt;Hello,&lt;BR /&gt;I am in the process of building an application in Experience Builder Developer Edition and would like to create a custom theme here.&lt;BR /&gt;This has worked so far and I was able to make my first adjustments in the variables.json.&lt;BR /&gt;But now I have the problem that I want to adjust the dropdown of the search in the list widget and I have also partially managed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markdown"&gt;{
	"darkTheme": true,
	"coloration": "default",
	"components": {
		"popper": {
			"bg": "green",
			"color": "green",
			"border": {
				"width": "1px",
				"color": "#d5d5d5"
			},
			"hover": {
				"bg": "red"
			}
		}
	}
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;some things were changed but the hover effect doesn't seem to change. Now I wonder if there is somewhere a list with the variables or maybe also a repo in which I have once completely everything. Or a docu which widget/component has which variables in the json.&lt;BR /&gt;&lt;BR /&gt;My other question is about the popup. Which opens from the map widget. I would like to set here in the mobile view that the popup is directly expanded by default. Is there also a way to do this?&lt;/P&gt;</description>
    <pubDate>Thu, 02 Mar 2023 13:05:04 GMT</pubDate>
    <dc:creator>WUE_BARAL</dc:creator>
    <dc:date>2023-03-02T13:05:04Z</dc:date>
    <item>
      <title>Custom Theming Variables List</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-theming-variables-list/m-p/1263470#M6341</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I am in the process of building an application in Experience Builder Developer Edition and would like to create a custom theme here.&lt;BR /&gt;This has worked so far and I was able to make my first adjustments in the variables.json.&lt;BR /&gt;But now I have the problem that I want to adjust the dropdown of the search in the list widget and I have also partially managed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markdown"&gt;{
	"darkTheme": true,
	"coloration": "default",
	"components": {
		"popper": {
			"bg": "green",
			"color": "green",
			"border": {
				"width": "1px",
				"color": "#d5d5d5"
			},
			"hover": {
				"bg": "red"
			}
		}
	}
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;some things were changed but the hover effect doesn't seem to change. Now I wonder if there is somewhere a list with the variables or maybe also a repo in which I have once completely everything. Or a docu which widget/component has which variables in the json.&lt;BR /&gt;&lt;BR /&gt;My other question is about the popup. Which opens from the map widget. I would like to set here in the mobile view that the popup is directly expanded by default. Is there also a way to do this?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 13:05:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-theming-variables-list/m-p/1263470#M6341</guid>
      <dc:creator>WUE_BARAL</dc:creator>
      <dc:date>2023-03-02T13:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Theming Variables List</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-theming-variables-list/m-p/1264078#M6358</link>
      <description>&lt;P&gt;The documentation (&lt;A href="https://developers.arcgis.com/experience-builder/guide/theme-development/" target="_blank"&gt;https://developers.arcgis.com/experience-builder/guide/theme-development/&lt;/A&gt;) lists the theme variables, at least you get an idea of what's available I guess. Interested how you found out about popper and popper.hover.bg?&lt;/P&gt;&lt;P&gt;While not recommended, you can inspect the DOM, figure out the jimu components and override styles in style.scss&lt;/P&gt;&lt;P&gt;Regarding popup: I think that's by design so that the map and the popup are both visible on smaller screens. I wasn't able to find a config to set what you are asking for, neither in the webmap nor in ExB. Last resort is that you write your own custom widget that opens the feature info in a panel or modal.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 17:32:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-theming-variables-list/m-p/1264078#M6358</guid>
      <dc:creator>MichaelGaiggEsri</dc:creator>
      <dc:date>2023-03-03T17:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Theming Variables List</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-theming-variables-list/m-p/1264399#M6372</link>
      <description>&lt;P&gt;Thanks for the reply. I found out, that the search in the list widget uses the popper by the inspector.&amp;nbsp;&lt;BR /&gt;But the hover state will not change to red. The other stuff worked here, so i guess i just have the wrong&amp;nbsp;structure for the hover state. But i cant figure it out.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I also found al list with a lot of variables in this repo:&lt;BR /&gt;&lt;A href="https://github.com/Esri/arcgis-js-api/blob/4master/assets/esri/themes/base/widgets/_LayerList.scss" target="_blank"&gt;https://github.com/Esri/arcgis-experience-builder-sdk-resources/blob/master/themes/demo-theme/variables.json&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I also tried it over the style.scss but the classes in the dom are not unique so this is also a bit tricky.&lt;BR /&gt;&lt;BR /&gt;But there was not an example for the list widget.&amp;nbsp;&lt;BR /&gt;Do you know where i can find something like that? (best case for the list widget)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 06:22:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-theming-variables-list/m-p/1264399#M6372</guid>
      <dc:creator>WUE_BARAL</dc:creator>
      <dc:date>2023-03-06T06:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Theming Variables List</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-theming-variables-list/m-p/1264600#M6380</link>
      <description>&lt;P&gt;What I'd do is to inspect the dom and then target the element you want to adjust, in your case I believe that's the .esri-menu__list-item ---- just add the below css into your style.scss and you should be good. Not sure if that's the ideal or best way, but it should work.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MichaelGaiggEsri_0-1678122957111.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/64436iF6FE6959FD0D52BE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MichaelGaiggEsri_0-1678122957111.png" alt="MichaelGaiggEsri_0-1678122957111.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 17:17:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/custom-theming-variables-list/m-p/1264600#M6380</guid>
      <dc:creator>MichaelGaiggEsri</dc:creator>
      <dc:date>2023-03-06T17:17:32Z</dc:date>
    </item>
  </channel>
</rss>

