Skip to content

Commit

Permalink
Fix css better solution
Browse files Browse the repository at this point in the history
  • Loading branch information
tale-fau committed Sep 27, 2023
1 parent ab7a9b3 commit abd2b9a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,30 +111,30 @@
}
}

.decalage-pdf-div:dir(ltr) {
html.ltr .decalage-pdf-div {
padding-right: 350px;
}

.decalage-pdf-div:dir(rtl) {
html.rtl .decalage-pdf-div {
padding-left: 350px;
}

#container-btn-zoom {
top: 6px;
}

#container-btn-zoom:dir(ltr) {
html.ltr #container-btn-zoom {
right: 368px;
}

#container-btn-zoom:dir(rtl) {
html.rtl #container-btn-zoom {
left: 357px;
}

.file-list-checkbox:dir(ltr) {
html.ltr .file-list-checkbox {
right: 10px;
}

.file-list-checkbox:dir(rtl) {
html.rtl .file-list-checkbox {
left: 10px;
}
2 changes: 1 addition & 1 deletion templates/organization.html.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html lang="<?php echo $TRANSLATION_LANGUAGE ?>" dir="<?php echo $DIRECTION_LANGUAGE ?>" style="direction: <?php echo $DIRECTION_LANGUAGE ?>;">
<html lang="<?php echo $TRANSLATION_LANGUAGE ?>" dir="<?php echo $DIRECTION_LANGUAGE ?>" style="direction: <?php echo $DIRECTION_LANGUAGE ?>;" class="<?php echo $DIRECTION_LANGUAGE ?>">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
Expand Down
2 changes: 1 addition & 1 deletion templates/signature.html.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html lang="<?php echo $TRANSLATION_LANGUAGE ?>" dir="<?php echo $DIRECTION_LANGUAGE ?>" style="direction: <?php echo $DIRECTION_LANGUAGE ?>;">
<html lang="<?php echo $TRANSLATION_LANGUAGE ?>" dir="<?php echo $DIRECTION_LANGUAGE ?>" style="direction: <?php echo $DIRECTION_LANGUAGE ?>;" class="<?php echo $DIRECTION_LANGUAGE ?>">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
Expand Down

0 comments on commit abd2b9a

Please sign in to comment.