css 此代码段使用CSS和webpart的ID更改标准列表视图webpart的所有颜色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 此代码段使用CSS和webpart的ID更改标准列表视图webpart的所有颜色相关的知识,希望对你有一定的参考价值。

<style type="text/css">

/* === Title bar CSS === */

/* TR - title bar for web part */
#MSOZoneCell_WebPartWPQ2 .ms-WPHeader 
{
  background-color:yellow;
}

/*  H3 - Text in title bar of web part */
#MSOZoneCell_WebPartWPQ2 .ms-WPTitle a    
{
  color:red;
  //font-family:"Comic Sans MS";
  //font-size:24pt;
}

/* TD - far left and far right (corner) cells of title bar - useful for round corner tricks */
#MSOZoneCell_WebPartWPQ2 .ms-wpTdSpace
{
  /* background-image:url(' someimagepath '); */
  //width:30px !important;
  background-color:yellow;
}

/* web part check box */
#MSOZoneCell_WebPartWPQ2 .ms-WPHeaderCbxHidden  
{
  display:none;    
}


/* === Web part background CSS === */

/*  TD - background for all but title bar of web part */
#MSOZoneCell_WebPartWPQ2.s4-wpcell  
{
  background-color:yellow;
  /* border-style:dashed; */
  //border-style:dashed;
  //border-width:5px;
}

/* TD - paging area (i.e. 1 - 5) */
#MSOZoneCell_WebPartWPQ2 .ms-bottompaging td
{
    background-color:yellow !important;
}    

/* hide the gray line above "add new" link */    
#MSOZoneCell_WebPartWPQ2 .ms-partline
{
  display:none;
}

/* selected (clicked) web part background */    
#MSOZoneCell_WebPartWPQ2.s4-wpActive
{
  background-color:yellow;
  border-color:red;
    /* border-style:dotted; */
}    


/* === Column headings === */

/* color for sortable column headings */
#MSOZoneCell_WebPartWPQ2 .ms-vh-div a 
{
  color:red !important;
}
/* color for non-sortable column headings */
#MSOZoneCell_WebPartWPQ2 .ms-vh-div 
{
  color:red !important;
}


/* === List text CSS === */

/* item description text */
#MSOZoneCell_WebPartWPQ2 .ms-vb2, 
#MSOZoneCell_WebPartWPQ2 .ms-vb-user a, 
#MSOZoneCell_WebPartWPQ2 .ms-vb-title a
{
  color:red !important;
  //font-size:12pt;
}

/*  TR - alternating (#2,#4,#6...) row of web part */
#MSOZoneCell_WebPartWPQ2 .ms-alternating  
{
  background-color:yellow;
}

</style>

以上是关于css 此代码段使用CSS和webpart的ID更改标准列表视图webpart的所有颜色的主要内容,如果未能解决你的问题,请参考以下文章

使用 WSPBuilder 将 JavaScript、CSS 和其他内容添加到 WebPart

在 spfx webpart 中使用内联 css

powershell 此代码段搜索整个Web应用程序以获取webpart的用法。如果在页面上使用wepart,则将其URL写入文本文件

使用 JavaSCript 在 IE 中更改 ID css

css 此代码将删除WordPress库图像周围的边框,并将布局模型更改为CSS flexbox。

前端开发规范CSS