Remove transparent background and fix z-index of popover.

This commit is contained in:
Richard Lewis 2018-01-15 11:14:30 +00:00
parent a24c3ada53
commit 7924a149b4

View File

@ -244,6 +244,8 @@ limitations under the License.
.mx_PopoverOuterContainer {
border-radius: 5px;
padding: 2px;
background-color: white;
overflow: 'hidden';
}
.mx_PopoverOuterContainer .mx_AppTileFullWidth {
@ -255,3 +257,8 @@ limitations under the License.
border-radius: 5px;
overflow: hidden;
}
// Set z-index for popovers
.another-react-popover-container {
z-index: 1000;
}