Openerp7.0 固定顶端菜单
-
鉴于
.openerp .oe_notification {<br /> z-index: 1050;<br />}
建议.openerp .oe_topbar {<br /> position: fixed;<br /> z-index: 1049; <br /> filter:alpha(Opacity=80); /*再加点透明效果*/<br /> -moz-opacity:0.8;<br /> opacity: 0.8;<br />}
避免notification被遮住而无法关闭。
不知是否还会遮住其它元素... -
另外
padding-top 作用在 .openerp .oe_leftbar 和 .openerp .oe_application 上
会造成登陆界面顶端也被 padding 出一白条,
暂时fix如下:
去掉:.openerp .oe_leftbar {<br /> padding-top: 32px;<br />}<br />.openerp .oe_application {<br /> padding-top: 32px;<br />}
增加.openerp a.oe_logo,<br />.openerp .oe_view_manager {<br /> margin-top: 30px;<br />}
-
如果能把树形列表的标题栏做成类似淘宝的固定工具条,那就强悍了,实例如下:http://www.css88.com/archives/1943#more-1943
-
[quote author=youring link=topic=5975.msg15017#msg15017 date=1366244979]
鉴于.openerp .oe_notification {<br /> z-index: 1050;<br />}
建议.openerp .oe_topbar {<br /> position: fixed;<br /> z-index: 1049; <br /> filter:alpha(Opacity=80); /*再加点透明效果*/<br /> -moz-opacity:0.8;<br /> opacity: 0.8;<br />}
避免notification被遮住而无法关闭。
不知是否还会遮住其它元素...
[/quote]
谢谢分享,这个很好用。
那位大侠能分享一下左右分别滚动的设置吗?
就是左边滚的时候,右边不滚,反之也可行的方法。