google-visualization-table-page-numbers background color change

后端 未结 1 1564
南方客
南方客 2021-01-27 10:53

I\'m trying to change what I would call the footer background color where the google-visualization-table-page-numbers go. I would like the background color to extend the entire

1条回答
  •  有刺的猬
    2021-01-27 11:05

    since the chart uses a gradient, use css background to change to a solid color

    .google-visualization-table-div-page {
      background: magenta !important;
    }
    

    to keep the gradient and only change the color, use css background-color

    .google-visualization-table-div-page {
      background-color: magenta !important;
    }
    

    0 讨论(0)
提交回复
热议问题