<?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 changes in v9.4.0 in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/740823#M58338</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225285"&gt;@coreyCLI&lt;/a&gt;, thank you for this. Adding "flex-basis" resolved the issue for me.&lt;/P&gt;</description>
    <pubDate>Tue, 04 Mar 2025 19:17:30 GMT</pubDate>
    <dc:creator>johnhuang</dc:creator>
    <dc:date>2025-03-04T19:17:30Z</dc:date>
    <item>
      <title>CSS changes in v9.4.0</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/712296#M58261</link>
      <description>&lt;P&gt;I have some html/css like below that sets the width of some single value panels.&amp;nbsp; In v8.3.1 this worked fine but now in v9.4.0 it does not work and sizes the panels evenly across the row.&amp;nbsp; IE - two single value panels, each get 50%.&amp;nbsp; I have tried using the Developer Tools in Chrome but all the elements I try have no affect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;#panel1 {
   width: 20% !important
}
#panel2 {
   width: 20% !important
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;</description>
      <pubDate>Sat, 22 Feb 2025 20:58:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/712296#M58261</guid>
      <dc:creator>coreyCLI</dc:creator>
      <dc:date>2025-02-22T20:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: CSS changes in v9.4.0</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/712528#M58291</link>
      <description>&lt;P&gt;We're seeing similar issues with&amp;nbsp;9.3.2408&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 20:59:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/712528#M58291</guid>
      <dc:creator>johnhuang</dc:creator>
      <dc:date>2025-02-25T20:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: CSS changes in v9.4.0</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/712716#M58301</link>
      <description>&lt;P&gt;See my answer to a similar question&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-CSS-Width-setup-doesn-t-work-anymore-with-9-x-version/m-p/712713/highlight/true#M58300" target="_blank"&gt;https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-CSS-Width-setup-doesn-t-work-anymore-with-9-x-version/m-p/712713/highlight/true#M58300&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 17:05:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/712716#M58301</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-02-27T17:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: CSS changes in v9.4.0</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/740622#M58319</link>
      <description>&lt;P&gt;interesting approach and thanks for providing it!&amp;nbsp; I came up with multiple solutions for the deferent scenarios we have.&amp;nbsp; We have some 9.4.0 right now we are testing and some 9.3.1 which will be upgraded to 9.3.2 soon.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If there was a single value panel in a row by itself I just updated the CSS to change the width of the entire row vs just the width of the panel by giving the row an id instead of giving the single value panel and id.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;#panelid { width: 30% !important;} --this works in 9.3.1 but not in 9.4.1

#rowWithPanel { width: 30% !important;} --this works in 9.4.1 and 9.3.1&lt;/LI-CODE&gt;&lt;UL&gt;&lt;LI&gt;If there were two single value panels in a row that we needed to adjust the width of I used the below.&amp;nbsp; I wrote it two ways so that it would work in all our environments that currently have v9.3.1 and 9.4.0.&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;#panelid1 { 
width: 15% !important; --this works in 9.3.1 but not 9.4.1
flex-basis: 15% !important; --this works in 9.4.1 but not in 9.3.1
} 
#panelid2 { 
width: 25% !important; --this works in 9.3.1 but not 9.4.1
flex-basis: 25% !important; --this works in 9.4.1 but not in 9.3.1
} &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Mar 2025 16:53:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/740622#M58319</guid>
      <dc:creator>coreyCLI</dc:creator>
      <dc:date>2025-03-03T16:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: CSS changes in v9.4.0</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/740823#M58338</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225285"&gt;@coreyCLI&lt;/a&gt;, thank you for this. Adding "flex-basis" resolved the issue for me.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2025 19:17:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/CSS-changes-in-v9-4-0/m-p/740823#M58338</guid>
      <dc:creator>johnhuang</dc:creator>
      <dc:date>2025-03-04T19:17:30Z</dc:date>
    </item>
  </channel>
</rss>

