<?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: CSS Style Sheet and Tab Control in G Web Development Software</title>
    <link>https://ni.lithium.com/t5/G-Web-Development-Software/CSS-Style-Sheet-and-Tab-Control/m-p/4319609#M596</link>
    <description>&lt;P&gt;That seems to work, although I see the boxes around the numeric controls within the tabs disappearing.&amp;nbsp; I'm looking at that now.&amp;nbsp; Thank you.&lt;/P&gt;</description>
    <pubDate>Sun, 30 Jul 2023 14:47:40 GMT</pubDate>
    <dc:creator>johnsmith2022</dc:creator>
    <dc:date>2023-07-30T14:47:40Z</dc:date>
    <item>
      <title>CSS Style Sheet and Tab Control</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/CSS-Style-Sheet-and-Tab-Control/m-p/4318713#M594</link>
      <description>&lt;P&gt;I've a tab control and a CSS style sheet.&amp;nbsp; But, I only seem to be able to set the background color of the tab title bar to the right of the active tabs.&amp;nbsp; All the tabs, including the tab interior and controls/indicators isn't affected.&amp;nbsp; The style.css has:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;.tab_control {&lt;BR /&gt;background-color: lightgray;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the HTML class attribute in G Web for the tab control is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;tab_control&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there some way to affect the background colors of the tab contents?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2023 19:28:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/CSS-Style-Sheet-and-Tab-Control/m-p/4318713#M594</guid>
      <dc:creator>johnsmith2022</dc:creator>
      <dc:date>2023-07-25T19:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Style Sheet and Tab Control</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/CSS-Style-Sheet-and-Tab-Control/m-p/4319490#M595</link>
      <description>&lt;P&gt;Using the Browser Developer Tools (in my-case &lt;A href="https://developer.chrome.com/docs/devtools/css/" target="_self"&gt;Chrome Developer Tools&lt;/A&gt;) I was able to find that&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The css custom property &lt;FONT face="courier new,courier"&gt;--ni-background&lt;/FONT&gt;:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MilanR_0-1690577648137.png" style="width: 400px;"&gt;&lt;img src="https://ip1.i.lithium.com/1ca4a8a7162598932c618aa885c6e6a629885fbe/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f33323131303469334142304436374443413136464535442f696d6167652d73697a652f6d656469756d3f763d76322670783d343030" role="button" title="MilanR_0-1690577648137.png" alt="MilanR_0-1690577648137.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the css custom property &lt;FONT face="courier new,courier"&gt;--ni-inactive-background&lt;/FONT&gt;:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MilanR_1-1690577812504.png" style="width: 400px;"&gt;&lt;img src="https://ip1.i.lithium.com/b816da3a5dbf43145711113bc4bf242c839b6773/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f33323131303569454336423533443032423135373431302f696d6167652d73697a652f6d656469756d3f763d76322670783d343030" role="button" title="MilanR_1-1690577812504.png" alt="MilanR_1-1690577812504.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Seem to be used for configuring the background color for the tab + panel and the inactive tab respectively.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So maybe configuring those properties will help you style the parts of the tab control:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;.tab_control {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; --ni-background: red;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; --ni-inactive-background: blue;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;}&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2023 21:06:39 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/CSS-Style-Sheet-and-Tab-Control/m-p/4319490#M595</guid>
      <dc:creator>MilanR</dc:creator>
      <dc:date>2023-07-28T21:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Style Sheet and Tab Control</title>
      <link>https://ni.lithium.com/t5/G-Web-Development-Software/CSS-Style-Sheet-and-Tab-Control/m-p/4319609#M596</link>
      <description>&lt;P&gt;That seems to work, although I see the boxes around the numeric controls within the tabs disappearing.&amp;nbsp; I'm looking at that now.&amp;nbsp; Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jul 2023 14:47:40 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/G-Web-Development-Software/CSS-Style-Sheet-and-Tab-Control/m-p/4319609#M596</guid>
      <dc:creator>johnsmith2022</dc:creator>
      <dc:date>2023-07-30T14:47:40Z</dc:date>
    </item>
  </channel>
</rss>

