X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=addons%2Fweb_tip%2Fstatic%2Fsrc%2Fcss%2Ftip.css;fp=addons%2Fweb_tip%2Fstatic%2Fsrc%2Fcss%2Ftip.css;h=089b7133be7a11addcdc915e2bb9dd60c7a677d3;hb=2bf6193a4460695f23f2134916372ff6db335ba7;hp=0000000000000000000000000000000000000000;hpb=a2adb4821210776cb54316862e1607aac269df16;p=odoo%2Fodoo.git diff --git a/addons/web_tip/static/src/css/tip.css b/addons/web_tip/static/src/css/tip.css new file mode 100644 index 0000000..089b713 --- /dev/null +++ b/addons/web_tip/static/src/css/tip.css @@ -0,0 +1,56 @@ +.oe_tip_overlay { + top: 0; + bottom: 0; + left: 0; + right: 0; + position: absolute; + opacity: 0.8; + z-index: 1001; + background-color: #000; + background: -moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%); + background: -webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.4)),color-stop(100%,rgba(0,0,0,0.9))); + background: -webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%); + background: -o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%); + background: -ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%); + background: radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000',endColorstr='#e6000000',GradientType=1); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=50); + -webkit-transition: all 0.3s ease-out; + -moz-transition: all 0.3s ease-out; + -ms-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; +} + +.oe_tip_helper { + position: absolute; + z-index: 1008; + background-color: #FFF; + background-color: rgba(255,255,255,.9); + border: 1px solid #777; + border: 1px solid rgba(0,0,0,.5); + border-radius: 4px; + box-shadow: 0 2px 15px rgba(0,0,0,.4); + -webkit-transition: all 0.3s ease-out; + -moz-transition: all 0.3s ease-out; + -ms-transition: all 0.3s ease-out; + -o-transition: all 0.3s ease-out; + transition: all 0.3s ease-out; +} + +.oe_tip_close { + padding: 5px 5px 10px 10px !important; + margin-top: -15px; + margin-right: -15px; +} + +.oe_tip_fix_parent { + z-index: auto !important; + opacity: 1.0 !important; +} + +.oe_tip_show_element { + z-index: 1011 !important; + position: relative; +}