Merge branch 'WIP-MDL-36033-master' of git://github.com/nadavkav/moodle

This commit is contained in:
Dan Poltawski
2012-10-29 14:59:45 +08:00
3 changed files with 28 additions and 0 deletions
+14
View File
@@ -6,3 +6,17 @@
.que.calculated .answer input[type="text"] {
width: 30%;
}
/* Numeric INPUT text boxes should be left aligned in RTL mode
*/
#page-question-type-calculated.dir-rtl input[name^="answer"],
#page-question-type-calculated.dir-rtl input[name^="unit"],
#page-question-type-calculated.dir-rtl input[name^="multiplier"],
#page-question-type-calculated.dir-rtl input[name^="calcmax"],
#page-question-type-calculated.dir-rtl input[name^="calcmin"],
#page-question-type-calculated.dir-rtl input[name^="number"],
#page-question-type-calculated.dir-rtl input[name^="tolerance"]
{
direction: ltr;
text-align: left;
}
+12
View File
@@ -6,3 +6,15 @@
.que.numerical .answer input[type="text"] {
width: 30%;
}
/* Numeric INPUT text boxes should be left aligned in RTL mode
*/
#page-question-type-numerical.dir-rtl input[name="unitpenalty"],
#page-question-type-numerical.dir-rtl input[name^="answer"],
#page-question-type-numerical.dir-rtl input[name^="tolerance"],
#page-question-type-numerical.dir-rtl input[name^="multiplier"],
#page-question-type-numerical.dir-rtl input[name^="unit"]
{
direction: ltr;
text-align: left;
}