Skip to content

Commit

Permalink
editor: RTL fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dwaynebailey committed Aug 11, 2014
1 parent dabdb1b commit d01b346
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pootle/static/css/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -351,11 +351,21 @@ div.unit-path li:after
content: '→';
}

html[dir="rtl"] div.unit-path li:after
{
content: "←";
}

div.unit-path li:last-child:after
{
content: '';
}

html[dir="rtl"] div.unit-path li:last-child:after
{
content: '';
}

div.unit-path li span.content-wrapper
{
display: inline-block;
Expand Down Expand Up @@ -871,6 +881,11 @@ div.check a
width: 46%;
}

[dir="rtl"] #translate-checks-block
{
right: 100%;
}

#translate-checks-block .sidetitle
{
color: rgba(0, 0, 0, 0.75);
Expand All @@ -879,6 +894,11 @@ div.check a
margin: 0.1em 1em 0 0;
}

[dir="rtl"] #translate-checks-block .sidetitle
{
float: right;
}

li.check
{
display: inline-block;
Expand All @@ -887,6 +907,11 @@ li.check
border-radius: 4px;
}

li.check[dir="rtl"]
{
float: right;
}

#translate-checks-block.blink li.check
{
background-color: #900;
Expand Down

0 comments on commit d01b346

Please sign in to comment.