I using jquery datepicker inline.
I need to change .ui-widget-header class
Now it like this
<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all"></div>
And ui-widget-header has this style
ui-widget-header {
  border: 1px solid #dddddd/*{borderColorHeader}*/;
  background: #e9e9e9/*{bgColorHeader}*/ /*{bgImgUrlHeader}*/ /*{bgHeaderXPos}*/ /*{bgHeaderYPos}*/ /*{bgHeaderRepeat}*/;
  color: #333333/*{fcHeader}*/;
  font-weight: bold;
}
I tried to change it in my scss
    .ui-datepicker-inline{
    background: #fff;
  .ui-datepicker-header{
    background: #fff;
    .ui-widget-header{
        border-bottom: 1px solid #efefef;
    }
  }
}
But border is still not only at bottom.
Where is my problem?
 
     
    