diff options
Diffstat (limited to 'modules/poll')
-rw-r--r-- | modules/poll/poll-rtl.css | 11 | ||||
-rw-r--r-- | modules/poll/poll.css | 6 |
2 files changed, 14 insertions, 3 deletions
diff --git a/modules/poll/poll-rtl.css b/modules/poll/poll-rtl.css new file mode 100644 index 000000000..8be324dbf --- /dev/null +++ b/modules/poll/poll-rtl.css @@ -0,0 +1,11 @@ +/* $Id $ */ + +.poll .bar .foreground { + float: right; +} +.poll .percent { + text-align: left; +} +.poll .vote-form .choices { + text-align: right; +} diff --git a/modules/poll/poll.css b/modules/poll/poll.css index afd86c6c4..d5eeb3ffa 100644 --- a/modules/poll/poll.css +++ b/modules/poll/poll.css @@ -8,13 +8,13 @@ .poll .bar .foreground { background-color: #000; height: 1em; - float: left; + float: left; /* LTR */ } .poll .links { text-align: center; } .poll .percent { - text-align: right; + text-align: right; /* LTR */ } .poll .total { text-align: center; @@ -23,7 +23,7 @@ text-align: center; } .poll .vote-form .choices { - text-align: left; + text-align: left; /* LTR */ margin: 0 auto; display: table; } |