如何在bootstrap-select中更改背景颜色选项?

时间:2016-09-23 13:07:55

标签: css bootstrap-select

我使用bootstrap-select(来自Silvio Moreto)。我想更改列表项的背景颜色和字体颜色。默认为:

enter image description here

我想要像:

enter image description here

我尝试了这个,但没有改变:

.bootstrap-select.btn-group .dropdown-menu li:hover{
      background-color: rgb(191, 82, 121);
      color: white;
}

有什么想法吗?

3 个答案:

答案 0 :(得分:5)

我回答了自己的问题:

-(void)sliderClicked 
{
   [self.window bringSubviewToFront:btntemp];
   [self.window bringSubviewToFront:sliderView];

   if (sliderView.frame.origin.x==0)
   {
       btntemp.hidden = YES;
       [self performSelector:@selector(presentLeftMenuViewController:)]; // Getting Error in this line
   }
   else
   {
       btntemp.hidden = NO;
       [self performSelector:@selector(presentLeftMenuViewController:)]; // Getting Error in this line
   }
}

谢谢;-)!

答案 1 :(得分:0)

如果没有演示或现场网站,我唯一的猜测就是在背景颜色上使用“!important”或检查你的css选择器是否正确。如果您更改轮廓或边框会发生什么?如果没有发生,我会认为你的选择器是错误的,或者你的css甚至不包括在内。

答案 2 :(得分:0)

我已经用以下方式更改了所有这些内容:

button[data-toggle="dropdown"].btn-default,
button[data-toggle="dropdown"]:hover {
background-color: white !important;
color: #2c3e50 !important;
border: 2px solid #dce4ec;
}