Merge lp:~openerp-dev/openerp-web/trunk-graph-improve-mme into lp:openerp-web

Proposed by Paramjit Singh Sahota(OpenERP)
Status: Rejected
Rejected by: Richard Mathot (Odoo, formerly OpenERP)
Proposed branch: lp:~openerp-dev/openerp-web/trunk-graph-improve-mme
Merge into: lp:openerp-web
Diff against target: 12 lines (+4/-0)
1 file modified
addons/web_graph/static/src/css/graph.css (+4/-0)
To merge this branch: bzr merge lp:~openerp-dev/openerp-web/trunk-graph-improve-mme
Reviewer Review Type Date Requested Status
Richard Mathot (Odoo, formerly OpenERP) (community) Needs Information
OpenERP R&D Web Team Pending
Review via email: mp+206334@code.launchpad.net

Description of the change

Hello,

Fixed the issue in which "Graphs are not completely visible in IE11."

Thank You.

To post a comment you must log in.
3932. By Paramjit Singh Sahota(OpenERP)

[MERGE] Merged lp:openerp-web.

3933. By Paramjit Singh Sahota(OpenERP)

[MERGE] Merged lp:openerp-web.

Revision history for this message
Richard Mathot (Odoo, formerly OpenERP) (rim-openerp) wrote :

Does this hack conflict with the one at the beginning of the file?
.openerp svg:not(:root) {
    overflow: visible;
}
Is it possible to make a solution compatible with IE9-10-11?

review: Needs Information
3934. By Richard Mathot (Odoo, formerly OpenERP)

[MERGE] from trunk

Revision history for this message
Mehul Mehta(OpenERP) (mehul.mehta-openerp) wrote :

Hello @rim,

Now, with the latest code in saas-3 it is working fine in IE9-10-11. So, now we think this code is not useful :(

Thank You.

Revision history for this message
Richard Mathot (Odoo, formerly OpenERP) (rim-openerp) wrote :

Fixed in saas-3 since r3977 and forwardported to trunk
http://bazaar.launchpad.net/~openerp/openerp-web/saas-3/revision/3977

Thus, I close this MP

Unmerged revisions

3934. By Richard Mathot (Odoo, formerly OpenERP)

[MERGE] from trunk

3933. By Paramjit Singh Sahota(OpenERP)

[MERGE] Merged lp:openerp-web.

3932. By Paramjit Singh Sahota(OpenERP)

[MERGE] Merged lp:openerp-web.

3931. By Paramjit Singh Sahota(OpenERP)

[MERGE] Merged lp:openerp-web

3930. By Mehul Mehta(OpenERP)

[Fix] IE-11 display graph issue

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'addons/web_graph/static/src/css/graph.css'
2--- addons/web_graph/static/src/css/graph.css 2014-04-07 16:17:28 +0000
3+++ addons/web_graph/static/src/css/graph.css 2014-04-22 13:08:40 +0000
4@@ -128,3 +128,7 @@
5 padding:0px 5px 0px 5px ;
6 margin:0;
7 }
8+
9+svg:not(:root) {
10+ overflow: auto;
11+}
12\ No newline at end of file