tryton-sao 6.2.2 → 6.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG +3 -0
- package/COPYRIGHT +2 -2
- package/dist/tryton-sao.css +12 -6
- package/dist/tryton-sao.js +5 -3
- package/dist/tryton-sao.min.css +12 -6
- package/dist/tryton-sao.min.js +2 -2
- package/package.json +1 -1
- package/src/action.js +1 -1
- package/src/pyson.js +1 -1
- package/src/sao.less +7 -3
- package/src/screen.js +2 -0
- package/src/theme.less +6 -0
- package/src/view/form.js +1 -1
- package/tests/sao.js +3 -0
package/package.json
CHANGED
package/src/action.js
CHANGED
package/src/pyson.js
CHANGED
package/src/sao.less
CHANGED
|
@@ -47,6 +47,10 @@ button {
|
|
|
47
47
|
text-overflow: ellipsis;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
+
.input-group > .form-control-feedback {
|
|
51
|
+
z-index: 3;
|
|
52
|
+
}
|
|
53
|
+
|
|
50
54
|
.navbar-inverse {
|
|
51
55
|
.close {
|
|
52
56
|
color: @navbar-inverse-link-color;
|
|
@@ -194,7 +198,7 @@ button {
|
|
|
194
198
|
|
|
195
199
|
html.accesskey {
|
|
196
200
|
|
|
197
|
-
*[accesskey]
|
|
201
|
+
*[accesskey] ~ span[data-accesskey]:after,
|
|
198
202
|
*[accesskey]:after {
|
|
199
203
|
background-color: @brand-info;
|
|
200
204
|
color: #fff;
|
|
@@ -210,7 +214,7 @@ html.accesskey {
|
|
|
210
214
|
background-color: initial;
|
|
211
215
|
}
|
|
212
216
|
|
|
213
|
-
*[accesskey]
|
|
217
|
+
*[accesskey] ~ span[data-accesskey] {
|
|
214
218
|
float: right;
|
|
215
219
|
position: relative;
|
|
216
220
|
|
|
@@ -226,7 +230,7 @@ html.accesskey {
|
|
|
226
230
|
input[accesskey][type="checkbox"],
|
|
227
231
|
input[accesskey][type="checkbox"],
|
|
228
232
|
select[accesskey] {
|
|
229
|
-
|
|
233
|
+
& ~ span[data-accesskey] {
|
|
230
234
|
bottom: 1em;
|
|
231
235
|
}
|
|
232
236
|
}
|
package/src/screen.js
CHANGED
package/src/theme.less
CHANGED
package/src/view/form.js
CHANGED
|
@@ -112,7 +112,7 @@ function eval_pyson(value){
|
|
|
112
112
|
widget.labelled.get(0).tagName)) {
|
|
113
113
|
jQuery('<span/>', {
|
|
114
114
|
'data-accesskey': accesskey,
|
|
115
|
-
}).
|
|
115
|
+
}).appendTo(widget.labelled.parent());
|
|
116
116
|
}
|
|
117
117
|
label.label_el.attr('for', widget.labelled.attr('id'));
|
|
118
118
|
}
|
package/tests/sao.js
CHANGED
|
@@ -102,6 +102,9 @@
|
|
|
102
102
|
"decode(Eval('test', 0))");
|
|
103
103
|
QUnit.strictEqual(new Sao.PYSON.Decoder().decode(eval_), 0,
|
|
104
104
|
"decode(Eval('test', 0))");
|
|
105
|
+
QUnit.strictEqual(
|
|
106
|
+
new Sao.PYSON.Decoder({test: undefined}).decode(eval_), 0,
|
|
107
|
+
"decode(Eval('test', 0))");
|
|
105
108
|
});
|
|
106
109
|
|
|
107
110
|
QUnit.test('PYSON Not', function() {
|