Two RTL Fixups in Studio and CAPA problems

- Fixed RTL icon margin in the studio
  - Make math equation fields always LTR in CAPA problems
This commit is contained in:
Omar Al-Ithawi
2015-02-12 15:11:44 +02:00
parent e861b6094b
commit 1655625b4b
2 changed files with 6 additions and 2 deletions

View File

@@ -193,9 +193,9 @@
.button {
.icon {
@include margin-right($baseline/4);
display: inline-block;
vertical-align: middle;
margin-right: ($baseline/4);
}
}
@@ -321,9 +321,9 @@
.ui-toggle-expansion {
@include transition(all $tmg-f2 ease-in-out 0s);
@include margin-right($baseline/4);
@extend %t-action1;
display: inline-block;
margin-right: ($baseline/4);
color: $gray-l3;
vertical-align: middle;
}

View File

@@ -141,6 +141,10 @@ div.problem {
}
}
input.math {
direction: ltr; // Equations are always English
}
.inline {
display: inline;