fix(toolbox): Fix overflow menu & button background
This commit is contained in:
parent
7dabfc21b4
commit
92735478d1
|
@ -72,8 +72,10 @@
|
||||||
* Keep overflow menu within screen vertical bounds and make it scrollable.
|
* Keep overflow menu within screen vertical bounds and make it scrollable.
|
||||||
*/
|
*/
|
||||||
.toolbox-button-wth-dialog > div:nth-child(2) {
|
.toolbox-button-wth-dialog > div:nth-child(2) {
|
||||||
|
background: $menuBG;
|
||||||
max-height: calc(100vh - #{$newToolbarSizeWithPadding} - 46px);
|
max-height: calc(100vh - #{$newToolbarSizeWithPadding} - 46px);
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
|
padding: 0;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -72,11 +72,6 @@
|
||||||
|
|
||||||
.toolbox-button-wth-dialog {
|
.toolbox-button-wth-dialog {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
||||||
&> div {
|
|
||||||
padding: 0;
|
|
||||||
background: $menuBG;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue