Commit a1acd176 authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes: #2592 Fixed some wrong css about rtl/ltr

Showing with 14 additions and 15 deletions
+14 -15
......@@ -144,10 +144,10 @@ padding-bottom:5px;
text-align:center;
display:block;
}
html.ltr fieldset.plugin_section legend span, .plugin_section > span.legend {
html.ltr fieldset.plugin_section legend span, html.ltr .plugin_section > span.legend {
margin-left:-1px;
}
html.rtl fieldset.plugin_section legend span, .plugin_section > span.legend {
html.rtl fieldset.plugin_section legend span, html.rtl .plugin_section > span.legend {
margin-right:-1px;
}
......@@ -170,10 +170,10 @@ margin-top:-26px;
fieldset.plugin_section legend img, .plugin_section span.legend img {
vertical-align:middle;
}
html.ltr fieldset.plugin_section legend img, .plugin_section span.legend img {
html.ltr fieldset.plugin_section legend img, html.ltr .plugin_section span.legend img {
margin-right:3px;
}
html.rtl fieldset.plugin_section legend img, .plugin_section span.legend img {
html.rtl fieldset.plugin_section legend img, html.rtl .plugin_section span.legend img {
margin-left:3px;
}
......@@ -252,10 +252,10 @@ background-color:#DFEFFF;
position:relative;
top:1px;
}
html.ltr .plugbottom input[type=submit]:active, .plugbottom input[type=button]:active {
html.ltr .plugbottom input[type=submit]:active, html.ltr .plugbottom input[type=button]:active {
left:1px;
}
html.rtl .plugbottom input[type=submit]:active, .plugbottom input[type=button]:active {
html.rtl .plugbottom input[type=submit]:active, html.rtl .plugbottom input[type=button]:active {
right:1px;
}
}
......@@ -254,20 +254,24 @@ padding-right:25px;
Setup step 4 styles
*/
li.step4_name,div.step4_name {
float:left;
width:33%;
height:2em;
}
html.rtl li.step4_name,div.step4_name {
html.ltr li.step4_name, html.ltr div.step4_name {
float:left;
}
html.rtl li.step4_name, html.rtl div.step4_name {
float:right;
}
li.step4_value,div.step4_value {
float:left;
width:50%;
height:2em;
}
html.rtl li.step4_value,div.step4_value {
html.ltr li.step4_value, html.ltr div.step4_value {
float:left;
}
html.rtl li.step4_value, html.rtl div.step4_value {
float:right;
}
......
......@@ -2,7 +2,6 @@
{$php_errors}
<form action='setup.php' name='mainform' method='post' enctype='multipart/form-data'>
{$msg_dialogs}
<input id='focus' name='focus' type='image' src='images/empty.png' style='width:0px; height:0px;' >
<div class='setup_dialog'>
{include file={filePath file="setup_header.tpl"}}
<div class='setup_menu'>
......@@ -36,9 +35,5 @@
<input type='hidden' name='setup_goto_step' value=''>
</form>
<script type='javascript'>
document.getElementById('focus').focus();
</script>
</body>
</html>
  • bmortier @bmortier

    mentioned in issue #874

    By bmortier on 2017-09-02T15:02:00 (imported from GitLab)

    ·

    mentioned in issue #874

    By bmortier on 2017-09-02T15:02:00 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment