MOBILE-2716 rtl: Fix RTL text alignment
parent
9e95285f62
commit
51d530f7b5
|
@ -45,7 +45,7 @@ addon-qtype-ddmarker {
|
|||
div.ddarea .markertexts {
|
||||
min-height: 80px;
|
||||
position: absolute;
|
||||
text-align: left;
|
||||
@include text-align('start');
|
||||
}
|
||||
.dropbackground {
|
||||
margin: 0 auto;
|
||||
|
|
|
@ -205,6 +205,7 @@ ion-app.app-root {
|
|||
}
|
||||
|
||||
input {
|
||||
@include text-align('end');
|
||||
@include rtl() {
|
||||
text-align: right;
|
||||
}
|
||||
|
@ -248,7 +249,7 @@ ion-app.app-root {
|
|||
|
||||
.core-show-more {
|
||||
color: color($colors, dark);
|
||||
text-align: right;
|
||||
@include text-align('end');
|
||||
font-size: 14px;
|
||||
display: block;
|
||||
position: absolute;
|
||||
|
@ -423,7 +424,7 @@ ion-app.app-root {
|
|||
width: 100%;
|
||||
.select-text {
|
||||
white-space: normal;
|
||||
text-align: right;
|
||||
@include text-align('end');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -481,7 +482,7 @@ ion-app.app-root {
|
|||
|
||||
ion-icon:last-child {
|
||||
@include margin(null, null, null, 5px);
|
||||
text-align: right;
|
||||
@include text-align('end');
|
||||
flex-grow: 2;
|
||||
}
|
||||
}
|
||||
|
@ -891,7 +892,7 @@ ion-app.app-root {
|
|||
|
||||
.alert-head {
|
||||
padding: 5px 10px;
|
||||
text-align: left;
|
||||
@include text-align('start');
|
||||
h2 {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
@ -899,7 +900,7 @@ ion-app.app-root {
|
|||
|
||||
.alert-message {
|
||||
padding: 5px 10px;
|
||||
text-align: left;
|
||||
@include text-align('start');
|
||||
p {
|
||||
font-size: 14px;
|
||||
margin-top: 5px;
|
||||
|
|
|
@ -13,7 +13,7 @@ ion-app.app-root core-grades-course {
|
|||
@include padding(10px, 10px, 10px, null);
|
||||
vertical-align: top;
|
||||
white-space: normal;
|
||||
text-align: left;
|
||||
@include text-align('start');
|
||||
}
|
||||
thead th {
|
||||
vertical-align: bottom;
|
||||
|
|
Loading…
Reference in New Issue