Merge lp:~openerp-dev/openerp-web/trunk-bug-1116301-pooja into lp:openerp-web

Proposed by Pooja Zankhariya(OpenERP)
Status: Needs review
Proposed branch: lp:~openerp-dev/openerp-web/trunk-bug-1116301-pooja
Merge into: lp:openerp-web
Diff against target: 26 lines (+5/-0)
2 files modified
addons/web/static/src/css/base.css (+3/-0)
addons/web/static/src/css/base.sass (+2/-0)
To merge this branch: bzr merge lp:~openerp-dev/openerp-web/trunk-bug-1116301-pooja
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+155167@code.launchpad.net

Description of the change

Hello,

  I have fix problem of float moving from left to right when modifying the quantity.

Thanks,
Pooja.

To post a comment you must log in.

Unmerged revisions

3703. By Pooja Zankhariya(OpenERP)

[MERGE] with trunk.

3702. By Pooja Zankhariya(OpenERP)

[FIX] float field alignment.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'addons/web/static/src/css/base.css'
2--- addons/web/static/src/css/base.css 2013-03-15 09:01:12 +0000
3+++ addons/web/static/src/css/base.css 2013-03-25 05:40:21 +0000
4@@ -3202,6 +3202,9 @@
5 padding-bottom: 10px !important;
6 }
7
8+.openerp_ie div.oe_form_nosheet > span.oe_form_field_float input {
9+ text-align: right;
10+}
11 .openerp_ie .placeholder {
12 color: #afafb6 !important;
13 font-style: italic !important;
14
15=== modified file 'addons/web/static/src/css/base.sass'
16--- addons/web/static/src/css/base.sass 2013-03-15 09:01:12 +0000
17+++ addons/web/static/src/css/base.sass 2013-03-25 05:40:21 +0000
18@@ -2526,6 +2526,8 @@
19
20 // Internet Explorer 9+ specifics {{{
21 .openerp_ie
22+ div.oe_form_nosheet > span.oe_form_field_float input
23+ text-align: right
24 .placeholder
25 color: $tag-border !important
26 font-style: italic !important