<?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: How to create a calcite button that looks like a link? in Calcite Design System Questions</title>
    <link>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1694260#M908</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/427733"&gt;@ACrateau&lt;/a&gt;&amp;nbsp;Yes, you can do so using the --calcite-font-size-relative-base and --calcite-font-weight-normal (&lt;EM&gt;deprecated&lt;/EM&gt;) tokens:&amp;nbsp;&lt;A href="https://codepen.io/geospatialem/pen/ZYpayqW" target="_blank" rel="noopener"&gt;https://codepen.io/geospatialem/pen/ZYpayqW&lt;/A&gt;.&lt;/P&gt;&lt;LI-CODE lang="css"&gt;#custom-btn {
    --calcite-font-size-relative-base: var(--calcite-font-size-relative-lg);
  /* Note that --calcite-font-weight-normal is deprecated, but still supported in Button */
  --calcite-font-weight-normal: var(--calcite-font-weight-bold);
}&lt;/LI-CODE&gt;&lt;P&gt;While --calcite-font-weight-normal is supported it is deprecated, but the team is working on support for the replacement --calcite-font-weight-regular token soon. Additional information can be sought and followed via issue #&lt;A href="https://github.com/Esri/calcite-design-system/issues/14190" target="_self"&gt;14190&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Thu, 02 Apr 2026 18:39:51 GMT</pubDate>
    <dc:creator>KittyHurley</dc:creator>
    <dc:date>2026-04-02T18:39:51Z</dc:date>
    <item>
      <title>How to create a calcite button that looks like a link?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1501263#M654</link>
      <description>&lt;P&gt;How to create a calcite button that looks like a link?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 19:05:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1501263#M654</guid>
      <dc:creator>ForrestLin</dc:creator>
      <dc:date>2024-07-03T19:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a calcite button that looks like a link?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1502223#M657</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/5931"&gt;@ForrestLin&lt;/a&gt;&amp;nbsp;You can use CSS to fit your use case, perhaps something like:&amp;nbsp;&lt;A href="https://codepen.io/geospatialem/pen/gONOLVG" target="_blank"&gt;https://codepen.io/geospatialem/pen/gONOLVG&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;style&amp;gt;
  calcite-button[href] {
    --calcite-color-brand: var(--calcite-color-text-link);
    text-decoration: underline solid var(--calcite-color-text-link);
  }
&amp;lt;/style&amp;gt;

&amp;lt;calcite-button appearance="transparent" href="https://developers.arcgis.com/calcite-design-system/components/button"&amp;gt;Button with a link&amp;lt;/calcite-button&amp;gt;
&amp;lt;calcite-button&amp;gt;Button with no link&amp;lt;/calcite-button&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 07 Jul 2024 22:15:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1502223#M657</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2024-07-07T22:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a calcite button that looks like a link?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1502388#M658</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/574219"&gt;@KittyHurley&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2024 13:20:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1502388#M658</guid>
      <dc:creator>ForrestLin</dc:creator>
      <dc:date>2024-07-08T13:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a calcite button that looks like a link?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1692310#M906</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/574219"&gt;@KittyHurley&lt;/a&gt;&amp;nbsp; Is it possible to use the same logic to increase the default font size and weight of a button's text?&amp;nbsp; &amp;nbsp; I'm trying the same approach you provided here and adding the CSS properties font-weight and font-size, but the renderer is ignoring them - any thoughts?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2026 17:41:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1692310#M906</guid>
      <dc:creator>ACrateau</dc:creator>
      <dc:date>2026-03-24T17:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a calcite button that looks like a link?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1694260#M908</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/427733"&gt;@ACrateau&lt;/a&gt;&amp;nbsp;Yes, you can do so using the --calcite-font-size-relative-base and --calcite-font-weight-normal (&lt;EM&gt;deprecated&lt;/EM&gt;) tokens:&amp;nbsp;&lt;A href="https://codepen.io/geospatialem/pen/ZYpayqW" target="_blank" rel="noopener"&gt;https://codepen.io/geospatialem/pen/ZYpayqW&lt;/A&gt;.&lt;/P&gt;&lt;LI-CODE lang="css"&gt;#custom-btn {
    --calcite-font-size-relative-base: var(--calcite-font-size-relative-lg);
  /* Note that --calcite-font-weight-normal is deprecated, but still supported in Button */
  --calcite-font-weight-normal: var(--calcite-font-weight-bold);
}&lt;/LI-CODE&gt;&lt;P&gt;While --calcite-font-weight-normal is supported it is deprecated, but the team is working on support for the replacement --calcite-font-weight-regular token soon. Additional information can be sought and followed via issue #&lt;A href="https://github.com/Esri/calcite-design-system/issues/14190" target="_self"&gt;14190&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2026 18:39:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/how-to-create-a-calcite-button-that-looks-like-a/m-p/1694260#M908</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2026-04-02T18:39:51Z</dc:date>
    </item>
  </channel>
</rss>

