Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/41.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何更改角度UI引导日期选择器弹出窗口';使用CSS是什么风格?_Css_Angularjs_Twitter Bootstrap_Angular Ui Bootstrap - Fatal编程技术网

如何更改角度UI引导日期选择器弹出窗口';使用CSS是什么风格?

如何更改角度UI引导日期选择器弹出窗口';使用CSS是什么风格?,css,angularjs,twitter-bootstrap,angular-ui-bootstrap,Css,Angularjs,Twitter Bootstrap,Angular Ui Bootstrap,我使用的是ui-bootstrap-tpls-2.5.0.min.js。我在特定的html中更改了下拉菜单的背景颜色 .dropdown-menu { background-color: transparent; box-shadow: none; } 但它也使datepicker的背景透明。我知道发生的原因,所以我清除了那条线,但没有任何改变 所以我想用CSS选择器改变datepicker弹出窗口的背景 .datepicker .ul{ background-color:

我使用的是
ui-bootstrap-tpls-2.5.0.min.js
。我在特定的html中更改了下拉菜单的背景颜色

.dropdown-menu {
   background-color: transparent;
   box-shadow: none;
}
但它也使datepicker的背景透明。我知道发生的原因,所以我清除了那条线,但没有任何改变

所以我想用CSS选择器改变datepicker弹出窗口的背景

.datepicker .ul{
    background-color: white;
}
//this is an example code.
要更改datepicker的背景,我必须选择什么选择器

如果这是您需要的,则需要添加这两种高亮显示的样式


快乐编码:)

谢谢!现在我看到它有很多相同级别的类。