[FIX] web: add missing icon, add warning, fix deferred
[odoo/odoo.git] / addons / web_diagram / static / src / css / base_diagram.css
1 .openerp .oe_diagram_header h3.oe_diagram_title {
2     font-weight: normal;
3     color: #252424;
4     margin: 0 0 0 2px;
5 }
6
7 .openerp .oe_diagram_buttons {
8     float: left;
9 }
10 .openerp .clear{
11     clear:both;
12 }
13 /* We use a resizable diagram-container. The problem with a 
14  * resizable diagram is that the diagram catches the mouse events
15  * and the diagram is then impossible to resize. That's why the
16  * diagram has a height of 98.5%, so that the bottom part of the
17  * diagram can be used for resize
18  */
19 .openerp .diagram-container{
20     margin:0;
21     padding:0;
22     width:100%;
23     height:500px;
24     resize:vertical;
25     background-color:#FFF;
26     border:1px solid #DCDCDC;
27     overflow:hidden;
28 }
29 .openerp .oe_diagram_diagram{
30     margin:0;
31     padding:0;
32     background-color:#FFF;
33     width:100%;
34     height:98.5%;
35 }
36
37 /* prevent accidental selection of the text in the svg nodes */
38 .openerp .oe_diagram_diagram *{
39     -webkit-touch-callout: none;
40     -webkit-user-select: none;
41     -khtml-user-select: none;
42     -moz-user-select: none;
43     -ms-user-select: none;
44     -o-user-select: none;
45     user-select: none;
46 }
47
48 .oe-view-manager-switch .oe-vm-switch-diagram:before {
49   content: "";
50 }