-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui5-popover): fix arrow position in RTL direction (#10316)
chore(ui5-popover): fix arrow position in RTL direction
- Loading branch information
1 parent
6594706
commit 04a4cfd
Showing
5 changed files
with
231 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<!DOCTYPE html> | ||
<html dir="rtl"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | ||
<title>Popover</title> | ||
|
||
<script data-ui5-config type="application/json"> | ||
{ | ||
"language": "EN", | ||
"libs": "sap.ui.webc.main", | ||
"rtl": true | ||
} | ||
</script> | ||
|
||
|
||
<script src="%VITE_BUNDLE_PATH%" type="module"></script> | ||
|
||
|
||
<link rel="stylesheet" type="text/css" href="./styles/Popover.css"> | ||
|
||
<script> | ||
// delete Document.prototype.adoptedStyleSheets | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<style> | ||
|
||
.center { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
body { | ||
padding-top: 100px; | ||
} | ||
</style> | ||
|
||
<span> Popover placement Top</span> | ||
<div class="center"> | ||
<ui5-button id="btn1">Open</ui5-button> | ||
</div> | ||
<br> | ||
|
||
<span> Popover placement Bottom</span> | ||
<div class="center"> | ||
<ui5-button id="btn2">Open</ui5-button> | ||
</div> | ||
<br> | ||
|
||
<span> Popover placement Start</span> | ||
<ui5-button id="btn3">Open</ui5-button> | ||
<br> | ||
|
||
<ui5-button id="btn4">Open</ui5-button> | ||
<span> Popover placement End</span> | ||
|
||
<ui5-popover id="respPopover1" opener="btn1" placement-type="Top"> | ||
<div class="popover-content"> | ||
<ui5-label for="emailInput" required show-colon>Email</ui5-label> | ||
</div> | ||
</ui5-popover> | ||
|
||
<ui5-popover id="respPopover2" opener="btn2" placement-type="Bottom"> | ||
<div class="popover-content"> | ||
<ui5-label for="emailInput" required show-colon>Email</ui5-label> | ||
</div> | ||
</ui5-popover> | ||
|
||
<ui5-popover id="respPopover3" opener="btn3" placement-type="Left"> | ||
<div class="popover-content"> | ||
<ui5-label for="emailInput" required show-colon>Email</ui5-label> | ||
</div> | ||
</ui5-popover> | ||
|
||
<ui5-popover id="respPopover4" opener="btn4" placement-type="Right"> | ||
<div class="popover-content"> | ||
<ui5-label for="emailInput" required show-colon>Email</ui5-label> | ||
</div> | ||
</ui5-popover> | ||
|
||
<div style="height: 200px;"></div> | ||
|
||
<script> | ||
const btn1 = document.getElementById("btn1"); | ||
const respPopover1 = document.getElementById("respPopover1"); | ||
|
||
const btn2 = document.getElementById("btn2"); | ||
const respPopover2 = document.getElementById("respPopover2"); | ||
|
||
const btn3 = document.getElementById("btn3"); | ||
const respPopover3 = document.getElementById("respPopover3"); | ||
|
||
|
||
const btn4 = document.getElementById("btn4"); | ||
const respPopover4 = document.getElementById("respPopover4"); | ||
|
||
|
||
btn1.addEventListener("click", () => { | ||
respPopover1.open = !respPopover1.open; | ||
}); | ||
|
||
btn2.addEventListener("click", () => { | ||
respPopover2.open = !respPopover2.open; | ||
}); | ||
|
||
btn3.addEventListener("click", () => { | ||
respPopover3.open = !respPopover3.open; | ||
}); | ||
|
||
btn4.addEventListener("click", () => { | ||
respPopover4.open = !respPopover4.open; | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters