Commit 13b97e36 by Frances Botsford

small UI fixes on dashboard for RTL

parent 98c9880d
...@@ -479,7 +479,7 @@ ...@@ -479,7 +479,7 @@
.sts-enrollment { .sts-enrollment {
position: absolute; position: absolute;
top: 105px; top: 105px;
left: 0; @include left(0);
display: inline-block; display: inline-block;
text-align: center; text-align: center;
width: 200px; width: 200px;
...@@ -702,12 +702,19 @@ ...@@ -702,12 +702,19 @@
.ui-toggle-expansion { .ui-toggle-expansion {
@include transition(all 0.25s ease-in-out 0s); @include transition(all 0.25s ease-in-out 0s);
@include transform(rotate(-90deg));
@include transform-origin(50% 50%); @include transform-origin(50% 50%);
@include font-size(21); @include font-size(21);
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
margin-right: ($baseline/4); margin-right: ($baseline/4);
@include rtl {
@include transform(rotate(90deg));
}
@include ltr {
@include transform(rotate(-90deg));
}
} }
.message-copy { .message-copy {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment