如何使用 CSS 设置 mCustomScrollbar 的宽度

How to set the width of mCustomScrollbar using CSS

我正在尝试通过设置 .mCSB_dragger 的宽度来增加滚动条的宽度,如 documentation 中所述。但滚动条宽度保持不变。

$('#container1').mCustomScrollbar({ 
        theme:"dark-3"        
});

$(document).on('click', '.participants li', function(e){
  
});
#container1 {
    height:200px;
    width:100px;
    padding:5px;
    border:1px solid black;
}

 .mCSB_dragger{
    width:25px;
 }
<link rel="stylesheet" href="//malihu.github.io/custom-scrollbar/jquery.mCustomScrollbar.min.css" />

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//malihu.github.io/custom-scrollbar/jquery.mCustomScrollbar.concat.min.js"></script>
<div id="container1">
  <p>1</p>
  <p>2</p>
  <p>3</p>
  <p>4</p>
  <p>5</p>
  <p>6</p>
  <p>6</p>
  <p>6</p>
</div>

代码如下:

在下面添加 css 就大功告成了...现在检查...

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 10px !important;
}

注意:根据您的要求更改宽度。

试试这个,我认为它需要覆盖,但覆盖不是一个好的做法。 希望对您有所帮助

.mCSB_dragger_bar{
    width:13px!important;
 }

如果您希望滚动旋钮也调整其宽度,您也可以覆盖

.mCSB_draggerRail{
    width:13px!important;
}

将以下样式添加到您的样式表

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{
    width:15px !important;
}


.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:15px !important;
}