Remove transparent background and fix z-index of popover.
This commit is contained in:
parent
a24c3ada53
commit
7924a149b4
|
@ -244,6 +244,8 @@ limitations under the License.
|
||||||
.mx_PopoverOuterContainer {
|
.mx_PopoverOuterContainer {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
|
background-color: white;
|
||||||
|
overflow: 'hidden';
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_PopoverOuterContainer .mx_AppTileFullWidth {
|
.mx_PopoverOuterContainer .mx_AppTileFullWidth {
|
||||||
|
@ -255,3 +257,8 @@ limitations under the License.
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set z-index for popovers
|
||||||
|
.another-react-popover-container {
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue