Fix remove button not clickable

Problem description:
In member tab, Action->remove is not clickable in production mode.

Root cause analysis:

Some style for clarity checkbox impact dropdown menu.

Fix:
We do a quick fix in member.component.scss. Set checkbox in this component
position:inherit;

This will overide the clarity original style
This commit is contained in:
Mia ZHOU 2018-07-30 13:48:57 +08:00
parent 5f83562a12
commit 52634dcec4

View File

@ -28,4 +28,11 @@ clr-datagrid {
::ng-deep clr-checkbox {
position: inherit;
}
}
//This is for production build process.todo: Need to be removed, when production process refactored.
:host >>> clr-checkbox.checkbox.datagrid-foot-select {
position: inherit;
}