如何禁用 GWT 菜单栏中子菜单后面的阴影?
我创建了一个 使用 Google GWT 的带有折叠子菜单的 MenuBar 如下例所示: GWT Showcase MenuBar
将鼠标悬停在 MenuItem 上会打开一个子菜单(如果已定义)。子菜单会丢弃一个非 css3 阴影,这不适合我的 ui 设计,因为我使用的是不同样式的 css3 box-shadow。
乍一看,似乎无法在某些属性中禁用此阴影......有人知道如何禁用吗?
I created a MenuBar with collapsing sub-menus using Googles GWT like in this example: GWT Showcase MenuBar
Hovering over a MenuItem opens a sub-menu if defined. The sub-menu drops a non-css3 shadow, which doesn't fit into my ui design, because I'm using a differently styled css3 box-shadow.
At first sight one doesn't seem to be able to disable this shadow in some property... does someone have an idea how to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
菜单栏弹出窗口是一个 9 框 - 一个包含 9 个单元格的表格。表中的框的样式名称与模式
.menuPopup[Position]
和.menuPopup[Position]Inner
匹配,其中Position
是例如,TopLeft
、BottomRight
、Left
等。如果您从 Showcase 复制了样式,则足以删除对单元格的所有引用不是
.menuPopupMiddleCenter
或.menuPopupMiddleCenterInner
来删除您看到的阴影。The MenuBar popup is a 9-box - a table with 9 cells. The boxes in the table have style names matching the pattern
.menuPopup[Position]
and.menuPopup[Position]Inner
, wherePosition
is, for example,TopLeft
,BottomRight
,Left
, etc.If you copied the styles from the Showcase it should be sufficient to remove all references to the cells that are not
.menuPopupMiddleCenter
or.menuPopupMiddleCenterInner
to remove the drop shadow you see.