<?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 CSS Formatting - New Straight Table and New Pivot Table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/CSS-Formatting-New-Straight-Table-and-New-Pivot-Table/m-p/2428223#M96344</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have some custom theme files using company colours for the straight and pivot table objects amongst others.&lt;/P&gt;
&lt;P&gt;I'm no expert so have only pieced together what i've learned and discovered over time.&lt;/P&gt;
&lt;P&gt;I would this to apply the same to the new straight table and new pivot table objects found under the visulization bundle on Qlik but i cant find the correct objects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The existing straight table CSS i have is:&lt;/P&gt;
&lt;LI-CODE lang="css"&gt;/* -- styling straight table -- */
.qv-st table {background: var(--white);}
.qv-st-header&amp;gt;tr {background-color: var(--colour1);	color: var(--white) !important;}
.qv-st-header .qv-st-total-cell, .qv-st-data-cell, .qv-st-header-cell {border-bottom: 1px solid var(--white) !important;}
.qv-st-data-cell-null-value {background-color: unset !important;} 
.touch-off .qv-st-interactive:not(.qv-st-selections-active):not(.qv-st-reordering-active) .qv-st-header:not(.qv-st-custom-header) .qv-st-header-cell-search:hover:not(:active):not(.qv-st-header-cell-search-open), .touch-off .qv-st-navigatable:not(.qv-st-selections-active):not(.qv-st-reordering-active) .qv-st-header-sortable:not(.qv-st-custom-header):hover:not(:active):not(.qv-st-header-cell-search-open) {background-color: var(--colour1); cursor: pointer;}
.qv-st-header .qv-st-total-cell {border-top: 1px solid var(--white); background-color: var(--grey);	color: var(--black);}
.qv-st-bottom-header .qv-st-total-cell {border-top: 1px solid var(--white);	background-color: var(--colour1); color: var(--white);}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;The main thing here is to add a background colour to the column headers of the table and white text - i would like to do the same on the new straight table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The existing pivot table CSS i have is:&lt;/P&gt;
&lt;LI-CODE lang="css"&gt;/* -- styling header row in pivot table-- */
[tid="header.row"] {background-color: var(--colour1) !important; color: var(--white);}&lt;/LI-CODE&gt;
&lt;P&gt;Same as above, add a background colour to the header/columns of the table with white text - i would like to do the same on the new pivot table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does anyone have any ideas how to achieve?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would be great if Qlik did a tutorial on this, i know there is articles etc but some good, official documention could be great.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Mar 2024 11:14:12 GMT</pubDate>
    <dc:creator>jmcy2408</dc:creator>
    <dc:date>2024-03-07T11:14:12Z</dc:date>
    <item>
      <title>CSS Formatting - New Straight Table and New Pivot Table</title>
      <link>https://community.qlik.com/t5/App-Development/CSS-Formatting-New-Straight-Table-and-New-Pivot-Table/m-p/2428223#M96344</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have some custom theme files using company colours for the straight and pivot table objects amongst others.&lt;/P&gt;
&lt;P&gt;I'm no expert so have only pieced together what i've learned and discovered over time.&lt;/P&gt;
&lt;P&gt;I would this to apply the same to the new straight table and new pivot table objects found under the visulization bundle on Qlik but i cant find the correct objects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The existing straight table CSS i have is:&lt;/P&gt;
&lt;LI-CODE lang="css"&gt;/* -- styling straight table -- */
.qv-st table {background: var(--white);}
.qv-st-header&amp;gt;tr {background-color: var(--colour1);	color: var(--white) !important;}
.qv-st-header .qv-st-total-cell, .qv-st-data-cell, .qv-st-header-cell {border-bottom: 1px solid var(--white) !important;}
.qv-st-data-cell-null-value {background-color: unset !important;} 
.touch-off .qv-st-interactive:not(.qv-st-selections-active):not(.qv-st-reordering-active) .qv-st-header:not(.qv-st-custom-header) .qv-st-header-cell-search:hover:not(:active):not(.qv-st-header-cell-search-open), .touch-off .qv-st-navigatable:not(.qv-st-selections-active):not(.qv-st-reordering-active) .qv-st-header-sortable:not(.qv-st-custom-header):hover:not(:active):not(.qv-st-header-cell-search-open) {background-color: var(--colour1); cursor: pointer;}
.qv-st-header .qv-st-total-cell {border-top: 1px solid var(--white); background-color: var(--grey);	color: var(--black);}
.qv-st-bottom-header .qv-st-total-cell {border-top: 1px solid var(--white);	background-color: var(--colour1); color: var(--white);}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;The main thing here is to add a background colour to the column headers of the table and white text - i would like to do the same on the new straight table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The existing pivot table CSS i have is:&lt;/P&gt;
&lt;LI-CODE lang="css"&gt;/* -- styling header row in pivot table-- */
[tid="header.row"] {background-color: var(--colour1) !important; color: var(--white);}&lt;/LI-CODE&gt;
&lt;P&gt;Same as above, add a background colour to the header/columns of the table with white text - i would like to do the same on the new pivot table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does anyone have any ideas how to achieve?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would be great if Qlik did a tutorial on this, i know there is articles etc but some good, official documention could be great.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2024 11:14:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/CSS-Formatting-New-Straight-Table-and-New-Pivot-Table/m-p/2428223#M96344</guid>
      <dc:creator>jmcy2408</dc:creator>
      <dc:date>2024-03-07T11:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Formatting - New Straight Table and New Pivot Table</title>
      <link>https://community.qlik.com/t5/App-Development/CSS-Formatting-New-Straight-Table-and-New-Pivot-Table/m-p/2428433#M96363</link>
      <description>&lt;P&gt;Check out this article? Can this help?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/App-Development/Styling-Qlik-sense-Apps-using-CSS/td-p/2003818" target="_blank"&gt;Styling Qlik sense Apps using CSS - Qlik Community - 2003818&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Mar 2024 19:44:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/CSS-Formatting-New-Straight-Table-and-New-Pivot-Table/m-p/2428433#M96363</guid>
      <dc:creator>dataexplorer</dc:creator>
      <dc:date>2024-03-07T19:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: CSS Formatting - New Straight Table and New Pivot Table</title>
      <link>https://community.qlik.com/t5/App-Development/CSS-Formatting-New-Straight-Table-and-New-Pivot-Table/m-p/2431315#M96607</link>
      <description>&lt;P&gt;Thanks for the link, it resolved my issue.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 12:49:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/CSS-Formatting-New-Straight-Table-and-New-Pivot-Table/m-p/2431315#M96607</guid>
      <dc:creator>LavadaDelvecchio</dc:creator>
      <dc:date>2024-03-15T12:49:56Z</dc:date>
    </item>
  </channel>
</rss>

