<?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: Change FeatureTable font size in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175245#M77379</link>
    <description>&lt;P&gt;It seems the problem has to do with the browser font-size appearance settings , which will override the css settings&lt;/P&gt;</description>
    <pubDate>Wed, 18 May 2022 18:24:59 GMT</pubDate>
    <dc:creator>AdrianaPaese</dc:creator>
    <dc:date>2022-05-18T18:24:59Z</dc:date>
    <item>
      <title>Change FeatureTable font size</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175010#M77360</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;Does anybody know how do I change the font-size of text in FeatureTable cells?&lt;/P&gt;&lt;P&gt;I am sending an image attached&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 13:04:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175010#M77360</guid>
      <dc:creator>AdrianaPaese</dc:creator>
      <dc:date>2022-05-18T13:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Change FeatureTable font size</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175039#M77361</link>
      <description>&lt;P&gt;To change the font size add this css rule to your deployed apps index.html:&lt;/P&gt;&lt;LI-CODE lang="css"&gt;.esri-grid .esri-grid__content {
    font-size: medium;
    --lumo-font-size-s: .875rem;
}&lt;/LI-CODE&gt;&lt;P&gt;of course adjusting sizes to your liking. The font-size portion applies to the table column content and the --lumo-font-size-s pertains to the column header text.&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 13:57:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175039#M77361</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2022-05-18T13:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Change FeatureTable font size</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175096#M77364</link>
      <description>Hi Robert&lt;BR /&gt;Thank you very much for your reply&lt;BR /&gt;.esri-grid .esri-grid__content {&lt;BR /&gt;font-size: medium;&lt;BR /&gt;--lumo-font-size-s: .875rem;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;It worked well for the header but it didn´t change the font size within the&lt;BR /&gt;cells&lt;BR /&gt;Do you know what else may be happening?&lt;BR /&gt;Are these coming from&lt;BR /&gt;&lt;A href="https://js.arcgis.com/4.23/esri/themes/light/main.css" target="_blank"&gt;https://js.arcgis.com/4.23/esri/themes/light/main.css&lt;/A&gt;&lt;BR /&gt;or should I declare another css?&lt;BR /&gt;Thank you&lt;BR /&gt;Adriana&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 18 May 2022 15:12:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175096#M77364</guid>
      <dc:creator>AdrianaPaese</dc:creator>
      <dc:date>2022-05-18T15:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Change FeatureTable font size</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175101#M77365</link>
      <description>&lt;P&gt;In my testing that css rule worked fine. Where are you placing this css rule? In which file?&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 15:18:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175101#M77365</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2022-05-18T15:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Change FeatureTable font size</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175219#M77378</link>
      <description>Hi Robert&lt;BR /&gt;&lt;BR /&gt;The css rule you provided also works in the ESRI´s sample&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/?sample=widgets-featuretable-editing" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/sample-code/sandbox/?sample=widgets-featuretable-editing&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I replaced the feature layer and fieldConfigs in the above sample with my&lt;BR /&gt;own data and it also worked.&lt;BR /&gt;&lt;BR /&gt;However, if I save the sample´s code as a html file and open it in the&lt;BR /&gt;browser the font-size definition has no effect on the text within the cells.&lt;BR /&gt;The same happens with my own code.&lt;BR /&gt;&lt;BR /&gt;I don´t know why this is happening.&lt;BR /&gt;Thank you very much&lt;BR /&gt;</description>
      <pubDate>Wed, 18 May 2022 17:55:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175219#M77378</guid>
      <dc:creator>AdrianaPaese</dc:creator>
      <dc:date>2022-05-18T17:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Change FeatureTable font size</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175245#M77379</link>
      <description>&lt;P&gt;It seems the problem has to do with the browser font-size appearance settings , which will override the css settings&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 18:24:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175245#M77379</guid>
      <dc:creator>AdrianaPaese</dc:creator>
      <dc:date>2022-05-18T18:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Change FeatureTable font size</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175260#M77381</link>
      <description>&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 18:39:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175260#M77381</guid>
      <dc:creator>AdrianaPaese</dc:creator>
      <dc:date>2022-05-18T18:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Change FeatureTable font size</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175266#M77383</link>
      <description>&lt;P&gt;try this:&lt;/P&gt;&lt;LI-CODE lang="css"&gt;vaadin-grid-cell-content {
    font-size: .575rem !important;
}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 18 May 2022 18:44:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175266#M77383</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2022-05-18T18:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Change FeatureTable font size</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175282#M77384</link>
      <description>&lt;P&gt;Yes, it works regardless of the browser minimum font-size settings&lt;/P&gt;&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 18:58:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/change-featuretable-font-size/m-p/1175282#M77384</guid>
      <dc:creator>AdrianaPaese</dc:creator>
      <dc:date>2022-05-18T18:58:11Z</dc:date>
    </item>
  </channel>
</rss>

