openerp-community team mailing list archive
-
openerp-community team
-
Mailing list archive
-
Message #02313
[Merge] lp:~openerp-community/openerp-web/trunk-bug-1091197-priyank into lp:openerp-web
Priyank Padnya (OpenERP) has proposed merging lp:~openerp-community/openerp-web/trunk-bug-1091197-priyank into lp:openerp-web.
Requested reviews:
OpenERP R&D Web Team (openerp-dev-web)
Related bugs:
Bug #1091197 in OpenERP Web: "[IE9] checkboxes in editable lines don't look right (border visible)"
https://bugs.launchpad.net/openerp-web/+bug/1091197
For more details, see:
https://code.launchpad.net/~openerp-community/openerp-web/trunk-bug-1091197-priyank/+merge/150266
Hello,
[IE9] checkboxes in editable lines don't look right (border visible)
change the check box view in edit mode in IE9 and additionally change the drop-down color to black in place of blue in edit mode.
Thanks.
--
https://code.launchpad.net/~openerp-community/openerp-web/trunk-bug-1091197-priyank/+merge/150266
Your team OpenERP Community is subscribed to branch lp:~openerp-community/openerp-web/trunk-bug-1091197-priyank.
=== modified file 'addons/web/static/src/css/base.css'
--- addons/web/static/src/css/base.css 2013-02-24 09:46:16 +0000
+++ addons/web/static/src/css/base.css 2013-02-25 07:03:21 +0000
@@ -554,6 +554,9 @@
font-style: italic;
text-decoration: none;
}
+.openerp .oe_tags .text-core .text-wrap .text-arrow {
+ background: url("/web/static/src/img/down-arrow.png") 50% 50% no-repeat;
+}
.openerp.oe_tooltip {
font-size: 12px;
}
@@ -2788,7 +2791,7 @@
min-width: 0;
max-width: none;
}
-.openerp .oe_list.oe_list_editable.oe_editing .oe_form_field input, .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field textarea {
+.openerp .oe_list.oe_list_editable.oe_editing .oe_form_field textarea {
height: 27px;
-moz-border-radius: 0;
-webkit-border-radius: 0;
@@ -2796,6 +2799,9 @@
border: 1px solid #aaaaff;
margin: 0;
}
+.openerp .oe_list.oe_list_editable.oe_editing .oe_form_field input, .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field checkbox {
+ border: none;
+}
.openerp .oe_list.oe_list_editable.oe_editing .oe_form_field input, .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field textarea, .openerp .oe_list.oe_list_editable.oe_editing .oe_form_field select {
min-width: 0;
}
=== modified file 'addons/web/static/src/css/base.sass'
--- addons/web/static/src/css/base.sass 2013-02-24 09:46:16 +0000
+++ addons/web/static/src/css/base.sass 2013-02-25 07:03:21 +0000
@@ -487,6 +487,8 @@
.text-core .text-wrap .text-dropdown .text-list .text-suggestion em
font-style: italic
text-decoration: none
+ .text-core .text-wrap .text-arrow
+ background: url("/web/static/src/img/down-arrow.png")50% 50% no-repeat
margin-bottom: 1px
// }}}
// Tooltips {{{
@@ -2197,11 +2199,13 @@
.oe_form_field
min-width: 0
max-width: none
- input, textarea
+ textarea,
height: $row-height
@include radius(0)
border: 1px solid #aaf
margin: 0
+ input, checkbox
+ border: none
input, textarea, select
min-width: 0
&.oe_form_field_float,&.oe_form_view_integer