html /deep/ .rounded_dialog::shadow #scroller {
border-radius: 10px;
}
Will cause white corners to show behind the dialog. Setting the background color to none, by adding this rule:
html /deep/ .rounded_dialog::shadow #scroller {
border-radius: 10px;
background: none;
}
Will cause the #scroller and #actions to be transparent as well. Setting a background color to #scroller & #actions will create some quirky corner effects between the #scroller & #actions.
The paper dialog has css:
Which, if you set:
Will cause white corners to show behind the dialog. Setting the background color to none, by adding this rule:
Will cause the #scroller and #actions to be transparent as well. Setting a background color to #scroller & #actions will create some quirky corner effects between the #scroller & #actions.