Skip to content
Snippets Groups Projects
Commit e001acaf authored by Jared Hancock's avatar Jared Hancock
Browse files

i18n: rtl: Fix tab display for rtl viewers

parent 74ebd2e0
No related branches found
No related tags found
No related merge requests found
...@@ -90,3 +90,12 @@ ...@@ -90,3 +90,12 @@
margin-right: 0; margin-right: 0;
margin-left: 0.3em; margin-left: 0.3em;
} }
.rtl ul.tabs {
padding-left: 4px;
padding-right: 20px;
text-align:right;
}
.rtl #response_options ul.tabs {
padding-right:190px;
padding-left: 4px;
}
...@@ -632,7 +632,7 @@ print $response_form->getField('attachments')->render(); ...@@ -632,7 +632,7 @@ print $response_form->getField('attachments')->render();
</tr> </tr>
</tbody> </tbody>
</table> </table>
<p style="padding-left:165px;"> <p style="padding:0 165px;">
<input class="btn_sm" type="submit" value="<?php echo __('Post Reply');?>"> <input class="btn_sm" type="submit" value="<?php echo __('Post Reply');?>">
<input class="btn_sm" type="reset" value="<?php echo __('Reset');?>"> <input class="btn_sm" type="reset" value="<?php echo __('Reset');?>">
</p> </p>
......
...@@ -1268,7 +1268,7 @@ legend + .control-group { ...@@ -1268,7 +1268,7 @@ legend + .control-group {
} }
.nav-tabs > li, .nav-tabs > li,
.nav-pills > li { .nav-pills > li {
float: left; display: inline-block;
} }
.nav-tabs > li > a, .nav-tabs > li > a,
.nav-pills > li > a { .nav-pills > li > a {
......
...@@ -919,14 +919,14 @@ ul.tabs li a { ...@@ -919,14 +919,14 @@ ul.tabs li a {
height:18px; height:18px;
line-height:20px; line-height:20px;
color:#444; color:#444;
display:block; display:inline-block;
float:left;
outline:none; outline:none;
position:relative; position:relative;
top:0; bottom:1px;
background:#fbfbfb; background:#fbfbfb;
border:1px solid #eee; border:1px solid #eee;
border-bottom:none; border-bottom:none;
text-align: center;
} }
#response_options .reply_tab.tell { #response_options .reply_tab.tell {
...@@ -943,6 +943,7 @@ ul.tabs li a.active { ...@@ -943,6 +943,7 @@ ul.tabs li a.active {
border:1px solid #aaa; border:1px solid #aaa;
border-top:2px solid #81a9d7; border-top:2px solid #81a9d7;
border-bottom:none; border-bottom:none;
bottom: 0;
} }
#response_options > form { #response_options > form {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment