표 글자 색깔 바꾸기
본문 바로가기

Splunk/Splunk Dashboard and Visualization

표 글자 색깔 바꾸기

728x90
반응형

<html>
      <style type="text/css">
        

table tr:nth-child(odd) td{color: red;
}
table tr:nth-child(even) td{color: green;
}

</style>
</html>

 

 

 

 

  <row>
    <panel depends="$hidden$">
      <html>
        <style>
          table th td {
  color:#4f34eb;
}
          table tr td {
  color:#fc0303;
}

table.table-drilldown tr td {
color:#000000;
}

        </style>
      </html>
    </panel>
    </row>

 

 

 

 

이게 잘 먹음

 <row depends="$alwaysHideCSSPanel$">
   <panel>
     <html>
       <style>
         #tableWithDrilldown table tbody tr td,#tableWithDrilldown table thead th a{
           color: white !important;
         }
       </style>
     </html>
   </panel>
 </row>
728x90
반응형