<?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: heightScale not working in shell-panel? in Calcite Design System Questions</title>
    <link>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1516327#M688</link>
    <description>&lt;P&gt;.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Aug 2024 21:19:37 GMT</pubDate>
    <dc:creator>LefterisKoumis</dc:creator>
    <dc:date>2024-08-09T21:19:37Z</dc:date>
    <item>
      <title>heightScale not working in shell-panel?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1347321#M529</link>
      <description>&lt;P&gt;I have this simple shell panel positioned at the end. It seems that regardless the specified heightScale value (l, m, s), the shell panel does not change its height.&lt;/P&gt;&lt;P&gt;My perception is that if we use heightScale value "s", then the end panel should be short to show the content of the page after its bottom edge.&lt;/P&gt;&lt;P&gt;&lt;A href="https://codepen.io/lkoumis1/pen/mdvWjev?editors=1000" target="_blank" rel="noopener"&gt;https://codepen.io/lkoumis1/pen/mdvWjev?editors=1000&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/71373"&gt;@BenElan&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/574219"&gt;@KittyHurley&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Nov 2023 19:47:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1347321#M529</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2023-11-08T19:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: heightScale not working in shell-panel?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1354364#M534</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/14521"&gt;@LefterisKoumis&lt;/a&gt;&amp;nbsp;Thanks for pointing this out - the "heightScale" property can only be set when the "layout" is set to "horizontal". The documentation page lists all types of "layouts", and will be updated to reflect the change in the near future.&lt;/P&gt;&lt;P&gt;To modify the height when "layout" is set to "vertical", you can use CSS to alter the height of the content desired, in particular with the &lt;A href="https://developers.arcgis.com/calcite-design-system/components/panel/" target="_self"&gt;Panel&lt;/A&gt;, so the Action Bar isn't affected by the height. Could also add Shell's "content-behind" attribute to float over the remaining content.&lt;/P&gt;&lt;P&gt;For instance:&amp;nbsp;&lt;A href="https://codepen.io/geospatialem/pen/YzBjrJx" target="_blank"&gt;https://codepen.io/geospatialem/pen/YzBjrJx&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;style&amp;gt;
#panel-start {
  height: 30vh;
}
&amp;lt;/style&amp;gt;

&amp;lt;calcite-shell content-behind&amp;gt;
  &amp;lt;calcite-shell-panel slot="panel-end" position="end" id="shell-panel-start" display-mode="float" layout="vertical"&amp;gt;
    &amp;lt;calcite-action-bar slot="action-bar"&amp;gt;
      &amp;lt;calcite-action-group&amp;gt;
        &amp;lt;calcite-action text="Add" icon="plus"&amp;gt;&amp;lt;/calcite-action&amp;gt;
        &amp;lt;calcite-action active text="Layers" indicator icon="layers"&amp;gt;&amp;lt;/calcite-action&amp;gt;
      &amp;lt;/calcite-action-group&amp;gt;
      &amp;lt;calcite-action-group&amp;gt;
        &amp;lt;calcite-action text="Undo" icon="undo"&amp;gt;&amp;lt;/calcite-action&amp;gt;
        &amp;lt;calcite-action text="Redo" indicator icon="redo"&amp;gt;&amp;lt;/calcite-action&amp;gt;
        &amp;lt;calcite-action text="Save" disabled icon="save"&amp;gt;&amp;lt;/calcite-action&amp;gt;
      &amp;lt;/calcite-action-group&amp;gt;
      &amp;lt;calcite-action-group slot="bottom-actions"&amp;gt;
        &amp;lt;calcite-action text="Tips" icon="question"&amp;gt;&amp;lt;/calcite-action&amp;gt;
        &amp;lt;calcite-action text="Settings" indicator icon="gear"&amp;gt;&amp;lt;/calcite-action&amp;gt;
      &amp;lt;/calcite-action-group&amp;gt;
    &amp;lt;/calcite-action-bar&amp;gt;
    &amp;lt;calcite-panel heading="Layers" id="panel-start" closable&amp;gt;
      &amp;lt;calcite-block collapsible open heading="Symbology" description="Select type, color, and transparency"&amp;gt;
        &amp;lt;calcite-icon scale="s" slot="icon" icon="map-pin"&amp;gt;&amp;lt;/calcite-icon&amp;gt;
        &amp;lt;calcite-notice open&amp;gt;
          &amp;lt;div slot="message"&amp;gt;The viewers are going to love this&amp;lt;/div&amp;gt;
        &amp;lt;/calcite-notice&amp;gt;
      &amp;lt;/calcite-block&amp;gt;
    &amp;lt;/calcite-panel&amp;gt;
  &amp;lt;/calcite-shell-panel&amp;gt;
  &amp;lt;calcite-panel heading="Content" id="content"&amp;gt;
  &amp;lt;/calcite-panel&amp;gt;
&amp;lt;/calcite-shell&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 21:51:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1354364#M534</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2023-11-28T21:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: heightScale not working in shell-panel?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1515841#M685</link>
      <description>&lt;P&gt;Hello Kitty. Thank you for the above solution. When I tried to use a table in a&amp;nbsp;calcite-shell-center-row&amp;nbsp; so it spans across the bottom and under the panel located inside the calcite-shell-panel slot="panel-end"&amp;nbsp; it stops right at the left edge of the panel. Is it possible to span the table or does the panel at the panel-end occupies that space? Thank you.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LefterisKoumis_2-1722981634621.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/111786i03B672BFDB3282CD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LefterisKoumis_2-1722981634621.png" alt="LefterisKoumis_2-1722981634621.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2024 22:00:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1515841#M685</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2024-08-06T22:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: heightScale not working in shell-panel?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1516217#M687</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/14521"&gt;@LefterisKoumis&lt;/a&gt;&amp;nbsp;You could use the &lt;A href="https://developers.arcgis.com/calcite-design-system/components/shell/#slots" target="_self"&gt;Shell's "panel-start" or "panel-end" slots&lt;/A&gt;, for instance:&amp;nbsp;&lt;A href="https://codepen.io/geospatialem/pen/bGPrNwK" target="_blank"&gt;https://codepen.io/geospatialem/pen/bGPrNwK&lt;/A&gt;. You could also adjust the height and width of the Shell Panel and its contents using &lt;A href="https://developers.arcgis.com/calcite-design-system/components/shell-panel/#styles" target="_self"&gt;CSS variables&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 16:58:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1516217#M687</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2024-08-07T16:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: heightScale not working in shell-panel?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1516327#M688</link>
      <description>&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2024 21:19:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/heightscale-not-working-in-shell-panel/m-p/1516327#M688</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2024-08-09T21:19:37Z</dc:date>
    </item>
  </channel>
</rss>

