RTL: Flip half-star star ratings.

props SergeyBiryukov.
fixes #26814.

Built from https://develop.svn.wordpress.org/trunk@26952


git-svn-id: http://core.svn.wordpress.org/trunk@26831 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2014-01-15 08:19:12 +00:00
parent 71101bc9e2
commit 0cf6bbc60a
4 changed files with 14 additions and 2 deletions

View File

@ -10109,6 +10109,12 @@ div.star-holder .star-rating {
content:'\f459';
}
.rtl .star-rating .star-half {
-webkit-transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.star-rating .star-empty:before {
content:'\f154';
}

File diff suppressed because one or more lines are too long

View File

@ -10109,6 +10109,12 @@ div.star-holder .star-rating {
content:'\f459';
}
.rtl .star-rating .star-half {
-webkit-transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.star-rating .star-empty:before {
content:'\f154';
}

File diff suppressed because one or more lines are too long