odoo/addons/web_diagram/static/src/css/base_diagram.css

38 lines
783 B
CSS
Raw Normal View History

.openerp .oe_diagram_pager {
float:right;
/*text-align: right;*/
white-space: nowrap;
}
.openerp .oe_diagram_buttons {
float: left;
}
.openerp .clear{
clear:both;
}
.openerp .diagram{
margin:0;
padding:0;
width:100%;
height:500px;
/* resize:vertical; doesn't work because raphael catches the resize event...*/
min-height:100%;
background-color:white;
border-style:solid;
border-width:1px;
border-color:#DCDCDC;
overflow:hidden;
}
/* prevent accidental selection of the text in the svg nodes */
.openerp .diagram *{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
};